Class: Google::Apis::BigtableadminV2::ListTablesResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::ListTablesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigtableadmin_v2/classes.rb,
generated/google/apis/bigtableadmin_v2/representations.rb,
generated/google/apis/bigtableadmin_v2/representations.rb
Overview
Response message for google.bigtable.admin.v2.BigtableTableAdmin.ListTables
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Set if not all tables could be returned in a single response.
-
#tables ⇒ Array<Google::Apis::BigtableadminV2::Table>
The tables present in the requested instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTablesResponse
constructor
A new instance of ListTablesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTablesResponse
Returns a new instance of ListTablesResponse
985 986 987 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 985 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
978 979 980 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 978 def next_page_token @next_page_token end |
#tables ⇒ Array<Google::Apis::BigtableadminV2::Table>
The tables present in the requested instance.
Corresponds to the JSON property tables
983 984 985 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 983 def tables @tables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
990 991 992 993 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 990 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tables = args[:tables] if args.key?(:tables) end |