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
| 3374 3375 3376 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 3374 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
| 3371 3372 3373 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 3371 def use_legacy_sql @use_legacy_sql end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3379 3380 3381 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 3379 def update!(**args) @use_legacy_sql = args[:use_legacy_sql] if args.key?(:use_legacy_sql) end |