pub struct TableDataInsertAllRequest {
pub ignore_unknown_values: Option<bool>,
pub kind: Option<String>,
pub rows: Option<Vec<TableDataInsertAllRequestRows>>,
pub skip_invalid_rows: Option<bool>,
pub template_suffix: Option<String>,
pub trace_id: Option<String>,
}Expand description
Request for sending a single streaming insert.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- insert all tabledata (request)
Fields§
§ignore_unknown_values: Option<bool>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: Option<String>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: Option<Vec<TableDataInsertAllRequestRows>>no description provided
skip_invalid_rows: Option<bool>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.
template_suffix: Option<String>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.
trace_id: Option<String>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.
Trait Implementations§
Source§impl Clone for TableDataInsertAllRequest
impl Clone for TableDataInsertAllRequest
Source§fn clone(&self) -> TableDataInsertAllRequest
fn clone(&self) -> TableDataInsertAllRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more