UserPasswordPolicy

data class UserPasswordPolicy(val allowedFailedAttempts: Int? = null, val enableFailedAttemptsCheck: Boolean? = null, val enablePasswordVerification: Boolean? = null, val passwordExpirationDuration: String? = null, val statuses: List<UserPasswordPolicyStatus>? = null)

Constructors

Link copied to clipboard
constructor(allowedFailedAttempts: Int? = null, enableFailedAttemptsCheck: Boolean? = null, enablePasswordVerification: Boolean? = null, passwordExpirationDuration: String? = null, statuses: List<UserPasswordPolicyStatus>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Number of failed attempts allowed before the user get locked.

Link copied to clipboard

If true, the check that will lock user after too many failed login attempts will be enabled.

Link copied to clipboard

If true, the user must specify the current password before changing the password. This flag is supported only for MySQL.

Link copied to clipboard

Password expiration duration with one week grace period.

Link copied to clipboard