Class: Google::Apis::BigqueryV2::TableList::Table::View

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

Overview

Additional details for a view.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ View

Returns a new instance of View.



6735
6736
6737
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6735

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

Instance Attribute Details

#use_legacy_sqlBoolean Also known as: use_legacy_sql?

True if view is defined in legacy SQL dialect, false if in standard SQL. Corresponds to the JSON property useLegacySql

Returns:

  • (Boolean)


6732
6733
6734
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6732

def use_legacy_sql
  @use_legacy_sql
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6740
6741
6742
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6740

def update!(**args)
  @use_legacy_sql = args[:use_legacy_sql] if args.key?(:use_legacy_sql)
end