PasswordValidationPolicyResponse

data class PasswordValidationPolicyResponse(val complexity: String, val disallowUsernameSubstring: Boolean, val enablePasswordPolicy: Boolean, val minLength: Int, val passwordChangeInterval: String, val reuseInterval: Int)

Database instance local user password validation policy

Constructors

Link copied to clipboard
fun PasswordValidationPolicyResponse(complexity: String, disallowUsernameSubstring: Boolean, enablePasswordPolicy: Boolean, minLength: Int, passwordChangeInterval: String, reuseInterval: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The complexity of the password.

Link copied to clipboard

Disallow username as a part of the password.

Link copied to clipboard

Whether the password policy is enabled or not.

Link copied to clipboard

Minimum number of characters allowed.

Link copied to clipboard

Minimum interval after which the password can be changed. This flag is only supported for PostgreSQL.

Link copied to clipboard

Number of previous passwords that cannot be reused.