-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from johnduprey/dev
Dev to main
- Loading branch information
Showing
17 changed files
with
550 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
external help file: DuoSecurity-help.xml | ||
Module Name: DuoSecurity | ||
online version: https://duo.com/docs/accountsapi#get-edition | ||
schema: 2.0.0 | ||
--- | ||
|
||
# Get-DuoAccountID | ||
|
||
## SYNOPSIS | ||
Get Account ID # from Duo API hostname | ||
|
||
## SYNTAX | ||
|
||
``` | ||
Get-DuoAccountID [[-ApiHost] <String>] [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
Converts hexidecimal hostname to decimal format | ||
|
||
## EXAMPLES | ||
|
||
### EXAMPLE 1 | ||
``` | ||
Get-DuoAccountID -ApiHost api-01ab23cd.duosecurity.com | ||
``` | ||
|
||
## PARAMETERS | ||
|
||
### -ApiHost | ||
API hostname to get Account ID # for | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: api_hostname | ||
|
||
Required: False | ||
Position: 1 | ||
Default value: None | ||
Accept pipeline input: True (ByPropertyName) | ||
Accept wildcard characters: False | ||
``` | ||
### CommonParameters | ||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). | ||
## INPUTS | ||
## OUTPUTS | ||
## NOTES | ||
## RELATED LINKS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
--- | ||
external help file: DuoSecurity-help.xml | ||
Module Name: DuoSecurity | ||
online version: https://duo.com/docs/adminapi#authentication-logs | ||
schema: 2.0.0 | ||
--- | ||
|
||
# Get-DuoAuthProxyLogs | ||
|
||
## SYNOPSIS | ||
This script reads Duo Auth Proxy log files | ||
|
||
## SYNTAX | ||
|
||
### List | ||
``` | ||
Get-DuoAuthProxyLogs [-ListLogs] [<CommonParameters>] | ||
``` | ||
|
||
### Logs | ||
``` | ||
Get-DuoAuthProxyLogs [-LogName <String>] [-Search <String>] [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
Reads in log files from the designated log path and parses the entries from the standard log file format or json in the case of ssoevents | ||
|
||
## EXAMPLES | ||
|
||
### EXAMPLE 1 | ||
``` | ||
Get-DuoAuthProxyLogs -LogName ssoevents -Search test | ||
``` | ||
|
||
## PARAMETERS | ||
|
||
### -ListLogs | ||
List available log files | ||
|
||
```yaml | ||
Type: SwitchParameter | ||
Parameter Sets: List | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: False | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -LogName | ||
Name of log to get | ||
```yaml | ||
Type: String | ||
Parameter Sets: Logs | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -Search | ||
Search object for string | ||
```yaml | ||
Type: String | ||
Parameter Sets: Logs | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### CommonParameters | ||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). | ||
## INPUTS | ||
## OUTPUTS | ||
## NOTES | ||
## RELATED LINKS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
--- | ||
external help file: DuoSecurity-help.xml | ||
Module Name: DuoSecurity | ||
online version: https://duo.com/docs/adminapi#get-group-info | ||
schema: 2.0.0 | ||
--- | ||
|
||
# Get-DuoInstallFileInfo | ||
|
||
## SYNOPSIS | ||
{{ Fill in the Synopsis }} | ||
|
||
## SYNTAX | ||
|
||
``` | ||
Get-DuoInstallFileInfo [[-Url] <Object>] [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
{{ Fill in the Description }} | ||
|
||
## EXAMPLES | ||
|
||
### Example 1 | ||
```powershell | ||
PS C:\> {{ Add example code here }} | ||
``` | ||
|
||
{{ Add example description here }} | ||
|
||
## PARAMETERS | ||
|
||
### -Url | ||
{{ Fill Url Description }} | ||
|
||
```yaml | ||
Type: Object | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: False | ||
Position: 0 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### CommonParameters | ||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). | ||
## INPUTS | ||
### None | ||
## OUTPUTS | ||
### System.Object | ||
## NOTES | ||
## RELATED LINKS |
Oops, something went wrong.