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.
2103 2104 2105 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2103 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
2085 2086 2087 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2085 def items @items end |
#kind ⇒ String
This is always sql#instancesList.
Corresponds to the JSON property kind
2090 2091 2092 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2090 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
2096 2097 2098 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2096 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
2101 2102 2103 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2101 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2108 2109 2110 2111 2112 2113 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2108 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 |