class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEnvironmentGroupsResponse
Response for ListEnvironmentGroups.
Attributes
environment_groups[RW]
EnvironmentGroups in the specified organization. Corresponds to the JSON property `environmentGroups` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroup>]
next_page_token[RW]
Page token that you can include in a ListEnvironmentGroups 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 4328 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 4333 def update!(**args) @environment_groups = args[:environment_groups] if args.key?(:environment_groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end