Class ExportContext.SqlExportOptionsData.PostgresExportOptionsData
Options for exporting from a Cloud SQL for PostgreSQL instance.
Inherited Members
Namespace: Google.Apis.SQLAdmin.v1.Data
Assembly: Google.Apis.SQLAdmin.v1.dll
Syntax
public class ExportContext.SqlExportOptionsData.PostgresExportOptionsData
Properties
Clean
Optional. Use this option to include DROP SQL statements. These statements are used to delete database objects before running the import operation.
Declaration
[JsonProperty("clean")]
public virtual bool? Clean { get; set; }
Property Value
Type | Description |
---|---|
bool? |
IfExists
Optional. Option to include an IF EXISTS SQL statement with each DROP statement produced by clean.
Declaration
[JsonProperty("ifExists")]
public virtual bool? IfExists { get; set; }
Property Value
Type | Description |
---|---|
bool? |