Show / Hide Table of Contents

Class SqlExportOptions

Options for exporting data in SQL format.

Inheritance
object
SqlExportOptions
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudAlloyDBAdmin.v1.Data
Assembly: Google.Apis.CloudAlloyDBAdmin.v1.dll
Syntax
public class SqlExportOptions : IDirectResponseSchema

Properties

CleanTargetObjects

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

Declaration
[JsonProperty("cleanTargetObjects")]
public virtual bool? CleanTargetObjects { get; set; }
Property Value
Type Description
bool?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

IfExistTargetObjects

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

Declaration
[JsonProperty("ifExistTargetObjects")]
public virtual bool? IfExistTargetObjects { get; set; }
Property Value
Type Description
bool?

SchemaOnly

Optional. If true, only export the schema.

Declaration
[JsonProperty("schemaOnly")]
public virtual bool? SchemaOnly { get; set; }
Property Value
Type Description
bool?

Tables

Optional. Tables to export from.

Declaration
[JsonProperty("tables")]
public virtual IList<string> Tables { get; set; }
Property Value
Type Description
IList<string>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX