Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/PasswordOrgConfig.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

1.4 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
password-org-config PasswordOrgConfig PasswordOrgConfig PasswordOrgConfig powershellsdk
powershell
PowerShell
sdk
PasswordOrgConfig
/tools/sdk/powershell/beta/models/password-org-config
SDK
Software Development Kit
PasswordOrgConfig

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
$PasswordOrgConfig = Initialize-PSSailpoint.BetaPasswordOrgConfig  -CustomInstructionsEnabled true `
 -DigitTokenEnabled true `
 -DigitTokenDurationMinutes 10 `
 -DigitTokenLength 9
  • Convert the resource to JSON
$PasswordOrgConfig | ConvertTo-JSON

[Back to top]