View Source GoogleApi.AlloyDB.V1.Model.ExportClusterRequest (google_api_alloy_db v0.15.0)
Export cluster request.
Attributes
-
csvExportOptions
(type:GoogleApi.AlloyDB.V1.Model.CsvExportOptions.t
, default:nil
) - Options for exporting data in CSV format. Required field to be set for CSV file type. -
database
(type:String.t
, default:nil
) - Required. Name of the database where the export command will be executed. Note - Value provided should be the same as expected fromSELECT current_database();
and NOT as a resource reference. -
gcsDestination
(type:GoogleApi.AlloyDB.V1.Model.GcsDestination.t
, default:nil
) - Required. Option to export data to cloud storage. -
sqlExportOptions
(type:GoogleApi.AlloyDB.V1.Model.SqlExportOptions.t
, default:nil
) - Options for exporting data in SQL format. Required field to be set for SQL file type.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.AlloyDB.V1.Model.ExportClusterRequest{ csvExportOptions: GoogleApi.AlloyDB.V1.Model.CsvExportOptions.t() | nil, database: String.t() | nil, gcsDestination: GoogleApi.AlloyDB.V1.Model.GcsDestination.t() | nil, sqlExportOptions: GoogleApi.AlloyDB.V1.Model.SqlExportOptions.t() | nil }