class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollector

Data collector configuration.

Attributes

created_at[RW]

Output only. The time at which the data collector was created in milliseconds since the epoch. Corresponds to the JSON property `createdAt` @return [Fixnum]

description[RW]

A description of the data collector. Corresponds to the JSON property `description` @return [String]

last_modified_at[RW]

Output only. The time at which the Data Collector was last updated in milliseconds since the epoch. Corresponds to the JSON property `lastModifiedAt` @return [Fixnum]

name[RW]

ID of the data collector. Must begin with `dc_`. Corresponds to the JSON property `name` @return [String]

type[RW]

Immutable. The type of data this data collector will collect. 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 1779
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 1784
def update!(**args)
  @created_at = args[:created_at] if args.key?(:created_at)
  @description = args[:description] if args.key?(:description)
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end