Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UserPasswordValidationPolicy

import type { UserPasswordValidationPolicy } from "https://googleapis.deno.dev/v1/sqladmin:v1.ts";

User level password validation policy.

interface UserPasswordValidationPolicy {
allowedFailedAttempts?: number;
enableFailedAttemptsCheck?: boolean;
enablePasswordVerification?: boolean;
passwordExpirationDuration?: number;
readonly status?: PasswordStatus;
}

§Properties

§
allowedFailedAttempts?: number
[src]

Number of failed login attempts allowed before user get locked.

§
enableFailedAttemptsCheck?: boolean
[src]

If true, failed login attempts check will be enabled.

§
enablePasswordVerification?: boolean
[src]

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

§
passwordExpirationDuration?: number
[src]

Expiration duration after password is updated.

§
readonly status?: PasswordStatus
[src]

Output only. Read-only password status.