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

ExportClusterRequest

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

Export cluster request.

interface ExportClusterRequest {
csvExportOptions?: CsvExportOptions;
database?: string;
gcsDestination?: GcsDestination;
sqlExportOptions?: SqlExportOptions;
}

§Properties

§
csvExportOptions?: CsvExportOptions
[src]

Options for exporting data in CSV format. Required field to be set for CSV file type.

§
database?: string
[src]

Required. Name of the database where the export command will be executed. Note - Value provided should be the same as expected from SELECT current_database(); and NOT as a resource reference.

§
gcsDestination?: GcsDestination
[src]

Required. Option to export data to cloud storage.

§
sqlExportOptions?: SqlExportOptions
[src]

Options for exporting data in SQL format. Required field to be set for SQL file type.