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.