View Source GoogleApi.AlloyDB.V1.Model.CsvExportOptions (google_api_alloy_db v0.15.0)

Options for exporting data in CSV format.

Attributes

  • escapeCharacter (type: String.t, default: nil) - Optional. Specifies the character that should appear before a data character that needs to be escaped. The default is the same as quote character. The value of this argument has to be a character in Hex ASCII Code.
  • fieldDelimiter (type: String.t, default: nil) - Optional. Specifies the character that separates columns within each row (line) of the file. The default is comma. The value of this argument has to be a character in Hex ASCII Code.
  • quoteCharacter (type: String.t, default: nil) - Optional. Specifies the quoting character to be used when a data value is quoted. The default is double-quote. The value of this argument has to be a character in Hex ASCII Code.
  • selectQuery (type: String.t, default: nil) - Required. The SELECT query used to extract the data.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.AlloyDB.V1.Model.CsvExportOptions{
  escapeCharacter: String.t() | nil,
  fieldDelimiter: String.t() | nil,
  quoteCharacter: String.t() | nil,
  selectQuery: String.t() | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.