Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppGroupsResponse
- 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
ListAppGroupsResponse contains the 0 or more AppGroups, along with the optional page token and the total count of apps.
Instance Attribute Summary collapse
-
#app_groups ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroup>
List of AppGroups.
-
#next_page_token ⇒ String
Token that can be sent as
next_page_tokento retrieve the next page. -
#total_size ⇒ Fixnum
Total count of AppGroups.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListAppGroupsResponse
constructor
A new instance of GoogleCloudApigeeV1ListAppGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListAppGroupsResponse
Returns a new instance of GoogleCloudApigeeV1ListAppGroupsResponse.
6692 6693 6694 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6692 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_groups ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroup>
List of AppGroups.
Corresponds to the JSON property appGroups
6679 6680 6681 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6679 def app_groups @app_groups end |
#next_page_token ⇒ String
Token that can be sent as next_page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
6685 6686 6687 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6685 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
Total count of AppGroups.
Corresponds to the JSON property totalSize
6690 6691 6692 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6690 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6697 6698 6699 6700 6701 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6697 def update!(**args) @app_groups = args[:app_groups] if args.key?(:app_groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) end |