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

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

Defined Under Namespace

Classes: Table

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TableList

Returns a new instance of TableList.



6455
6456
6457
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6455

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)


6433
6434
6435
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6433

def etag
  @etag
end

#kindString

The type of list. Corresponds to the JSON property kind

Returns:

  • (String)


6438
6439
6440
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6438

def kind
  @kind
end

#next_page_tokenString

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

Returns:

  • (String)


6443
6444
6445
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6443

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



6448
6449
6450
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6448

def tables
  @tables
end

#total_itemsFixnum

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

Returns:

  • (Fixnum)


6453
6454
6455
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6453

def total_items
  @total_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6460
6461
6462
6463
6464
6465
6466
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6460

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