Show / Hide Table of Contents

Class ExportContext.SqlExportOptionsData

Options for exporting data as SQL statements.

Inheritance
object
ExportContext.SqlExportOptionsData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class ExportContext.SqlExportOptionsData

Properties

MysqlExportOptions

Options for exporting from MySQL.

Declaration
[JsonProperty("mysqlExportOptions")]
public virtual ExportContext.SqlExportOptionsData.MysqlExportOptionsData MysqlExportOptions { get; set; }
Property Value
Type Description
ExportContext.SqlExportOptionsData.MysqlExportOptionsData

Parallel

Optional. Whether or not the export should be parallel.

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

PostgresExportOptions

Options for exporting from a Cloud SQL for PostgreSQL instance.

Declaration
[JsonProperty("postgresExportOptions")]
public virtual ExportContext.SqlExportOptionsData.PostgresExportOptionsData PostgresExportOptions { get; set; }
Property Value
Type Description
ExportContext.SqlExportOptionsData.PostgresExportOptionsData

SchemaOnly

Export only schemas.

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

Tables

Tables to export, or that were exported, from the specified database. If you specify tables, specify one and only one database. For PostgreSQL instances, you can specify only one table.

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

Threads

Optional. The number of threads to use for parallel export.

Declaration
[JsonProperty("threads")]
public virtual int? Threads { get; set; }
Property Value
Type Description
int?
In this article
Back to top Generated by DocFX