class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse
Response for ListEnvironmentGroupAttachments.
Attributes
environment_group_attachments[RW]
EnvironmentGroupAttachments for the specified environment group. Corresponds to the JSON property `environmentGroupAttachments` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroupAttachment>]
next_page_token[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4302 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 4307 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