class Google::Apis::CloudtraceV2::Links
A collection of links, which are references from this span to a span in the same or different trace.
Attributes
dropped_links_count[RW]
The number of dropped links after the maximum size was enforced. If this value is 0, then no links were dropped. Corresponds to the JSON property `droppedLinksCount` @return [Fixnum]
link[RW]
A collection of links. Corresponds to the JSON property `link` @return [Array<Google::Apis::CloudtraceV2::Link>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudtrace_v2/classes.rb, line 206 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudtrace_v2/classes.rb, line 211 def update!(**args) @dropped_links_count = args[:dropped_links_count] if args.key?(:dropped_links_count) @link = args[:link] if args.key?(:link) end