Class: Google::Apis::BigqueryV2::MaterializedViewDefinition

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MaterializedViewDefinition

Returns a new instance of MaterializedViewDefinition.



4496
4497
4498
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4496

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enable_refreshBoolean Also known as: enable_refresh?

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

Returns:

  • (Boolean)


4476
4477
4478
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4476

def enable_refresh
  @enable_refresh
end

#last_refresh_timeFixnum

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

Returns:

  • (Fixnum)


4483
4484
4485
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4483

def last_refresh_time
  @last_refresh_time
end

#queryString

[Required] A query whose result is persisted. Corresponds to the JSON property query

Returns:

  • (String)


4488
4489
4490
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4488

def query
  @query
end

#refresh_interval_msFixnum

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

Returns:

  • (Fixnum)


4494
4495
4496
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4494

def refresh_interval_ms
  @refresh_interval_ms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4501
4502
4503
4504
4505
4506
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4501

def update!(**args)
  @enable_refresh = args[:enable_refresh] if args.key?(:enable_refresh)
  @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
  @query = args[:query] if args.key?(:query)
  @refresh_interval_ms = args[:refresh_interval_ms] if args.key?(:refresh_interval_ms)
end