google-apis-logging_v2 0.80.0 → 0.81.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: 5154770f258d8982fd4b431186cdf1bc5f6fbf5d43a79a587987a41881b57143
|
4
|
+
data.tar.gz: 1c3819d830bcb92a6ec5b8f6419978efaccd364093d80f70bb082096a76a1268
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 767e654bc101c673ba6278697e29330ddc681c7fc4a83fd80d0c79dec5f050a2a57c2baa2e6b57a0f3588d3fe436618aba5190adc679ae31ce83c4fc379cb4b1
|
7
|
+
data.tar.gz: 3721b052c69e33ef39a5d12de8b8d484afab75d3c18734d41bf46f1edd3de4e6f6d021ee04915df9bec1d10265e0292c875619e9a5a2a31cff3cd895b1b82354
|
data/CHANGELOG.md
CHANGED
@@ -1928,6 +1928,11 @@ module Google
|
|
1928
1928
|
# @return [Google::Apis::LoggingV2::AppHub]
|
1929
1929
|
attr_accessor :apphub
|
1930
1930
|
|
1931
|
+
# Metadata associated with App Hub.
|
1932
|
+
# Corresponds to the JSON property `apphubDestination`
|
1933
|
+
# @return [Google::Apis::LoggingV2::AppHub]
|
1934
|
+
attr_accessor :apphub_destination
|
1935
|
+
|
1931
1936
|
# Output only. The Error Reporting (https://cloud.google.com/error-reporting)
|
1932
1937
|
# error groups associated with this LogEntry. Error Reporting sets the values
|
1933
1938
|
# for this field during error group creation.For more information, see View
|
@@ -2124,6 +2129,7 @@ module Google
|
|
2124
2129
|
# Update properties of this object
|
2125
2130
|
def update!(**args)
|
2126
2131
|
@apphub = args[:apphub] if args.key?(:apphub)
|
2132
|
+
@apphub_destination = args[:apphub_destination] if args.key?(:apphub_destination)
|
2127
2133
|
@error_groups = args[:error_groups] if args.key?(:error_groups)
|
2128
2134
|
@http_request = args[:http_request] if args.key?(:http_request)
|
2129
2135
|
@insert_id = args[:insert_id] if args.key?(:insert_id)
|
@@ -2289,7 +2295,7 @@ module Google
|
|
2289
2295
|
# @return [String]
|
2290
2296
|
attr_accessor :filter
|
2291
2297
|
|
2292
|
-
#
|
2298
|
+
# Optional. A client-assigned identifier, such as "load-balancer-exclusion".
|
2293
2299
|
# Identifiers are limited to 100 characters and can include only letters, digits,
|
2294
2300
|
# underscores, hyphens, and periods. First character has to be alphanumeric.
|
2295
2301
|
# Corresponds to the JSON property `name`
|
@@ -2600,8 +2606,8 @@ module Google
|
|
2600
2606
|
alias_method :disabled?, :disabled
|
2601
2607
|
|
2602
2608
|
# Optional. Log entries that match any of these exclusion filters will not be
|
2603
|
-
# exported.If a log entry is matched by both filter and one of
|
2604
|
-
#
|
2609
|
+
# exported.If a log entry is matched by both filter and one of exclusions it
|
2610
|
+
# will not be exported.
|
2605
2611
|
# Corresponds to the JSON property `exclusions`
|
2606
2612
|
# @return [Array<Google::Apis::LoggingV2::LogExclusion>]
|
2607
2613
|
attr_accessor :exclusions
|
@@ -2643,8 +2649,8 @@ module Google
|
|
2643
2649
|
attr_accessor :intercept_children
|
2644
2650
|
alias_method :intercept_children?, :intercept_children
|
2645
2651
|
|
2646
|
-
#
|
2647
|
-
#
|
2652
|
+
# Optional. The client-assigned sink identifier, unique within the project.For
|
2653
|
+
# example: "my-syslog-errors-to-pubsub".Sink identifiers are limited to 100
|
2648
2654
|
# characters and can include only the following characters: upper and lower-case
|
2649
2655
|
# alphanumeric characters, underscores, hyphens, periods.First character has to
|
2650
2656
|
# be alphanumeric.
|
@@ -3352,7 +3358,7 @@ module Google
|
|
3352
3358
|
# @return [Google::Apis::LoggingV2::LoggingQuery]
|
3353
3359
|
attr_accessor :logging_query
|
3354
3360
|
|
3355
|
-
#
|
3361
|
+
# Optional. Resource name of the recent query.In the format: "projects/[
|
3356
3362
|
# PROJECT_ID]/locations/[LOCATION_ID]/recentQueries/[QUERY_ID]" For a list of
|
3357
3363
|
# supported locations, see Supported Regions (https://cloud.google.com/logging/
|
3358
3364
|
# docs/region-support)The QUERY_ID is a system generated alphanumeric ID.
|
@@ -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.81.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 = "20250530"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1014,6 +1014,8 @@ module Google
|
|
1014
1014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1015
1015
|
property :apphub, as: 'apphub', class: Google::Apis::LoggingV2::AppHub, decorator: Google::Apis::LoggingV2::AppHub::Representation
|
1016
1016
|
|
1017
|
+
property :apphub_destination, as: 'apphubDestination', class: Google::Apis::LoggingV2::AppHub, decorator: Google::Apis::LoggingV2::AppHub::Representation
|
1018
|
+
|
1017
1019
|
collection :error_groups, as: 'errorGroups', class: Google::Apis::LoggingV2::LogErrorGroup, decorator: Google::Apis::LoggingV2::LogErrorGroup::Representation
|
1018
1020
|
|
1019
1021
|
property :http_request, as: 'httpRequest', class: Google::Apis::LoggingV2::HttpRequest, decorator: Google::Apis::LoggingV2::HttpRequest::Representation
|
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.81.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.81.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:
|