class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDataCollectorsResponse

Response for ListDataCollectors.

Attributes

data_collectors[RW]

Data collectors in the specified organization. Corresponds to the JSON property `dataCollectors` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollector>]

next_page_token[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4166
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 4171
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