Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppGroupAppsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListAppGroupAppsResponse

Returns a new instance of GoogleCloudApigeeV1ListAppGroupAppsResponse.



5811
5812
5813
# File 'lib/google/apis/apigee_v1/classes.rb', line 5811

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

Instance Attribute Details

#app_group_appsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupApp>

List of AppGroup apps and their credentials. Corresponds to the JSON property appGroupApps



5803
5804
5805
# File 'lib/google/apis/apigee_v1/classes.rb', line 5803

def app_group_apps
  @app_group_apps
end

#next_page_tokenString

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

Returns:

  • (String)


5809
5810
5811
# File 'lib/google/apis/apigee_v1/classes.rb', line 5809

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5816
5817
5818
5819
# File 'lib/google/apis/apigee_v1/classes.rb', line 5816

def update!(**args)
  @app_group_apps = args[:app_group_apps] if args.key?(:app_group_apps)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end