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

Options for exporting data in SQL format.

Attributes

  • cleanTargetObjects (type: boolean(), default: nil) - Optional. If true, output commands to DROP all the dumped database objects prior to outputting the commands for creating them.
  • ifExistTargetObjects (type: boolean(), default: nil) - Optional. If true, use DROP ... IF EXISTS commands to check for the object's existence before dropping it in clean_target_objects mode.
  • schemaOnly (type: boolean(), default: nil) - Optional. If true, only export the schema.
  • tables (type: list(String.t), default: nil) - Optional. Tables to export from.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.AlloyDB.V1.Model.SqlExportOptions{
  cleanTargetObjects: boolean() | nil,
  ifExistTargetObjects: boolean() | nil,
  schemaOnly: boolean() | nil,
  tables: [String.t()] | nil
}

Functions

decode(value, options)

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

Unwrap a decoded JSON object into its complex fields.