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

UserPassword

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

The username/password for a database user. Used for specifying initial users at cluster creation time.

interface UserPassword {
password?: string;
readonly passwordSet?: boolean;
user?: string;
}

§Properties

§
password?: string
[src]

The initial password for the user.

§
readonly passwordSet?: boolean
[src]

Output only. Indicates if the initial_user.password field has been set.

§
user?: string
[src]

The database username.