Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Response for ListEnvironmentGroupAttachments.
Instance Attribute Summary collapse
-
#environment_group_attachments ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroupAttachment>
EnvironmentGroupAttachments for the specified environment group.
-
#next_page_token ⇒ String
Page token that you can include in a ListEnvironmentGroupAttachments request to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse
constructor
A new instance of GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse
Returns a new instance of GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse.
6128 6129 6130 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6128 def initialize(**args) update!(**args) end |
Instance Attribute Details
#environment_group_attachments ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroupAttachment>
EnvironmentGroupAttachments for the specified environment group.
Corresponds to the JSON property environmentGroupAttachments
6120 6121 6122 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6120 def @environment_group_attachments end |
#next_page_token ⇒ String
Page token that you can include in a ListEnvironmentGroupAttachments request
to retrieve the next page. If omitted, no subsequent pages exist.
Corresponds to the JSON property nextPageToken
6126 6127 6128 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6126 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6133 6134 6135 6136 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6133 def update!(**args) @environment_group_attachments = args[:environment_group_attachments] if args.key?(:environment_group_attachments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |