class Google::Apis::BigqueryV2::SnapshotDefinition
Attributes
base_table_reference[RW]
- Required
-
Reference describing the ID of the table that was snapshot.
Corresponds to the JSON property `baseTableReference` @return [Google::Apis::BigqueryV2::TableReference]
snapshot_time[RW]
- Required
-
The time at which the base table was snapshot. This value is
reported in the JSON response using RFC3339 format. Corresponds to the JSON property `snapshotTime` @return [DateTime]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 6018 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 6023 def update!(**args) @base_table_reference = args[:base_table_reference] if args.key?(:base_table_reference) @snapshot_time = args[:snapshot_time] if args.key?(:snapshot_time) end