DirectoryPasswordPolicy

data class DirectoryPasswordPolicy(val hardExpire: Boolean? = null, val maxLoginAttempts: Int? = null, val maxPasswordAge: Int? = null, val maxPasswordLength: Int? = null, val minPasswordDifferentChars: Int? = null, val minPasswordLength: Int? = null, val passwordNotContainUsername: Boolean? = null, val passwordReusePrevention: Int? = null, val requireLowerCaseChars: Boolean? = null, val requireNumbers: Boolean? = null, val requireSymbols: Boolean? = null, val requireUpperCaseChars: Boolean? = null)

Constructors

Link copied to clipboard
constructor(hardExpire: Boolean? = null, maxLoginAttempts: Int? = null, maxPasswordAge: Int? = null, maxPasswordLength: Int? = null, minPasswordDifferentChars: Int? = null, minPasswordLength: Int? = null, passwordNotContainUsername: Boolean? = null, passwordReusePrevention: Int? = null, requireLowerCaseChars: Boolean? = null, requireNumbers: Boolean? = null, requireSymbols: Boolean? = null, requireUpperCaseChars: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val hardExpire: Boolean? = null

Whether to restrict login after Password Expiration

Link copied to clipboard
val maxLoginAttempts: Int? = null

Number of password retries.

Link copied to clipboard
val maxPasswordAge: Int? = null

Password validity period.

Link copied to clipboard
val maxPasswordLength: Int? = null

Maximum password length.

Link copied to clipboard

The minimum number of different characters in a password.

Link copied to clipboard
val minPasswordLength: Int? = null

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
val requireNumbers: Boolean? = null

Whether numbers are required in the password.

Link copied to clipboard
val requireSymbols: Boolean? = null

Whether symbols are required in the password.

Link copied to clipboard

Whether uppercase letters are required in the password.