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.



5011
5012
5013
# File 'lib/google/apis/apigee_v1/classes.rb', line 5011

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



5003
5004
5005
# File 'lib/google/apis/apigee_v1/classes.rb', line 5003

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)


5009
5010
5011
# File 'lib/google/apis/apigee_v1/classes.rb', line 5009

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5016
5017
5018
5019
# File 'lib/google/apis/apigee_v1/classes.rb', line 5016

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