mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
Update to powershell SDK docs: 14407073468
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: v2024-lockout-configuration
|
||||
title: LockoutConfiguration
|
||||
pagination_label: LockoutConfiguration
|
||||
sidebar_label: LockoutConfiguration
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'LockoutConfiguration', 'V2024LockoutConfiguration']
|
||||
slug: /tools/sdk/powershell/v2024/models/lockout-configuration
|
||||
tags: ['SDK', 'Software Development Kit', 'LockoutConfiguration', 'V2024LockoutConfiguration']
|
||||
---
|
||||
|
||||
|
||||
# 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
|
||||
```powershell
|
||||
$LockoutConfiguration = Initialize-PSSailpoint.V2024LockoutConfiguration -MaximumAttempts 5 `
|
||||
-LockoutDuration 15 `
|
||||
-LockoutWindow 5
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$LockoutConfiguration | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user