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

SqlExportOptions

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

Options for exporting data in SQL format.

interface SqlExportOptions {
cleanTargetObjects?: boolean;
ifExistTargetObjects?: boolean;
schemaOnly?: boolean;
tables?: string[];
}

§Properties

§
cleanTargetObjects?: boolean
[src]

Optional. If true, output commands to DROP all the dumped database objects prior to outputting the commands for creating them.

§
ifExistTargetObjects?: boolean
[src]

Optional. If true, use DROP ... IF EXISTS commands to check for the object's existence before dropping it in clean_target_objects mode.

§
schemaOnly?: boolean
[src]

Optional. If true, only export the schema.

§
tables?: string[]
[src]

Optional. Tables to export from.