Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollector

Inherits:
Object
  • Object
show all
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

Data collector configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1DataCollector

Returns a new instance of GoogleCloudApigeeV1DataCollector.



2863
2864
2865
# File 'lib/google/apis/apigee_v1/classes.rb', line 2863

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#created_atFixnum

Output only. The time at which the data collector was created in milliseconds since the epoch. Corresponds to the JSON property createdAt

Returns:

  • (Fixnum)


2840
2841
2842
# File 'lib/google/apis/apigee_v1/classes.rb', line 2840

def created_at
  @created_at
end

#descriptionString

A description of the data collector. Corresponds to the JSON property description

Returns:

  • (String)


2845
2846
2847
# File 'lib/google/apis/apigee_v1/classes.rb', line 2845

def description
  @description
end

#last_modified_atFixnum

Output only. The time at which the Data Collector was last updated in milliseconds since the epoch. Corresponds to the JSON property lastModifiedAt

Returns:

  • (Fixnum)


2851
2852
2853
# File 'lib/google/apis/apigee_v1/classes.rb', line 2851

def last_modified_at
  @last_modified_at
end

#nameString

ID of the data collector. Must begin with dc_. Corresponds to the JSON property name

Returns:

  • (String)


2856
2857
2858
# File 'lib/google/apis/apigee_v1/classes.rb', line 2856

def name
  @name
end

#typeString

Immutable. The type of data this data collector will collect. Corresponds to the JSON property type

Returns:

  • (String)


2861
2862
2863
# File 'lib/google/apis/apigee_v1/classes.rb', line 2861

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2868
2869
2870
2871
2872
2873
2874
# File 'lib/google/apis/apigee_v1/classes.rb', line 2868

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