google-apis-logging_v2 0.32.0 → 0.33.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df222dd979dcf4c04097823f8df3ee72deca2f0ed1fe191c1ec6edd34a853e43
4
- data.tar.gz: aad0b90183b11cc629ad656abe61718e43a5dc12282b5ea9b709585b021e80ba
3
+ metadata.gz: 80a70fa0d2bc006eb5e352592381040cde168755e80fea1cf8728442f861f931
4
+ data.tar.gz: 50a4597b43eca767a91162ee5acdc663abfc485981c586e0cedbb9adbeacc26c
5
5
  SHA512:
6
- metadata.gz: ae27b8e9f2fd1727203230d79955ec021ae87cc561935ebcbb28b84ecb626d23188102e989fac5b595ac4570df0673b83254ec3ece3b16d58abb355f2759d889
7
- data.tar.gz: 627883ca6bcf1fae294de2508f7351690c1e9e7ae3c43c2879f6803ac1cfaf7aaa2f48db90d86bdbdbb3da819eea254ecf2138bb148d2785fb3e65e049f17bff
6
+ metadata.gz: e3be58532b0f72a617b9f3b8da986dd5b302dd119ff7f9846059ec9f89b05db05edc47ce9b4d11c04eb9531e5498f6b1891c4cea6f483dcaa41bc19397409d71
7
+ data.tar.gz: e77f93b206006562612722e4509a4450c24b082203be30223cee632f40cc93f66c053da38092b147757ee49921373aabbfb35aeec7e0a187cf9bd091e8d9d172
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-logging_v2
2
2
 
3
+ ### v0.33.0 (2022-07-23)
4
+
5
+ * Regenerated from discovery document revision 20220714
6
+ * Regenerated using generator version 0.9.0
7
+
3
8
  ### v0.32.0 (2022-07-03)
4
9
 
5
10
  * Regenerated from discovery document revision 20220624
@@ -1207,9 +1207,24 @@ module Google
1207
1207
  # @return [Google::Apis::LoggingV2::LogEntrySourceLocation]
1208
1208
  attr_accessor :source_location
1209
1209
 
1210
- # Optional. The span ID within the trace associated with the log entry.For Trace
1211
- # spans, this is the same format that the Trace API v2 uses: a 16-character
1212
- # hexadecimal encoding of an 8-byte array, such as 000000000000004a.
1210
+ # Optional. The ID of the Cloud Trace (https://cloud.google.com/trace) span
1211
+ # associated with the current operation in which the log is being written. For
1212
+ # example, if a span has the REST resource name of "projects/some-project/traces/
1213
+ # some-trace/spans/some-span-id", then the span_id field is "some-span-id".A
1214
+ # Span (https://cloud.google.com/trace/docs/reference/v2/rest/v2/projects.traces/
1215
+ # batchWrite#Span) represents a single operation within a trace. Whereas a trace
1216
+ # may involve multiple different microservices running on multiple different
1217
+ # machines, a span generally corresponds to a single logical operation being
1218
+ # performed in a single instance of a microservice on one specific machine.
1219
+ # Spans are the nodes within the tree that is a trace.Applications that are
1220
+ # instrumented for tracing (https://cloud.google.com/trace/docs/setup) will
1221
+ # generally assign a new, unique span ID on each incoming request. It is also
1222
+ # common to create and record additional spans corresponding to internal
1223
+ # processing elements as well as issuing requests to dependencies.The span ID is
1224
+ # expected to be a 16-character, hexadecimal encoding of an 8-byte array and
1225
+ # should not be zero. It should be unique within the trace and should, ideally,
1226
+ # be generated in a manner that is uniformly random.Example values:
1227
+ # 000000000000004a 7a2190356c3fc94b 0000f00300090021 d39223e101960076
1213
1228
  # Corresponds to the JSON property `spanId`
1214
1229
  # @return [String]
1215
1230
  attr_accessor :span_id
@@ -1239,10 +1254,13 @@ module Google
1239
1254
  # @return [String]
1240
1255
  attr_accessor :timestamp
1241
1256
 
1242
- # Optional. Resource name of the trace associated with the log entry, if any. If
1243
- # it contains a relative resource name, the name is assumed to be relative to //
1244
- # tracing.googleapis.com. Example: projects/my-projectid/traces/
1245
- # 06796866738c859f2f19b7cfb3214824
1257
+ # Optional. The REST resource name of the trace being written to Cloud Trace (
1258
+ # https://cloud.google.com/trace) in association with this log entry. For
1259
+ # example, if your trace data is stored in the Cloud project "my-trace-project"
1260
+ # and if the service that is creating the log entry receives a trace header that
1261
+ # includes the trace ID "12345", then the service should use "projects/my-
1262
+ # tracing-project/traces/12345".The trace field provides the link between logs
1263
+ # and traces. By using this field, you can navigate from a log entry to a trace.
1246
1264
  # Corresponds to the JSON property `trace`
1247
1265
  # @return [String]
1248
1266
  attr_accessor :trace
@@ -1700,16 +1718,16 @@ module Google
1700
1718
 
1701
1719
  # Output only. An IAM identity—a service account or group—under which Cloud
1702
1720
  # Logging writes the exported log entries to the sink's destination. This field
1703
- # is set by sinks.create and sinks.update based on the value of
1704
- # unique_writer_identity in those methods.Until you grant this identity write-
1705
- # access to the destination, log entry exports from this sink will fail. For
1706
- # more information, see Granting Access for a Resource (https://cloud.google.com/
1707
- # iam/docs/granting-roles-to-service-accounts#
1708
- # granting_access_to_a_service_account_for_a_resource). Consult the destination
1709
- # service's documentation to determine the appropriate IAM roles to assign to
1710
- # the identity.Sinks that have a destination that is a log bucket in the same
1711
- # project as the sink do not have a writer_identity and no additional
1712
- # permissions are required.
1721
+ # is either set by specifying custom_writer_identity or set automatically by
1722
+ # sinks.create and sinks.update based on the value of unique_writer_identity in
1723
+ # those methods.Until you grant this identity write-access to the destination,
1724
+ # log entry exports from this sink will fail. For more information, see Granting
1725
+ # Access for a Resource (https://cloud.google.com/iam/docs/granting-roles-to-
1726
+ # service-accounts#granting_access_to_a_service_account_for_a_resource). Consult
1727
+ # the destination service's documentation to determine the appropriate IAM roles
1728
+ # to assign to the identity.Sinks that have a destination that is a log bucket
1729
+ # in the same project as the sink cannot have a writer_identity and no
1730
+ # additional permissions are required.
1713
1731
  # Corresponds to the JSON property `writerIdentity`
1714
1732
  # @return [String]
1715
1733
  attr_accessor :writer_identity
@@ -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.32.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220624"
25
+ REVISION = "20220714"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-logging_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.33.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-04 00:00:00.000000000 Z
11
+ date: 2022-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-logging_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.33.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-logging_v2
63
63
  post_install_message:
64
64
  rdoc_options: []