Class ExportClusterRequest
Export cluster request.
Implements
Inherited Members
Namespace: Google.Apis.CloudAlloyDBAdmin.v1.Data
Assembly: Google.Apis.CloudAlloyDBAdmin.v1.dll
Syntax
public class ExportClusterRequest : IDirectResponseSchema
Properties
CsvExportOptions
Options for exporting data in CSV format. Required field to be set for CSV file type.
Declaration
[JsonProperty("csvExportOptions")]
public virtual CsvExportOptions CsvExportOptions { get; set; }
Property Value
Type | Description |
---|---|
CsvExportOptions |
Database
Required. Name of the database where the export command will be executed. Note - Value provided should be
the same as expected from SELECT current_database();
and NOT as a resource reference.
Declaration
[JsonProperty("database")]
public virtual string Database { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
GcsDestination
Required. Option to export data to cloud storage.
Declaration
[JsonProperty("gcsDestination")]
public virtual GcsDestination GcsDestination { get; set; }
Property Value
Type | Description |
---|---|
GcsDestination |
SqlExportOptions
Options for exporting data in SQL format. Required field to be set for SQL file type.
Declaration
[JsonProperty("sqlExportOptions")]
public virtual SqlExportOptions SqlExportOptions { get; set; }
Property Value
Type | Description |
---|---|
SqlExportOptions |