Class: Google::Apis::BiglakeV1::ListTablesResponse
- Inherits:
-
Object
- Object
- Google::Apis::BiglakeV1::ListTablesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/biglake_v1/classes.rb,
lib/google/apis/biglake_v1/representations.rb,
lib/google/apis/biglake_v1/representations.rb
Overview
Response message for the ListTables method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#tables ⇒ Array<Google::Apis::BiglakeV1::Table>
The tables from the specified database.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTablesResponse
constructor
A new instance of ListTablesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListTablesResponse
Returns a new instance of ListTablesResponse.
253 254 255 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
246 247 248 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 246 def next_page_token @next_page_token end |
#tables ⇒ Array<Google::Apis::BiglakeV1::Table>
The tables from the specified database.
Corresponds to the JSON property tables
251 252 253 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 251 def tables @tables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
258 259 260 261 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 258 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tables = args[:tables] if args.key?(:tables) end |