google_api_spanner v0.2.0 GoogleApi.Spanner.V1.Model.Write View Source

Arguments to insert, update, insert_or_update, and replace operations.

Attributes

  • columns ([String.t]): The names of the columns in table to be written. The list of columns must contain enough columns to allow Cloud Spanner to derive values for all primary key columns in the row(s) to be modified. Defaults to: null.
  • table (String.t): Required. The table whose rows will be written. Defaults to: null.
  • values ([[ErrorUnknown]]): The values to be written. `values` can contain more than one list of values. If it does, then multiple rows are written, one for each entry in `values`. Each list in `values` must have exactly as many entries as there are entries in columns above. Sending multiple lists is equivalent to sending multiple `Mutation`s, each containing one `values` entry and repeating table and columns. Individual values in each list are encoded as described here. Defaults to: null.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields

Link to this section Types

Link to this type t() View Source
t() :: %GoogleApi.Spanner.V1.Model.Write{
  columns: [any()],
  table: any(),
  values: list()
}

Link to this section Functions

Link to this function decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.