mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
Update to powershell SDK docs: 13207859154
This commit is contained in:
@@ -67,6 +67,7 @@ Method | HTTP request | Description
|
||||
[**Get-BetaPasswordDictionary**](#get-password-dictionary) | **GET** `/password-dictionary` | Get Password Dictionary
|
||||
[**Send-BetaPasswordDictionary**](#put-password-dictionary) | **PUT** `/password-dictionary` | Update Password Dictionary
|
||||
|
||||
|
||||
## get-password-dictionary
|
||||
This gets password dictionary for the organization.
|
||||
The password dictionary file can contain lines that are:
|
||||
@@ -98,6 +99,8 @@ qazxsws
|
||||
|
||||
```
|
||||
|
||||
[API Spec](https://developer.sailpoint.com/docs/api/beta/get-password-dictionary)
|
||||
|
||||
### Parameters
|
||||
Param Type | Name | Data Type | Required | Description
|
||||
------------- | ------------- | ------------- | ------------- | -------------
|
||||
@@ -126,7 +129,7 @@ Code | Description | Data Type
|
||||
# Get Password Dictionary
|
||||
|
||||
try {
|
||||
Get-BetaPasswordDictionary
|
||||
Get-BetaPasswordDictionary
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-BetaPasswordDictionary
|
||||
@@ -136,6 +139,7 @@ try {
|
||||
}
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
## put-password-dictionary
|
||||
This updates password dictionary for the organization.
|
||||
The password dictionary file can contain lines that are:
|
||||
@@ -167,6 +171,8 @@ qazxsws
|
||||
|
||||
```
|
||||
|
||||
[API Spec](https://developer.sailpoint.com/docs/api/beta/put-password-dictionary)
|
||||
|
||||
### Parameters
|
||||
Param Type | Name | Data Type | Required | Description
|
||||
------------- | ------------- | ------------- | ------------- | -------------
|
||||
@@ -198,10 +204,10 @@ $File = # System.IO.FileInfo | (optional)
|
||||
# Update Password Dictionary
|
||||
|
||||
try {
|
||||
Send-BetaPasswordDictionary
|
||||
Send-BetaPasswordDictionary
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-BetaPasswordDictionary -BetaFile $File
|
||||
# Send-BetaPasswordDictionary -File $File
|
||||
} catch {
|
||||
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Send-BetaPasswordDictionary"
|
||||
Write-Host $_.ErrorDetails
|
||||
|
||||
Reference in New Issue
Block a user