Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEnvironmentGroupsResponse

Inherits:
Object
  • Object
show all
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 ListEnvironmentGroups.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListEnvironmentGroupsResponse

Returns a new instance of GoogleCloudApigeeV1ListEnvironmentGroupsResponse.



3695
3696
3697
# File 'generated/google/apis/apigee_v1/classes.rb', line 3695

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#environment_groupsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroup>

EnvironmentGroups in the specified organization. Corresponds to the JSON property environmentGroups



3687
3688
3689
# File 'generated/google/apis/apigee_v1/classes.rb', line 3687

def environment_groups
  @environment_groups
end

#next_page_tokenString

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

Returns:

  • (String)


3693
3694
3695
# File 'generated/google/apis/apigee_v1/classes.rb', line 3693

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3700
3701
3702
3703
# File 'generated/google/apis/apigee_v1/classes.rb', line 3700

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