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

DatabaseDump

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

A specification of the location of and metadata about a database dump from a relational database management system.

interface DatabaseDump {
databaseType?: "DATABASE_TYPE_UNSPECIFIED" | "MYSQL";
gcsUri?: string;
sourceDatabase?: string;
type?: "TYPE_UNSPECIFIED" | "MYSQL" | "AVRO";
}

§Properties

§
databaseType?: "DATABASE_TYPE_UNSPECIFIED" | "MYSQL"
[src]

The type of the database.

§
gcsUri?: string
[src]

A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://.

§
sourceDatabase?: string
[src]

The name of the source database.

§
type?: "TYPE_UNSPECIFIED" | "MYSQL" | "AVRO"
[src]

Optional. The type of the database dump. If unspecified, defaults to MYSQL.