Class TableReplicationInfo
Replication info of a table created using AS REPLICA
DDL like: CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv
Implements
Inherited Members
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
Required. Specifies the interval at which the source table is polled for updates.
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 |