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.
3195 3196 3197 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3195 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
3177 3178 3179 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3177 def items @items end |
#kind ⇒ String
This is always sql#instancesList.
Corresponds to the JSON property kind
3182 3183 3184 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3182 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
3188 3189 3190 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3188 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
3193 3194 3195 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3193 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3200 3201 3202 3203 3204 3205 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3200 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 |