Class: Google::Apis::SpannerV1::ListDatabasesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::ListDatabasesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/google/apis/spanner_v1/representations.rb
Overview
The response for ListDatabases.
Instance Attribute Summary collapse
-
#databases ⇒ Array<Google::Apis::SpannerV1::Database>
Databases that matched the request.
-
#next_page_token ⇒ String
next_page_token
can be sent in a subsequent ListDatabases call to fetch more of the matching databases.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDatabasesResponse
constructor
A new instance of ListDatabasesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDatabasesResponse
Returns a new instance of ListDatabasesResponse
201 202 203 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 201 def initialize(**args) update!(**args) end |
Instance Attribute Details
#databases ⇒ Array<Google::Apis::SpannerV1::Database>
Databases that matched the request.
Corresponds to the JSON property databases
199 200 201 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 199 def databases @databases end |
#next_page_token ⇒ String
next_page_token
can be sent in a subsequent
ListDatabases call to fetch more
of the matching databases.
Corresponds to the JSON property nextPageToken
194 195 196 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 194 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
206 207 208 209 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 206 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @databases = args[:databases] if args.key?(:databases) end |