Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListInstancesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListInstancesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
Response for ListInstances.
Instance Attribute Summary collapse
-
#instances ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Instance>
Instances in the specified organization.
-
#next_page_token ⇒ String
Page token that you can include in a ListInstance request to retrieve the next page of content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListInstancesResponse
constructor
A new instance of GoogleCloudApigeeV1ListInstancesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListInstancesResponse
Returns a new instance of GoogleCloudApigeeV1ListInstancesResponse.
3804 3805 3806 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3804 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instances ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Instance>
Instances in the specified organization.
Corresponds to the JSON property instances
3796 3797 3798 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3796 def instances @instances end |
#next_page_token ⇒ String
Page token that you can include in a ListInstance request to retrieve the next
page of content. If omitted, no subsequent pages exist.
Corresponds to the JSON property nextPageToken
3802 3803 3804 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3802 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3809 3810 3811 3812 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3809 def update!(**args) @instances = args[:instances] if args.key?(:instances) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |