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

Database

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

Represents a SQL database on the Cloud SQL instance.

interface Database {
charset?: string;
collation?: string;
etag?: string;
instance?: string;
kind?: string;
name?: string;
project?: string;
selfLink?: string;
sqlserverDatabaseDetails?: SqlServerDatabaseDetails;
}

§Properties

§
charset?: string
[src]

The Cloud SQL charset value.

§
collation?: string
[src]

The Cloud SQL collation value.

§
etag?: string
[src]

This field is deprecated and will be removed from a future version of the API.

§
instance?: string
[src]

The name of the Cloud SQL instance. This does not include the project ID.

§
kind?: string
[src]

This is always sql#database.

§
name?: string
[src]

The name of the database in the Cloud SQL instance. This does not include the project ID or instance name.

§
project?: string
[src]

The project ID of the project containing the Cloud SQL database. The Google apps domain is prefixed if applicable.

§
sqlserverDatabaseDetails?: SqlServerDatabaseDetails
[src]