Show / Hide Table of Contents

Class ViewDefinition

Inheritance
System.Object
ViewDefinition
Implements
Google.Apis.Requests.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 ViewDefinition : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Query

[Required] A query that BigQuery executes when the view is referenced.

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

UseExplicitColumnNames

True if the column names are explicitly specified. For example by using the 'CREATE VIEW v(c1, c2) AS ...' syntax. Can only be set using BigQuery's standard SQL: https://cloud.google.com/bigquery/sql-reference/

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

UseLegacySql

Specifies whether to use BigQuery's legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery's standard SQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value.

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

UserDefinedFunctionResources

Describes user-defined function resources used in the query.

Declaration
[JsonProperty("userDefinedFunctionResources")]
public virtual IList<UserDefinedFunctionResource> UserDefinedFunctionResources { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<UserDefinedFunctionResource>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top