google-apis-logging_v2 0.88.0 → 0.89.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/logging_v2/classes.rb +17 -17
- data/lib/google/apis/logging_v2/gem_version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b68b2d073323d3504f4952eb040435992f2d7a49d6a928c136f332d05d81513
|
|
4
|
+
data.tar.gz: 62ecb12ef17564e026ba4ab43eed2943e36c1b1c73adfd1b1e13e76dfe3e3849
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f47596fca37e60de9d7e142c5944514dcd09b57be2b26f0cb186ad845050835361add35a20602f0342a6a2acc20afb8891e3544d402d5a4f117df48008191b6c
|
|
7
|
+
data.tar.gz: 6599546b059a4b5a4c549505baa49b251d1d8cf1366b03c7612aea0761d4606aa509e4fad965772818227abf408c6d05b565c76f10f6a7e67ab2edf62e94eaca
|
data/CHANGELOG.md
CHANGED
|
@@ -2067,17 +2067,15 @@ module Google
|
|
|
2067
2067
|
# @return [Google::Apis::LoggingV2::LogEntrySourceLocation]
|
|
2068
2068
|
attr_accessor :source_location
|
|
2069
2069
|
|
|
2070
|
-
# Optional. The ID of the Cloud Trace (https://cloud.google.com/trace)
|
|
2071
|
-
# associated with the current operation in which the log is being written.
|
|
2072
|
-
#
|
|
2073
|
-
#
|
|
2074
|
-
#
|
|
2075
|
-
#
|
|
2076
|
-
#
|
|
2077
|
-
# machines, a span generally corresponds to a single logical operation being
|
|
2078
|
-
# performed in a single instance of a microservice on one specific machine.
|
|
2070
|
+
# Optional. The ID of the Cloud Trace (https://docs.cloud.google.com/trace/docs)
|
|
2071
|
+
# span associated with the current operation in which the log is being written.A
|
|
2072
|
+
# Span (https://docs.cloud.google.com/trace/docs/reference/v2/rest/v2/projects.
|
|
2073
|
+
# traces/batchWrite#Span) represents a single operation within a trace. Whereas
|
|
2074
|
+
# a trace may involve multiple different microservices running on multiple
|
|
2075
|
+
# different machines, a span generally corresponds to a single logical operation
|
|
2076
|
+
# being performed in a single instance of a microservice on one specific machine.
|
|
2079
2077
|
# Spans are the nodes within the tree that is a trace.Applications that are
|
|
2080
|
-
# instrumented for tracing (https://cloud.google.com/trace/docs/setup) will
|
|
2078
|
+
# instrumented for tracing (https://docs.cloud.google.com/trace/docs/setup) will
|
|
2081
2079
|
# generally assign a new, unique span ID on each incoming request. It is also
|
|
2082
2080
|
# common to create and record additional spans corresponding to internal
|
|
2083
2081
|
# processing elements as well as issuing requests to dependencies.The span ID is
|
|
@@ -2114,13 +2112,15 @@ module Google
|
|
|
2114
2112
|
# @return [String]
|
|
2115
2113
|
attr_accessor :timestamp
|
|
2116
2114
|
|
|
2117
|
-
# Optional. The
|
|
2118
|
-
#
|
|
2119
|
-
#
|
|
2120
|
-
#
|
|
2121
|
-
#
|
|
2122
|
-
#
|
|
2123
|
-
#
|
|
2115
|
+
# Optional. The trace ID being written to Cloud Trace (https://docs.cloud.google.
|
|
2116
|
+
# com/trace/docs) in association with this log entry. For example, if your trace
|
|
2117
|
+
# data is stored in the Cloud project "my-trace-project" and if the service that
|
|
2118
|
+
# is creating the log entry receives a trace header that includes the trace ID "
|
|
2119
|
+
# 12345", then the service should use "12345".The REST resource name of the
|
|
2120
|
+
# trace is also supported, but using this format is not recommended. An example
|
|
2121
|
+
# trace REST resource name is similar to "projects/my-trace-project/traces/12345"
|
|
2122
|
+
# .The trace field provides the link between logs and traces. By using this
|
|
2123
|
+
# field, you can navigate from a log entry to a trace.
|
|
2124
2124
|
# Corresponds to the JSON property `trace`
|
|
2125
2125
|
# @return [String]
|
|
2126
2126
|
attr_accessor :trace
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module LoggingV2
|
|
18
18
|
# Version of the google-apis-logging_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.89.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260123"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-logging_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.89.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-logging_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.89.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-logging_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|