class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollectorConfig

Data collector and its configuration.

Attributes

name[RW]

Name of the data collector in the following format: `organizations/`org`/ datacollectors/`datacollector“ Corresponds to the JSON property `name` @return [String]

type[RW]

Data type accepted by the data collector. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 1808
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 1813
def update!(**args)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end