Class: Google::Apis::MonitoringV3::LabelValue

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 label value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LabelValue

Returns a new instance of LabelValue.



2255
2256
2257
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2255

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

Instance Attribute Details

#bool_valueBoolean Also known as: bool_value?

A bool label value. Corresponds to the JSON property boolValue

Returns:

  • (Boolean)


2242
2243
2244
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2242

def bool_value
  @bool_value
end

#int64_valueFixnum

An int64 label value. Corresponds to the JSON property int64Value

Returns:

  • (Fixnum)


2248
2249
2250
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2248

def int64_value
  @int64_value
end

#string_valueString

A string label value. Corresponds to the JSON property stringValue

Returns:

  • (String)


2253
2254
2255
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2253

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2260
2261
2262
2263
2264
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2260

def update!(**args)
  @bool_value = args[:bool_value] if args.key?(:bool_value)
  @int64_value = args[:int64_value] if args.key?(:int64_value)
  @string_value = args[:string_value] if args.key?(:string_value)
end