Class: Google::Apis::CloudtraceV2::TimeEvent

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

Overview

A time-stamped annotation or message event in the Span.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TimeEvent

Returns a new instance of TimeEvent



644
645
646
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 644

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

Instance Attribute Details

#annotationGoogle::Apis::CloudtraceV2::Annotation

Text annotation with a set of attributes. Corresponds to the JSON property annotation



632
633
634
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 632

def annotation
  @annotation
end

#message_eventGoogle::Apis::CloudtraceV2::MessageEvent

An event describing a message sent/received between Spans. Corresponds to the JSON property messageEvent



637
638
639
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 637

def message_event
  @message_event
end

#timeString

The timestamp indicating the time the event occurred. Corresponds to the JSON property time

Returns:

  • (String)


642
643
644
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 642

def time
  @time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



649
650
651
652
653
# File 'generated/google/apis/cloudtrace_v2/classes.rb', line 649

def update!(**args)
  @annotation = args[:annotation] if args.key?(:annotation)
  @message_event = args[:message_event] if args.key?(:message_event)
  @time = args[:time] if args.key?(:time)
end