Class: Google::Apis::CloudtraceV2::Links

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

Overview

A collection of links, which are references from this span to a span in the same or different trace.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Links

Returns a new instance of Links.



205
206
207
# File 'lib/google/apis/cloudtrace_v2/classes.rb', line 205

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

Instance Attribute Details

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

Returns:

  • (Fixnum)


198
199
200
# File 'lib/google/apis/cloudtrace_v2/classes.rb', line 198

def dropped_links_count
  @dropped_links_count
end

A collection of links. Corresponds to the JSON property link



203
204
205
# File 'lib/google/apis/cloudtrace_v2/classes.rb', line 203

def link
  @link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



210
211
212
213
# File 'lib/google/apis/cloudtrace_v2/classes.rb', line 210

def update!(**args)
  @dropped_links_count = args[:dropped_links_count] if args.key?(:dropped_links_count)
  @link = args[:link] if args.key?(:link)
end