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

UsersUpdateOptions

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

Additional options for SQLAdmin#usersUpdate.

interface UsersUpdateOptions {
databaseRoles?: string;
host?: string;
name?: string;
revokeExistingRoles?: boolean;
}

§Properties

§
databaseRoles?: string
[src]

Optional. List of database roles to grant to the user. body.database_roles will be ignored for update request.

§
host?: string
[src]

Optional. Host of the user in the instance.

§
name?: string
[src]

Name of the user in the instance.

§
revokeExistingRoles?: boolean
[src]

Optional. Specifies whether to revoke existing roles that are not present in the database_roles field. If false or unset, the database roles specified in database_roles are added to the user's existing roles.