google-apis-cloudtrace_v1 0.26.0 → 0.27.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: f8ccf48f0930fec3a9fc28b288a7b95434c340f0d17969f3d977b4974711f66f
|
|
4
|
+
data.tar.gz: 15428ae41025fbf30ddbdec859c2e2043540cb5f9c43acdcde538e43fa5e6096
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6eaa693552251f3d2987d8244b9ff5b217e7d0dbb9d2513e98133ee1a7707af0cd4f8f95e730ad5bf064063b322a5925eb66967f60a0ee08f11d1d6f26cdf61
|
|
7
|
+
data.tar.gz: 97bfa18a853bc4baffe5a9ea31bc9a468ac82525040088f8ce597d6deeb3eb8ff3e6ee6fbe283361dbe516eaaa502ae90eefac38216b992a8e37fc7acd0841bc
|
data/CHANGELOG.md
CHANGED
|
@@ -71,7 +71,7 @@ module Google
|
|
|
71
71
|
class Trace
|
|
72
72
|
include Google::Apis::Core::Hashable
|
|
73
73
|
|
|
74
|
-
# Project ID of the Cloud project where the trace data is stored.
|
|
74
|
+
# Required. Project ID of the Cloud project where the trace data is stored.
|
|
75
75
|
# Corresponds to the JSON property `projectId`
|
|
76
76
|
# @return [String]
|
|
77
77
|
attr_accessor :project_id
|
|
@@ -81,8 +81,8 @@ module Google
|
|
|
81
81
|
# @return [Array<Google::Apis::CloudtraceV1::TraceSpan>]
|
|
82
82
|
attr_accessor :spans
|
|
83
83
|
|
|
84
|
-
# Globally unique identifier for the trace. This identifier is a 128-
|
|
85
|
-
# value formatted as a 32-byte hex string. For example, `
|
|
84
|
+
# Required. Globally unique identifier for the trace. This identifier is a 128-
|
|
85
|
+
# bit numeric value formatted as a 32-byte hex string. For example, `
|
|
86
86
|
# 382d4f4c6b7bb2f4a972559d9085001d`. The numeric value should not be zero.
|
|
87
87
|
# Corresponds to the JSON property `traceId`
|
|
88
88
|
# @return [String]
|
|
@@ -108,31 +108,32 @@ module Google
|
|
|
108
108
|
class TraceSpan
|
|
109
109
|
include Google::Apis::Core::Hashable
|
|
110
110
|
|
|
111
|
-
# End time of the span in seconds and nanoseconds from the UNIX epoch.
|
|
111
|
+
# Required. End time of the span in seconds and nanoseconds from the UNIX epoch.
|
|
112
112
|
# Corresponds to the JSON property `endTime`
|
|
113
113
|
# @return [String]
|
|
114
114
|
attr_accessor :end_time
|
|
115
115
|
|
|
116
|
-
# Distinguishes between spans generated in a particular context. For
|
|
117
|
-
# two spans with the same name may be distinguished using `RPC_CLIENT`
|
|
118
|
-
# RPC_SERVER` to identify queueing latency associated with the span.
|
|
116
|
+
# Optional. Distinguishes between spans generated in a particular context. For
|
|
117
|
+
# example, two spans with the same name may be distinguished using `RPC_CLIENT`
|
|
118
|
+
# and `RPC_SERVER` to identify queueing latency associated with the span.
|
|
119
119
|
# Corresponds to the JSON property `kind`
|
|
120
120
|
# @return [String]
|
|
121
121
|
attr_accessor :kind
|
|
122
122
|
|
|
123
|
-
# Collection of labels associated with the span. Label keys must be
|
|
124
|
-
# 128 bytes. Label values must be less than 16 KiB. Some keys might
|
|
125
|
-
# predefined meaning, and you can also create your own. For more
|
|
126
|
-
# see [Cloud Trace labels](https://cloud.google.com/trace/docs/
|
|
123
|
+
# Optional. Collection of labels associated with the span. Label keys must be
|
|
124
|
+
# less than 128 bytes. Label values must be less than 16 KiB. Some keys might
|
|
125
|
+
# have predefined meaning, and you can also create your own. For more
|
|
126
|
+
# information, see [Cloud Trace labels](https://cloud.google.com/trace/docs/
|
|
127
|
+
# trace-labels).
|
|
127
128
|
# Corresponds to the JSON property `labels`
|
|
128
129
|
# @return [Hash<String,String>]
|
|
129
130
|
attr_accessor :labels
|
|
130
131
|
|
|
131
|
-
# Name of the span. Must be less than 128 bytes. The span name is
|
|
132
|
-
# displayed in the Trace tool in the Google Cloud Platform Console.
|
|
133
|
-
# be a method name or some other per-call site name. For the same
|
|
134
|
-
# the same call point, a best practice is to use a consistent
|
|
135
|
-
# it easier to correlate cross-trace spans.
|
|
132
|
+
# Required. Name of the span. Must be less than 128 bytes. The span name is
|
|
133
|
+
# sanitized and displayed in the Trace tool in the Google Cloud Platform Console.
|
|
134
|
+
# The name may be a method name or some other per-call site name. For the same
|
|
135
|
+
# executable and the same call point, a best practice is to use a consistent
|
|
136
|
+
# name, which makes it easier to correlate cross-trace spans.
|
|
136
137
|
# Corresponds to the JSON property `name`
|
|
137
138
|
# @return [String]
|
|
138
139
|
attr_accessor :name
|
|
@@ -142,13 +143,14 @@ module Google
|
|
|
142
143
|
# @return [Fixnum]
|
|
143
144
|
attr_accessor :parent_span_id
|
|
144
145
|
|
|
145
|
-
# Identifier for the span. Must be a 64-bit integer other than 0 and
|
|
146
|
-
# within a trace. For example, `2205310701640571284`.
|
|
146
|
+
# Required. Identifier for the span. Must be a 64-bit integer other than 0 and
|
|
147
|
+
# unique within a trace. For example, `2205310701640571284`.
|
|
147
148
|
# Corresponds to the JSON property `spanId`
|
|
148
149
|
# @return [Fixnum]
|
|
149
150
|
attr_accessor :span_id
|
|
150
151
|
|
|
151
|
-
# Start time of the span in seconds and nanoseconds from the UNIX
|
|
152
|
+
# Required. Start time of the span in seconds and nanoseconds from the UNIX
|
|
153
|
+
# epoch.
|
|
152
154
|
# Corresponds to the JSON property `startTime`
|
|
153
155
|
# @return [String]
|
|
154
156
|
attr_accessor :start_time
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudtraceV1
|
|
18
18
|
# Version of the google-apis-cloudtrace_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.27.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
|
|
@@ -126,8 +126,8 @@ module Google
|
|
|
126
126
|
# @param [String] project_id
|
|
127
127
|
# Required. ID of the Cloud project where the trace data is stored.
|
|
128
128
|
# @param [String] end_time
|
|
129
|
-
# End of the time interval (inclusive) during which the trace data was
|
|
130
|
-
# from the application.
|
|
129
|
+
# Required. End of the time interval (inclusive) during which the trace data was
|
|
130
|
+
# collected from the application.
|
|
131
131
|
# @param [String] filter
|
|
132
132
|
# Optional. A filter against properties of the trace. See [filter syntax
|
|
133
133
|
# documentation](https://cloud.google.com/trace/docs/trace-filters) for details.
|
|
@@ -143,11 +143,11 @@ module Google
|
|
|
143
143
|
# implementation selects a reasonable value. The implementation may return fewer
|
|
144
144
|
# traces than the requested page size.
|
|
145
145
|
# @param [String] page_token
|
|
146
|
-
# Token identifying the page of results to return. If provided, use
|
|
147
|
-
# the `next_page_token` field from a previous request.
|
|
146
|
+
# Optional. Token identifying the page of results to return. If provided, use
|
|
147
|
+
# the value of the `next_page_token` field from a previous request.
|
|
148
148
|
# @param [String] start_time
|
|
149
|
-
# Start of the time interval (inclusive) during which the trace data
|
|
150
|
-
# collected from the application.
|
|
149
|
+
# Required. Start of the time interval (inclusive) during which the trace data
|
|
150
|
+
# was collected from the application.
|
|
151
151
|
# @param [String] view
|
|
152
152
|
# Optional. Type of data returned for traces in the list. Default is `MINIMAL`.
|
|
153
153
|
# @param [String] fields
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudtrace_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.27.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtrace_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtrace_v1/v0.27.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtrace_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|