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.



5958
5959
5960
# File 'lib/google/apis/apigee_v1/classes.rb', line 5958

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



5950
5951
5952
# File 'lib/google/apis/apigee_v1/classes.rb', line 5950

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)


5956
5957
5958
# File 'lib/google/apis/apigee_v1/classes.rb', line 5956

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5963
5964
5965
5966
# File 'lib/google/apis/apigee_v1/classes.rb', line 5963

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