mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: v2024-password-org-config
|
||||
title: PasswordOrgConfig
|
||||
pagination_label: PasswordOrgConfig
|
||||
sidebar_label: PasswordOrgConfig
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'PasswordOrgConfig', 'V2024PasswordOrgConfig']
|
||||
slug: /tools/sdk/powershell/v2024/models/password-org-config
|
||||
tags: ['SDK', 'Software Development Kit', 'PasswordOrgConfig', 'V2024PasswordOrgConfig']
|
||||
---
|
||||
|
||||
|
||||
# PasswordOrgConfig
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**CustomInstructionsEnabled** | Pointer to **Boolean** | Indicator whether custom password instructions feature is enabled. The default value is false. | [optional] [default to $false]
|
||||
**DigitTokenEnabled** | Pointer to **Boolean** | Indicator whether ""digit token"" feature is enabled. The default value is false. | [optional] [default to $false]
|
||||
**DigitTokenDurationMinutes** | Pointer to **Int32** | The duration of ""digit token"" in minutes. The default value is 5. | [optional] [default to 5]
|
||||
**DigitTokenLength** | Pointer to **Int32** | The length of ""digit token"". The default value is 6. | [optional] [default to 6]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$PasswordOrgConfig = Initialize-PSSailpoint.V2024PasswordOrgConfig -CustomInstructionsEnabled true `
|
||||
-DigitTokenEnabled true `
|
||||
-DigitTokenDurationMinutes 10 `
|
||||
-DigitTokenLength 9
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$PasswordOrgConfig | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user