google_api_big_query v0.16.0 GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequest View Source
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
) - The resource type of the response.rows
(type:list(GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequestRows.t)
, default:nil
) - The rows to insert.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
) - 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.
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()
View Source
t() :: %GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequest{
ignoreUnknownValues: boolean(),
kind: String.t(),
rows: [GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequestRows.t()],
skipInvalidRows: boolean(),
templateSuffix: String.t()
}
t() :: %GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequest{ ignoreUnknownValues: boolean(), kind: String.t(), rows: [GoogleApi.BigQuery.V2.Model.TableDataInsertAllRequestRows.t()], skipInvalidRows: boolean(), templateSuffix: String.t() }
Link to this section Functions
Link to this function
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.