GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequest (google_api_big_query v0.88.0)
View SourceRequest for sending a single streaming insert.
Attributes
-
ignoreUnknownValues
(type:boolean()
, default:nil
) - Optional. Accept rows that contain values that do not match the schema. The unknown values are ignored. Default is false, which treats unknown values as errors. -
kind
(type:String.t
, default:bigquery#tableDataInsertAllRequest
) - Optional. The resource type of the response. The value is not checked at the backend. Historically, it has been set to "bigquery#tableDataInsertAllRequest" but you are not required to set it. -
rows
(type:list(GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequestRows.t)
, default:nil
) - -
skipInvalidRows
(type:boolean()
, default:nil
) - Optional. Insert all valid rows of a request, even if invalid rows exist. The default value is false, which causes the entire request to fail if any invalid rows exist. -
templateSuffix
(type:String.t
, default:nil
) - Optional. If specified, treats the destination table as a base template, and inserts the rows into an instance table named "{destination}{templateSuffix}". BigQuery will manage creation of the instance table, using the schema of the base template table. See https://cloud.google.com/bigquery/streaming-data-into-bigquery#template-tables for considerations when working with templates tables. -
traceId
(type:String.t
, default:nil
) - Optional. Unique request trace id. Used for debugging purposes only. It is case-sensitive, limited to up to 36 ASCII characters. A UUID is recommended.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequest{ ignoreUnknownValues: boolean() | nil, kind: String.t() | nil, rows: [GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequestRows.t()] | nil, skipInvalidRows: boolean() | nil, templateSuffix: String.t() | nil, traceId: String.t() | nil }