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

MetadataExport

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

The details of a metadata export operation.

interface MetadataExport {
readonly databaseDumpType?: "TYPE_UNSPECIFIED" | "MYSQL" | "AVRO";
readonly destinationGcsUri?: string;
readonly endTime?: Date;
readonly startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "RUNNING"
| "SUCCEEDED"
| "FAILED"
| "CANCELLED";
}

§Properties

§
readonly databaseDumpType?: "TYPE_UNSPECIFIED" | "MYSQL" | "AVRO"
[src]

Output only. The type of the database dump.

§
readonly destinationGcsUri?: string
[src]

Output only. A Cloud Storage URI of a folder that metadata are exported to, in the form of gs:////, where is automatically generated.

§
readonly endTime?: Date
[src]

Output only. The time when the export ended.

§
readonly startTime?: Date
[src]

Output only. The time when the export started.

§
readonly state?: "STATE_UNSPECIFIED" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELLED"
[src]

Output only. The current state of the export.