Skip to main content

PasswordOrgConfig

Properties

NameTypeDescriptionNotes
CustomInstructionsEnabledBooleanIndicator whether custom password instructions feature is enabled. The default value is false.[optional] [default to $false]
DigitTokenEnabledBooleanIndicator whether ""digit token"" feature is enabled. The default value is false.[optional] [default to $false]
DigitTokenDurationMinutesInt32The duration of ""digit token"" in minutes. The default value is 5.[optional] [default to 5]
DigitTokenLengthInt32The length of ""digit token"". The default value is 6.[optional] [default to 6]

Examples

  • Prepare the resource
$PasswordOrgConfig = Initialize-PSSailpoint.V2024PasswordOrgConfig  -CustomInstructionsEnabled true `
-DigitTokenEnabled true `
-DigitTokenDurationMinutes 10 `
-DigitTokenLength 9
  • Convert the resource to JSON
$PasswordOrgConfig | ConvertTo-JSON

[Back to top]