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.



6565
6566
6567
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6565

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)


6562
6563
6564
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6562

def use_legacy_sql
  @use_legacy_sql
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6570
6571
6572
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6570

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