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

DatabaseFlags

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

Database flags for Cloud SQL instances.

interface DatabaseFlags {
name?: string;
value?: string;
}

§Properties

§
name?: string
[src]

The name of the flag. These flags are passed at instance startup, so include both server options and system variables. Flags are specified with underscores, not hyphens. For more information, see Configuring Database Flags in the Cloud SQL documentation.

§
value?: string
[src]

The value of the flag. Boolean flags are set to on for true and off for false. This field must be omitted if the flag doesn't take a value.