Directory Password Policy Args
data class DirectoryPasswordPolicyArgs(val hardExpire: Output<Boolean>? = null, val maxLoginAttempts: Output<Int>? = null, val maxPasswordAge: Output<Int>? = null, val maxPasswordLength: Output<Int>? = null, val minPasswordDifferentChars: Output<Int>? = null, val minPasswordLength: Output<Int>? = null, val passwordNotContainUsername: Output<Boolean>? = null, val passwordReusePrevention: Output<Int>? = null, val requireLowerCaseChars: Output<Boolean>? = null, val requireNumbers: Output<Boolean>? = null, val requireSymbols: Output<Boolean>? = null, val requireUpperCaseChars: Output<Boolean>? = null) : ConvertibleToJava<DirectoryPasswordPolicyArgs>
Constructors
Link copied to clipboard
constructor(hardExpire: Output<Boolean>? = null, maxLoginAttempts: Output<Int>? = null, maxPasswordAge: Output<Int>? = null, maxPasswordLength: Output<Int>? = null, minPasswordDifferentChars: Output<Int>? = null, minPasswordLength: Output<Int>? = null, passwordNotContainUsername: Output<Boolean>? = null, passwordReusePrevention: Output<Int>? = null, requireLowerCaseChars: Output<Boolean>? = null, requireNumbers: Output<Boolean>? = null, requireSymbols: Output<Boolean>? = null, requireUpperCaseChars: Output<Boolean>? = null)
Properties
Link copied to clipboard
Whether to restrict login after Password Expiration
Link copied to clipboard
Number of password retries.
Link copied to clipboard
Password validity period.
Link copied to clipboard
Maximum password length.
Link copied to clipboard
The minimum number of different characters in a password.
Link copied to clipboard
Minimum password length.
Link copied to clipboard
Whether the user name is not allowed in the password.
Link copied to clipboard
Historical password check policy.
Link copied to clipboard
Whether lowercase letters are required in the password.
Link copied to clipboard
Whether numbers are required in the password.
Link copied to clipboard
Whether symbols are required in the password.
Link copied to clipboard
Whether uppercase letters are required in the password.