google-apis-logging_v2 0.33.0 → 0.34.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: 99ba6fd954235989ea74de5b22d16434c6d9538cebb982c26074152139195766
|
|
4
|
+
data.tar.gz: ea10f19638e262078e398e8a6bad4b08d2646b3fa435bbd8500be37ba952a007
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7da61cfc89bcca1a23ae0f6f0300ea21a098969196a043b8faba7b7f597591e26c397c1ab8cde48a3521c0ddba2966f38bfdbe279f32d8744eb5b2671d4151ec
|
|
7
|
+
data.tar.gz: 7c252f0cc68f2e4795c79017cb4f5cbafd164522b6e380bd1187d4c4527ca765f22ed8d4817ba1dd369a8743763ba39c61ef47c3e8c74a6b40eebb7945a1017b
|
data/CHANGELOG.md
CHANGED
|
@@ -1495,6 +1495,14 @@ module Google
|
|
|
1495
1495
|
class LogMetric
|
|
1496
1496
|
include Google::Apis::Core::Hashable
|
|
1497
1497
|
|
|
1498
|
+
# Optional. The resource name of the Log Bucket that owns the Log Metric. Only
|
|
1499
|
+
# Log Buckets in projects are supported. The bucket has to be in the same
|
|
1500
|
+
# project as the metric.For example:projects/my-project/locations/global/buckets/
|
|
1501
|
+
# my-bucketIf empty, then the Log Metric is considered a non-Bucket Log Metric.
|
|
1502
|
+
# Corresponds to the JSON property `bucketName`
|
|
1503
|
+
# @return [String]
|
|
1504
|
+
attr_accessor :bucket_name
|
|
1505
|
+
|
|
1498
1506
|
# BucketOptions describes the bucket boundaries used to create a histogram for
|
|
1499
1507
|
# the distribution. The buckets can be in a linear sequence, an exponential
|
|
1500
1508
|
# sequence, or each bucket can be specified explicitly. BucketOptions does not
|
|
@@ -1544,11 +1552,11 @@ module Google
|
|
|
1544
1552
|
# Each label key specified in the LabelDescriptor must have an associated
|
|
1545
1553
|
# extractor expression in this map. The syntax of the extractor expression is
|
|
1546
1554
|
# the same as for the value_extractor field.The extracted value is converted to
|
|
1547
|
-
# the type defined in the label descriptor. If
|
|
1548
|
-
#
|
|
1549
|
-
#
|
|
1550
|
-
#
|
|
1551
|
-
#
|
|
1555
|
+
# the type defined in the label descriptor. If either the extraction or the type
|
|
1556
|
+
# conversion fails, the label will have a default value. The default value for a
|
|
1557
|
+
# string label is an empty string, for an integer label its 0, and for a boolean
|
|
1558
|
+
# label its false.Note that there are upper bounds on the maximum number of
|
|
1559
|
+
# labels and the number of active time series that are allowed in a project.
|
|
1552
1560
|
# Corresponds to the JSON property `labelExtractors`
|
|
1553
1561
|
# @return [Hash<String,String>]
|
|
1554
1562
|
attr_accessor :label_extractors
|
|
@@ -1608,6 +1616,7 @@ module Google
|
|
|
1608
1616
|
|
|
1609
1617
|
# Update properties of this object
|
|
1610
1618
|
def update!(**args)
|
|
1619
|
+
@bucket_name = args[:bucket_name] if args.key?(:bucket_name)
|
|
1611
1620
|
@bucket_options = args[:bucket_options] if args.key?(:bucket_options)
|
|
1612
1621
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1613
1622
|
@description = args[:description] if args.key?(:description)
|
|
@@ -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.34.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220805"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -681,6 +681,7 @@ module Google
|
|
|
681
681
|
class LogMetric
|
|
682
682
|
# @private
|
|
683
683
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
684
|
+
property :bucket_name, as: 'bucketName'
|
|
684
685
|
property :bucket_options, as: 'bucketOptions', class: Google::Apis::LoggingV2::BucketOptions, decorator: Google::Apis::LoggingV2::BucketOptions::Representation
|
|
685
686
|
|
|
686
687
|
property :create_time, as: 'createTime'
|
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.
|
|
4
|
+
version: 0.34.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-
|
|
11
|
+
date: 2022-08-15 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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-logging_v2/v0.34.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: []
|