Class: Google::Apis::BigqueryV2::TableList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::BigqueryV2::TableList
 
 
- 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 
Defined Under Namespace
Classes: Table
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A hash of this page of results.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of list.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token to request the next page of results.
 - 
  
    
      #tables  ⇒ Array<Google::Apis::BigqueryV2::TableList::Table> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Tables in the requested dataset.
 - 
  
    
      #total_items  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of tables in the dataset.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TableList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TableList.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TableList
Returns a new instance of TableList
      3503 3504 3505  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 3503 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#etag ⇒ String
A hash of this page of results.
Corresponds to the JSON property etag
      3481 3482 3483  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 3481 def etag @etag end  | 
  
#kind ⇒ String
The type of list.
Corresponds to the JSON property kind
      3486 3487 3488  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 3486 def kind @kind end  | 
  
#next_page_token ⇒ String
A token to request the next page of results.
Corresponds to the JSON property nextPageToken
      3491 3492 3493  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 3491 def next_page_token @next_page_token end  | 
  
#tables ⇒ Array<Google::Apis::BigqueryV2::TableList::Table>
Tables in the requested dataset.
Corresponds to the JSON property tables
      3496 3497 3498  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 3496 def tables @tables end  | 
  
#total_items ⇒ Fixnum
The total number of tables in the dataset.
Corresponds to the JSON property totalItems
      3501 3502 3503  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 3501 def total_items @total_items end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3508 3509 3510 3511 3512 3513 3514  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 3508 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tables = args[:tables] if args.key?(:tables) @total_items = args[:total_items] if args.key?(:total_items) end  |