class Google::Apis::BigtableadminV2::ListTablesResponse

Response message for google.bigtable.admin.v2.BigtableTableAdmin.ListTables

Attributes

next_page_token[RW]

Set if not all tables could be returned in a single response. Pass this value to `page_token` in another request to get the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

tables[RW]

The tables present in the requested instance. Corresponds to the JSON property `tables` @return [Array<Google::Apis::BigtableadminV2::Table>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigtableadmin_v2/classes.rb, line 1317
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigtableadmin_v2/classes.rb, line 1322
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @tables = args[:tables] if args.key?(:tables)
end