Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/LockoutConfiguration.md
2025-01-28 13:29:29 -05:00

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
lockout-configuration LockoutConfiguration LockoutConfiguration LockoutConfiguration powershellsdk
powershell
PowerShell
sdk
LockoutConfiguration
LockoutConfiguration
/tools/sdk/powershell/v3/models/lockout-configuration
SDK
Software Development Kit
LockoutConfiguration
LockoutConfiguration

LockoutConfiguration

Properties

Name Type Description Notes
MaximumAttempts Pointer to Int32 The maximum attempts allowed before lockout occurs. [optional]
LockoutDuration Pointer to Int32 The total time in minutes a user will be locked out. [optional]
LockoutWindow Pointer to 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.V3LockoutConfiguration  -MaximumAttempts 5 `
 -LockoutDuration 15 `
 -LockoutWindow 5
  • Convert the resource to JSON
$LockoutConfiguration | ConvertTo-JSON

[Back to top]