Class: Google::Apis::MonitoringV3::ValueDescriptor

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb

Overview

A descriptor for the value columns in a data point.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ValueDescriptor

Returns a new instance of ValueDescriptor.



5461
5462
5463
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5461

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

Instance Attribute Details

#keyString

The value key. Corresponds to the JSON property key

Returns:

  • (String)


5442
5443
5444
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5442

def key
  @key
end

#metric_kindString

The value stream kind. Corresponds to the JSON property metricKind

Returns:

  • (String)


5447
5448
5449
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5447

def metric_kind
  @metric_kind
end

#unitString

The unit in which time_series point values are reported. unit follows the UCUM format for units as seen in https://unitsofmeasure.org/ucum.html. unit is only valid if value_type is INTEGER, DOUBLE, DISTRIBUTION. Corresponds to the JSON property unit

Returns:

  • (String)


5454
5455
5456
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5454

def unit
  @unit
end

#value_typeString

The value type. Corresponds to the JSON property valueType

Returns:

  • (String)


5459
5460
5461
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5459

def value_type
  @value_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5466
5467
5468
5469
5470
5471
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5466

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @metric_kind = args[:metric_kind] if args.key?(:metric_kind)
  @unit = args[:unit] if args.key?(:unit)
  @value_type = args[:value_type] if args.key?(:value_type)
end