Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEnvironmentGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEnvironmentGroupsResponse
- 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 ListEnvironmentGroups.
Instance Attribute Summary collapse
-
#environment_groups ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroup>
EnvironmentGroups in the specified organization.
-
#next_page_token ⇒ String
Page token that you can include in a ListEnvironmentGroups request to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListEnvironmentGroupsResponse
constructor
A new instance of GoogleCloudApigeeV1ListEnvironmentGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListEnvironmentGroupsResponse
Returns a new instance of GoogleCloudApigeeV1ListEnvironmentGroupsResponse.
6154 6155 6156 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6154 def initialize(**args) update!(**args) end |
Instance Attribute Details
#environment_groups ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroup>
EnvironmentGroups in the specified organization.
Corresponds to the JSON property environmentGroups
6146 6147 6148 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6146 def environment_groups @environment_groups end |
#next_page_token ⇒ String
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
6152 6153 6154 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6152 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6159 6160 6161 6162 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6159 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 |