google-apis-cloudtrace_v2 0.27.0 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34bd50fd3cb1cf8f2fb98a7485a4c0a49c510b10e52b0db663610afad75c2ff4
|
|
4
|
+
data.tar.gz: 4f2e4427b9aff120b01e20cdfca5d1d7a2886054c837e00b684c99cb978e458d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3df9920754c2d9b2163e3b57523badaa2a2c20dd00aed92c663468dafebcfab03792a843884ce153606f31eb949d88888ed528595fc18c37bf2dd7341ebced63
|
|
7
|
+
data.tar.gz: e94c6de94dcdf80ae853d68348f7a58f596e393b3c43c6a8854c976c04ecfccf30b13a9e0993ac7792677759e73982dad6622090f04880eeac69117c9f51fa8d
|
data/CHANGELOG.md
CHANGED
|
@@ -51,13 +51,13 @@ module Google
|
|
|
51
51
|
class AttributeValue
|
|
52
52
|
include Google::Apis::Core::Hashable
|
|
53
53
|
|
|
54
|
-
# A Boolean value represented by `true` or `false`.
|
|
54
|
+
# Optional. A Boolean value represented by `true` or `false`.
|
|
55
55
|
# Corresponds to the JSON property `boolValue`
|
|
56
56
|
# @return [Boolean]
|
|
57
57
|
attr_accessor :bool_value
|
|
58
58
|
alias_method :bool_value?, :bool_value
|
|
59
59
|
|
|
60
|
-
# A 64-bit signed integer.
|
|
60
|
+
# Optional. A 64-bit signed integer.
|
|
61
61
|
# Corresponds to the JSON property `intValue`
|
|
62
62
|
# @return [Fixnum]
|
|
63
63
|
attr_accessor :int_value
|
|
@@ -83,18 +83,18 @@ module Google
|
|
|
83
83
|
class Attributes
|
|
84
84
|
include Google::Apis::Core::Hashable
|
|
85
85
|
|
|
86
|
-
# A set of attributes. Each attribute's key can be up to 128 bytes
|
|
87
|
-
# value can be a string up to 256 bytes, a signed 64-bit integer, or
|
|
88
|
-
# values `true` or `false`. For example: "/instance_id": ` "
|
|
89
|
-
# value": "my-instance" ` ` "/http/request_bytes": ` "
|
|
90
|
-
# com/myattribute": ` "bool_value": false `
|
|
86
|
+
# Optional. A set of attributes. Each attribute's key can be up to 128 bytes
|
|
87
|
+
# long. The value can be a string up to 256 bytes, a signed 64-bit integer, or
|
|
88
|
+
# the boolean values `true` or `false`. For example: "/instance_id": ` "
|
|
89
|
+
# string_value": ` "value": "my-instance" ` ` "/http/request_bytes": ` "
|
|
90
|
+
# int_value": 300 ` "example.com/myattribute": ` "bool_value": false `
|
|
91
91
|
# Corresponds to the JSON property `attributeMap`
|
|
92
92
|
# @return [Hash<String,Google::Apis::CloudtraceV2::AttributeValue>]
|
|
93
93
|
attr_accessor :attribute_map
|
|
94
94
|
|
|
95
|
-
# The number of attributes that were discarded. Attributes can be
|
|
96
|
-
# because their keys are too long or because there are too many
|
|
97
|
-
# this value is 0 then all attributes are valid.
|
|
95
|
+
# Optional. The number of attributes that were discarded. Attributes can be
|
|
96
|
+
# discarded because their keys are too long or because there are too many
|
|
97
|
+
# attributes. If this value is 0 then all attributes are valid.
|
|
98
98
|
# Corresponds to the JSON property `droppedAttributesCount`
|
|
99
99
|
# @return [Fixnum]
|
|
100
100
|
attr_accessor :dropped_attributes_count
|
|
@@ -158,17 +158,17 @@ module Google
|
|
|
158
158
|
# @return [Google::Apis::CloudtraceV2::Attributes]
|
|
159
159
|
attr_accessor :attributes
|
|
160
160
|
|
|
161
|
-
# The `[SPAN_ID]` for a span within a trace.
|
|
161
|
+
# Optional. The `[SPAN_ID]` for a span within a trace.
|
|
162
162
|
# Corresponds to the JSON property `spanId`
|
|
163
163
|
# @return [String]
|
|
164
164
|
attr_accessor :span_id
|
|
165
165
|
|
|
166
|
-
# The `[TRACE_ID]` for a trace within a project.
|
|
166
|
+
# Optional. The `[TRACE_ID]` for a trace within a project.
|
|
167
167
|
# Corresponds to the JSON property `traceId`
|
|
168
168
|
# @return [String]
|
|
169
169
|
attr_accessor :trace_id
|
|
170
170
|
|
|
171
|
-
# The relationship of the current span relative to the linked span.
|
|
171
|
+
# Optional. The relationship of the current span relative to the linked span.
|
|
172
172
|
# Corresponds to the JSON property `type`
|
|
173
173
|
# @return [String]
|
|
174
174
|
attr_accessor :type
|
|
@@ -191,13 +191,13 @@ module Google
|
|
|
191
191
|
class Links
|
|
192
192
|
include Google::Apis::Core::Hashable
|
|
193
193
|
|
|
194
|
-
# The number of dropped links after the maximum size was enforced. If
|
|
195
|
-
# is 0, then no links were dropped.
|
|
194
|
+
# Optional. The number of dropped links after the maximum size was enforced. If
|
|
195
|
+
# this value is 0, then no links were dropped.
|
|
196
196
|
# Corresponds to the JSON property `droppedLinksCount`
|
|
197
197
|
# @return [Fixnum]
|
|
198
198
|
attr_accessor :dropped_links_count
|
|
199
199
|
|
|
200
|
-
# A collection of links.
|
|
200
|
+
# Optional. A collection of links.
|
|
201
201
|
# Corresponds to the JSON property `link`
|
|
202
202
|
# @return [Array<Google::Apis::CloudtraceV2::Link>]
|
|
203
203
|
attr_accessor :link
|
|
@@ -217,24 +217,25 @@ module Google
|
|
|
217
217
|
class MessageEvent
|
|
218
218
|
include Google::Apis::Core::Hashable
|
|
219
219
|
|
|
220
|
-
# The number of compressed bytes sent or received. If missing, the
|
|
221
|
-
# size is assumed to be the same size as the uncompressed size.
|
|
220
|
+
# Optional. The number of compressed bytes sent or received. If missing, the
|
|
221
|
+
# compressed size is assumed to be the same size as the uncompressed size.
|
|
222
222
|
# Corresponds to the JSON property `compressedSizeBytes`
|
|
223
223
|
# @return [Fixnum]
|
|
224
224
|
attr_accessor :compressed_size_bytes
|
|
225
225
|
|
|
226
|
-
# An identifier for the MessageEvent's message that can be used to
|
|
227
|
-
# and `RECEIVED` MessageEvents.
|
|
226
|
+
# Optional. An identifier for the MessageEvent's message that can be used to
|
|
227
|
+
# match `SENT` and `RECEIVED` MessageEvents.
|
|
228
228
|
# Corresponds to the JSON property `id`
|
|
229
229
|
# @return [Fixnum]
|
|
230
230
|
attr_accessor :id
|
|
231
231
|
|
|
232
|
-
# Type of MessageEvent. Indicates whether the message was sent or
|
|
232
|
+
# Optional. Type of MessageEvent. Indicates whether the message was sent or
|
|
233
|
+
# received.
|
|
233
234
|
# Corresponds to the JSON property `type`
|
|
234
235
|
# @return [String]
|
|
235
236
|
attr_accessor :type
|
|
236
237
|
|
|
237
|
-
# The number of uncompressed bytes sent or received.
|
|
238
|
+
# Optional. The number of uncompressed bytes sent or received.
|
|
238
239
|
# Corresponds to the JSON property `uncompressedSizeBytes`
|
|
239
240
|
# @return [Fixnum]
|
|
240
241
|
attr_accessor :uncompressed_size_bytes
|
|
@@ -314,8 +315,8 @@ module Google
|
|
|
314
315
|
# @return [Google::Apis::CloudtraceV2::Links]
|
|
315
316
|
attr_accessor :links
|
|
316
317
|
|
|
317
|
-
#
|
|
318
|
-
# PROJECT_ID]/traces/[TRACE_ID]/spans/[SPAN_ID]` `[TRACE_ID]` is a unique
|
|
318
|
+
# Identifier. The resource name of the span in the following format: * `projects/
|
|
319
|
+
# [PROJECT_ID]/traces/[TRACE_ID]/spans/[SPAN_ID]` `[TRACE_ID]` is a unique
|
|
319
320
|
# identifier for a trace within a project; it is a 32-character hexadecimal
|
|
320
321
|
# encoding of a 16-byte array. It should not be zero. `[SPAN_ID]` is a unique
|
|
321
322
|
# identifier for a span within a trace; it is a 16-character hexadecimal
|
|
@@ -324,8 +325,8 @@ module Google
|
|
|
324
325
|
# @return [String]
|
|
325
326
|
attr_accessor :name
|
|
326
327
|
|
|
327
|
-
# The `[SPAN_ID]` of this span's parent span. If this is a root span,
|
|
328
|
-
# field must be empty.
|
|
328
|
+
# Optional. The `[SPAN_ID]` of this span's parent span. If this is a root span,
|
|
329
|
+
# then this field must be empty.
|
|
329
330
|
# Corresponds to the JSON property `parentSpanId`
|
|
330
331
|
# @return [String]
|
|
331
332
|
attr_accessor :parent_span_id
|
|
@@ -406,8 +407,8 @@ module Google
|
|
|
406
407
|
class StackFrame
|
|
407
408
|
include Google::Apis::Core::Hashable
|
|
408
409
|
|
|
409
|
-
# The column number where the function call appears, if available.
|
|
410
|
-
# important in JavaScript because of its anonymous functions.
|
|
410
|
+
# Optional. The column number where the function call appears, if available.
|
|
411
|
+
# This is important in JavaScript because of its anonymous functions.
|
|
411
412
|
# Corresponds to the JSON property `columnNumber`
|
|
412
413
|
# @return [Fixnum]
|
|
413
414
|
attr_accessor :column_number
|
|
@@ -422,7 +423,7 @@ module Google
|
|
|
422
423
|
# @return [Google::Apis::CloudtraceV2::TruncatableString]
|
|
423
424
|
attr_accessor :function_name
|
|
424
425
|
|
|
425
|
-
# The line number in `file_name` where the function call appears.
|
|
426
|
+
# Optional. The line number in `file_name` where the function call appears.
|
|
426
427
|
# Corresponds to the JSON property `lineNumber`
|
|
427
428
|
# @return [Fixnum]
|
|
428
429
|
attr_accessor :line_number
|
|
@@ -462,13 +463,13 @@ module Google
|
|
|
462
463
|
class StackFrames
|
|
463
464
|
include Google::Apis::Core::Hashable
|
|
464
465
|
|
|
465
|
-
# The number of stack frames that were dropped because there were too
|
|
466
|
-
# frames. If this value is 0, then no stack frames were dropped.
|
|
466
|
+
# Optional. The number of stack frames that were dropped because there were too
|
|
467
|
+
# many stack frames. If this value is 0, then no stack frames were dropped.
|
|
467
468
|
# Corresponds to the JSON property `droppedFramesCount`
|
|
468
469
|
# @return [Fixnum]
|
|
469
470
|
attr_accessor :dropped_frames_count
|
|
470
471
|
|
|
471
|
-
# Stack frames in this call stack.
|
|
472
|
+
# Optional. Stack frames in this call stack.
|
|
472
473
|
# Corresponds to the JSON property `frame`
|
|
473
474
|
# @return [Array<Google::Apis::CloudtraceV2::StackFrame>]
|
|
474
475
|
attr_accessor :frame
|
|
@@ -493,11 +494,12 @@ module Google
|
|
|
493
494
|
# @return [Google::Apis::CloudtraceV2::StackFrames]
|
|
494
495
|
attr_accessor :stack_frames
|
|
495
496
|
|
|
496
|
-
# The hash ID is used to conserve network bandwidth for duplicate
|
|
497
|
-
# within a single trace. Often multiple spans will have identical
|
|
498
|
-
# The first occurrence of a stack trace should contain both the `
|
|
499
|
-
# content and a value in `stackTraceHashId`. Subsequent spans within
|
|
500
|
-
# request can refer to that stack trace by only setting `
|
|
497
|
+
# Optional. The hash ID is used to conserve network bandwidth for duplicate
|
|
498
|
+
# stack traces within a single trace. Often multiple spans will have identical
|
|
499
|
+
# stack traces. The first occurrence of a stack trace should contain both the `
|
|
500
|
+
# stackFrame` content and a value in `stackTraceHashId`. Subsequent spans within
|
|
501
|
+
# the same request can refer to that stack trace by only setting `
|
|
502
|
+
# stackTraceHashId`.
|
|
501
503
|
# Corresponds to the JSON property `stackTraceHashId`
|
|
502
504
|
# @return [Fixnum]
|
|
503
505
|
attr_accessor :stack_trace_hash_id
|
|
@@ -566,7 +568,7 @@ module Google
|
|
|
566
568
|
# @return [Google::Apis::CloudtraceV2::MessageEvent]
|
|
567
569
|
attr_accessor :message_event
|
|
568
570
|
|
|
569
|
-
# The timestamp indicating the time the event occurred.
|
|
571
|
+
# Optional. The timestamp indicating the time the event occurred.
|
|
570
572
|
# Corresponds to the JSON property `time`
|
|
571
573
|
# @return [String]
|
|
572
574
|
attr_accessor :time
|
|
@@ -589,19 +591,19 @@ module Google
|
|
|
589
591
|
class TimeEvents
|
|
590
592
|
include Google::Apis::Core::Hashable
|
|
591
593
|
|
|
592
|
-
# The number of dropped annotations in all the included time events.
|
|
593
|
-
# value is 0, then no annotations were dropped.
|
|
594
|
+
# Optional. The number of dropped annotations in all the included time events.
|
|
595
|
+
# If the value is 0, then no annotations were dropped.
|
|
594
596
|
# Corresponds to the JSON property `droppedAnnotationsCount`
|
|
595
597
|
# @return [Fixnum]
|
|
596
598
|
attr_accessor :dropped_annotations_count
|
|
597
599
|
|
|
598
|
-
# The number of dropped message events in all the included time events.
|
|
599
|
-
# value is 0, then no message events were dropped.
|
|
600
|
+
# Optional. The number of dropped message events in all the included time events.
|
|
601
|
+
# If the value is 0, then no message events were dropped.
|
|
600
602
|
# Corresponds to the JSON property `droppedMessageEventsCount`
|
|
601
603
|
# @return [Fixnum]
|
|
602
604
|
attr_accessor :dropped_message_events_count
|
|
603
605
|
|
|
604
|
-
# A collection of `TimeEvent`s.
|
|
606
|
+
# Optional. A collection of `TimeEvent`s.
|
|
605
607
|
# Corresponds to the JSON property `timeEvent`
|
|
606
608
|
# @return [Array<Google::Apis::CloudtraceV2::TimeEvent>]
|
|
607
609
|
attr_accessor :time_event
|
|
@@ -622,17 +624,17 @@ module Google
|
|
|
622
624
|
class TruncatableString
|
|
623
625
|
include Google::Apis::Core::Hashable
|
|
624
626
|
|
|
625
|
-
# The number of bytes removed from the original string. If this value
|
|
626
|
-
# the string was not shortened.
|
|
627
|
+
# Optional. The number of bytes removed from the original string. If this value
|
|
628
|
+
# is 0, then the string was not shortened.
|
|
627
629
|
# Corresponds to the JSON property `truncatedByteCount`
|
|
628
630
|
# @return [Fixnum]
|
|
629
631
|
attr_accessor :truncated_byte_count
|
|
630
632
|
|
|
631
|
-
# The shortened string. For example, if the original string is 500
|
|
632
|
-
# and the limit of the string is 128 bytes, then `value` contains the
|
|
633
|
-
# bytes of the 500-byte string. Truncation always happens on a UTF8
|
|
634
|
-
# boundary. If there are multi-byte characters in the string, then the
|
|
635
|
-
# the shortened string might be less than the size limit.
|
|
633
|
+
# Optional. The shortened string. For example, if the original string is 500
|
|
634
|
+
# bytes long and the limit of the string is 128 bytes, then `value` contains the
|
|
635
|
+
# first 128 bytes of the 500-byte string. Truncation always happens on a UTF8
|
|
636
|
+
# character boundary. If there are multi-byte characters in the string, then the
|
|
637
|
+
# length of the shortened string might be less than the size limit.
|
|
636
638
|
# Corresponds to the JSON property `value`
|
|
637
639
|
# @return [String]
|
|
638
640
|
attr_accessor :value
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudtraceV2
|
|
18
18
|
# Version of the google-apis-cloudtrace_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.28.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260724"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -94,8 +94,8 @@ module Google
|
|
|
94
94
|
# Creates a new span. If a span ID already exists, an additional copy of the
|
|
95
95
|
# span will be stored.
|
|
96
96
|
# @param [String] name
|
|
97
|
-
#
|
|
98
|
-
# PROJECT_ID]/traces/[TRACE_ID]/spans/[SPAN_ID]` `[TRACE_ID]` is a unique
|
|
97
|
+
# Identifier. The resource name of the span in the following format: * `projects/
|
|
98
|
+
# [PROJECT_ID]/traces/[TRACE_ID]/spans/[SPAN_ID]` `[TRACE_ID]` is a unique
|
|
99
99
|
# identifier for a trace within a project; it is a 32-character hexadecimal
|
|
100
100
|
# encoding of a 16-byte array. It should not be zero. `[SPAN_ID]` is a unique
|
|
101
101
|
# identifier for a span within a trace; it is a 16-character hexadecimal
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudtrace_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.28.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtrace_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtrace_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtrace_v2/v0.28.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtrace_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|