Class: Google::Apis::SqladminV1::InstancesListResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1::InstancesListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb
Overview
Database instances list response.
Instance Attribute Summary collapse
-
#items ⇒ Array<Google::Apis::SqladminV1::DatabaseInstance>
List of database instance resources.
-
#kind ⇒ String
This is always
sql#instancesList
. -
#next_page_token ⇒ String
The continuation token, used to page through large result sets.
-
#warnings ⇒ Array<Google::Apis::SqladminV1::ApiWarning>
List of warnings that occurred while handling the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesListResponse
constructor
A new instance of InstancesListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstancesListResponse
Returns a new instance of InstancesListResponse.
2522 2523 2524 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2522 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::SqladminV1::DatabaseInstance>
List of database instance resources.
Corresponds to the JSON property items
2504 2505 2506 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2504 def items @items end |
#kind ⇒ String
This is always sql#instancesList
.
Corresponds to the JSON property kind
2509 2510 2511 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2509 def kind @kind end |
#next_page_token ⇒ String
The continuation token, used to page through large result sets. Provide this
value in a subsequent request to return the next page of results.
Corresponds to the JSON property nextPageToken
2515 2516 2517 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2515 def next_page_token @next_page_token end |
#warnings ⇒ Array<Google::Apis::SqladminV1::ApiWarning>
List of warnings that occurred while handling the request.
Corresponds to the JSON property warnings
2520 2521 2522 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2520 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2527 2528 2529 2530 2531 2532 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2527 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @warnings = args[:warnings] if args.key?(:warnings) end |