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
1150 1151 1152 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1150 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
1141 1142 1143 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1141 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
1148 1149 1150 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1148 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1155 1156 1157 1158 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1155 def update!(**args) @databases = args[:databases] if args.key?(:databases) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |