class Google::Apis::BigqueryV2::TableList
Attributes
etag[RW]
A hash of this page of results. Corresponds to the JSON property `etag` @return [String]
kind[RW]
The type of list. Corresponds to the JSON property `kind` @return [String]
next_page_token[RW]
A token to request the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
tables[RW]
Tables in the requested dataset. Corresponds to the JSON property `tables` @return [Array<Google::Apis::BigqueryV2::TableList::Table>]
total_items[RW]
The total number of tables in the dataset. Corresponds to the JSON property `totalItems` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/bigquery_v2/classes.rb, line 2543 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/bigquery_v2/classes.rb, line 2548 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