Show / Hide Table of Contents

Class TableReplicationInfo

Replication info of a table created using AS REPLICA DDL like: CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv

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

Properties

ETag

The ETag of the item.

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

ReplicatedSourceLastRefreshTime

Optional. Output only. If source is a materialized view, this field signifies the last refresh time of the source.

Declaration
[JsonProperty("replicatedSourceLastRefreshTime")]
public virtual long? ReplicatedSourceLastRefreshTime { get; set; }
Property Value
Type Description
long?

ReplicationError

Optional. Output only. Replication error that will permanently stopped table replication.

Declaration
[JsonProperty("replicationError")]
public virtual ErrorProto ReplicationError { get; set; }
Property Value
Type Description
ErrorProto

ReplicationIntervalMs

Optional. Specifies the interval at which the source table is polled for updates. It's Optional. If not specified, default replication interval would be applied.

Declaration
[JsonProperty("replicationIntervalMs")]
public virtual long? ReplicationIntervalMs { get; set; }
Property Value
Type Description
long?

ReplicationStatus

Optional. Output only. Replication status of configured replication.

Declaration
[JsonProperty("replicationStatus")]
public virtual string ReplicationStatus { get; set; }
Property Value
Type Description
string

SourceTable

Required. Source table reference that is replicated.

Declaration
[JsonProperty("sourceTable")]
public virtual TableReference SourceTable { get; set; }
Property Value
Type Description
TableReference

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX