Show / Hide Table of Contents

Class TableDataInsertAllRequest

Inheritance
System.Object
TableDataInsertAllRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class TableDataInsertAllRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IgnoreUnknownValues

[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.

Declaration
[JsonProperty("ignoreUnknownValues")]
public virtual bool? IgnoreUnknownValues { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Kind

The resource type of the response.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Rows

The rows to insert.

Declaration
[JsonProperty("rows")]
public virtual IList<TableDataInsertAllRequest.RowsData> Rows { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TableDataInsertAllRequest.RowsData>

SkipInvalidRows

[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.

Declaration
[JsonProperty("skipInvalidRows")]
public virtual bool? SkipInvalidRows { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

TemplateSuffix

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.

Declaration
[JsonProperty("templateSuffix")]
public virtual string TemplateSuffix { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top