mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.1 KiB
1.1 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-lockout-configuration | LockoutConfiguration | LockoutConfiguration | LockoutConfiguration | pythonsdk |
|
/tools/sdk/python/v2025/models/lockout-configuration |
|
LockoutConfiguration
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| maximum_attempts | int | The maximum attempts allowed before lockout occurs. | [optional] |
| lockout_duration | int | The total time in minutes a user will be locked out. | [optional] |
| lockout_window | int | A rolling window where authentication attempts in a series count towards the maximum before lockout occurs. | [optional] |
| } |
Example
from sailpoint.v2025.models.lockout_configuration import LockoutConfiguration
lockout_configuration = LockoutConfiguration(
maximum_attempts=5,
lockout_duration=15,
lockout_window=5
)