Class: Google::Apis::TracingV1::AttributeValue

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

Overview

The allowed types for the value side of an attribute key:value pair.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AttributeValue

Returns a new instance of AttributeValue



366
367
368
# File 'generated/google/apis/tracing_v1/classes.rb', line 366

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

Instance Attribute Details

#bool_valueBoolean Also known as: bool_value?

A boolean value. Corresponds to the JSON property boolValue

Returns:

  • (Boolean)


358
359
360
# File 'generated/google/apis/tracing_v1/classes.rb', line 358

def bool_value
  @bool_value
end

#int_valueString

An integer value. Corresponds to the JSON property intValue

Returns:

  • (String)


364
365
366
# File 'generated/google/apis/tracing_v1/classes.rb', line 364

def int_value
  @int_value
end

#string_valueString

A string value. Corresponds to the JSON property stringValue

Returns:

  • (String)


353
354
355
# File 'generated/google/apis/tracing_v1/classes.rb', line 353

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



371
372
373
374
375
# File 'generated/google/apis/tracing_v1/classes.rb', line 371

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