Show / Hide Table of Contents

Class BigQueryTableSpec

Specifies a BigQuery table definition. Only native tables is allowed.

Inheritance
System.Object
BigQueryTableSpec
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.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class BigQueryTableSpec : IDirectResponseSchema

Properties

DatasetId

The BigQuery dataset id.

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

ETag

The ETag of the item.

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

TableId

The BigQuery table id.

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

TableProjectId

The ID of a BigQuery project the table belongs to. If not specified, the project_id is assumed.

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

Implements

IDirectResponseSchema
In This Article
Back to top