Show / Hide Table of Contents

Class ExportContext.SqlExportOptionsData

Options for exporting data as SQL statements.

Inheritance
System.Object
ExportContext.SqlExportOptionsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class 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

SchemaOnly

Export only schemas.

Declaration
[JsonProperty("schemaOnly")]
public virtual bool? SchemaOnly { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

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
System.Collections.Generic.IList<System.String>
In This Article
Back to top