Class: Google::Apis::BigqueryV2::TableList

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TableList

Returns a new instance of TableList



4690
4691
4692
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4690

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

Instance Attribute Details

#etagString

A hash of this page of results. Corresponds to the JSON property etag

Returns:

  • (String)


4668
4669
4670
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4668

def etag
  @etag
end

#kindString

The type of list. Corresponds to the JSON property kind

Returns:

  • (String)


4673
4674
4675
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4673

def kind
  @kind
end

#next_page_tokenString

A token to request the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4678
4679
4680
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4678

def next_page_token
  @next_page_token
end

#tablesArray<Google::Apis::BigqueryV2::TableList::Table>

Tables in the requested dataset. Corresponds to the JSON property tables



4683
4684
4685
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4683

def tables
  @tables
end

#total_itemsFixnum

The total number of tables in the dataset. Corresponds to the JSON property totalItems

Returns:

  • (Fixnum)


4688
4689
4690
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4688

def total_items
  @total_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4695
4696
4697
4698
4699
4700
4701
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4695

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