Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDataCollectorsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDataCollectorsResponse
 
 
- 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 ListDataCollectors.
Instance Attribute Summary collapse
- 
  
    
      #data_collectors  ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollector> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Data collectors in the specified organization.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Page token that you can include in a ListDataCollectors request to retrieve the next page.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1ListDataCollectorsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1ListDataCollectorsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListDataCollectorsResponse
Returns a new instance of GoogleCloudApigeeV1ListDataCollectorsResponse.
      5966 5967 5968  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 5966 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#data_collectors ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollector>
Data collectors in the specified organization.
Corresponds to the JSON property dataCollectors
      5958 5959 5960  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 5958 def data_collectors @data_collectors end  | 
  
#next_page_token ⇒ String
Page token that you can include in a ListDataCollectors request to retrieve
the next page. If omitted, no subsequent pages exist.
Corresponds to the JSON property nextPageToken
      5964 5965 5966  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 5964 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5971 5972 5973 5974  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 5971 def update!(**args) @data_collectors = args[:data_collectors] if args.key?(:data_collectors) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |