Show / Hide Table of Contents

Class MaterializedViewDefinition

Inheritance
System.Object
MaterializedViewDefinition
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 MaterializedViewDefinition : IDirectResponseSchema

Properties

EnableRefresh

[Optional] [TrustedTester] Enable automatic refresh of the materialized view when the base table is updated. The default value is "true".

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

ETag

The ETag of the item.

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

LastRefreshTime

[Output-only] [TrustedTester] The time when this materialized view was last modified, in milliseconds since the epoch.

Declaration
[JsonProperty("lastRefreshTime")]
public virtual long? LastRefreshTime { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Query

[Required] A query whose result is persisted.

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

RefreshIntervalMs

[Optional] [TrustedTester] The maximum frequency at which this materialized view will be refreshed. The default value is "1800000" (30 minutes).

Declaration
[JsonProperty("refreshIntervalMs")]
public virtual long? RefreshIntervalMs { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

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