Show / Hide Table of Contents

Class SnapshotDefinition

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

Properties

BaseTableReference

[Required] Reference describing the ID of the table that was snapshot.

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

ETag

The ETag of the item.

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

SnapshotTime

System.DateTime representation of SnapshotTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? SnapshotTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

SnapshotTimeRaw

[Required] The time at which the base table was snapshot. This value is reported in the JSON response using RFC3339 format.

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

Implements

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