Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppGroupAppsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppGroupAppsResponse
 
 
- 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
- 
  
    
      #app_group_apps  ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroupApp> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of AppGroup apps and their credentials.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token that can be sent as
next_page_tokento retrieve the next page. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1ListAppGroupAppsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1ListAppGroupAppsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
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_apps ⇒ Array<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_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
      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  |