mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.2 KiB
1.2 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-lockout-configuration | LockoutConfiguration | LockoutConfiguration | LockoutConfiguration | powershellsdk |
|
/tools/sdk/powershell/v2024/models/lockout-configuration |
|
LockoutConfiguration
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| MaximumAttempts | Int32 | The maximum attempts allowed before lockout occurs. | [optional] |
| LockoutDuration | Int32 | The total time in minutes a user will be locked out. | [optional] |
| LockoutWindow | Int32 | A rolling window where authentication attempts in a series count towards the maximum before lockout occurs. | [optional] |
Examples
- Prepare the resource
$LockoutConfiguration = Initialize-PSSailpoint.V2024LockoutConfiguration -MaximumAttempts 5 `
-LockoutDuration 15 `
-LockoutWindow 5
- Convert the resource to JSON
$LockoutConfiguration | ConvertTo-JSON