Class: Google::Apis::BigqueryV2::TableList::Table::View
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::TableList::Table::View
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Overview
Additional details for a view.
Instance Attribute Summary collapse
-
#use_legacy_sql ⇒ Boolean
(also: #use_legacy_sql?)
True if view is defined in legacy SQL dialect, false if in standard SQL.
Instance Method Summary collapse
-
#initialize(**args) ⇒ View
constructor
A new instance of View.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ View
Returns a new instance of View
3824 3825 3826 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3824 def initialize(**args) update!(**args) end |
Instance Attribute Details
#use_legacy_sql ⇒ Boolean 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
3821 3822 3823 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3821 def use_legacy_sql @use_legacy_sql end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3829 3830 3831 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3829 def update!(**args) @use_legacy_sql = args[:use_legacy_sql] if args.key?(:use_legacy_sql) end |