google-apis-logging_v2 0.44.0 → 0.46.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: aa791323d71563a4e3820e8fa7ce9e63dee2dd9feedbf0aadf153236ce12825d
|
|
4
|
+
data.tar.gz: 5eb1bba0e80282705b705517be83e41439848d529f6dde194a05f95bb53c5612
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 995812e8f600ef35bd701998ab8fe71c3382b2e424ac40fdef3f0a521fe8004357ad18062fbccb43d6ec19997f62dfd0a14584db2399174467a14613ef40c9aa
|
|
7
|
+
data.tar.gz: eb69611a2d2b8d32c5f2e19c2be940221c0b30e3d64bc2bd806ce21e46a815fc7daa112289d3b7790302a79fa0036913c4eb9d3a6f074fe8ae93e53967f5ea7b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-logging_v2
|
|
2
2
|
|
|
3
|
+
### v0.46.0 (2023-05-28)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20230517
|
|
6
|
+
|
|
7
|
+
### v0.45.0 (2023-05-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20230505
|
|
10
|
+
|
|
3
11
|
### v0.44.0 (2023-04-30)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20230421
|
|
@@ -588,7 +588,7 @@ module Google
|
|
|
588
588
|
attr_accessor :protocol
|
|
589
589
|
|
|
590
590
|
# The referer URL of the request, as defined in HTTP/1.1 Header Field
|
|
591
|
-
# Definitions (
|
|
591
|
+
# Definitions (https://datatracker.ietf.org/doc/html/rfc2616#section-14.36).
|
|
592
592
|
# Corresponds to the JSON property `referer`
|
|
593
593
|
# @return [String]
|
|
594
594
|
attr_accessor :referer
|
|
@@ -2817,6 +2817,13 @@ module Google
|
|
|
2817
2817
|
# @return [String]
|
|
2818
2818
|
attr_accessor :kms_service_account_id
|
|
2819
2819
|
|
|
2820
|
+
# Output only. The service account for the given container. Sinks use this
|
|
2821
|
+
# service account as their writer_identity if no custom service account is
|
|
2822
|
+
# provided.
|
|
2823
|
+
# Corresponds to the JSON property `loggingServiceAccountId`
|
|
2824
|
+
# @return [String]
|
|
2825
|
+
attr_accessor :logging_service_account_id
|
|
2826
|
+
|
|
2820
2827
|
# Output only. The resource name of the settings.
|
|
2821
2828
|
# Corresponds to the JSON property `name`
|
|
2822
2829
|
# @return [String]
|
|
@@ -2838,6 +2845,7 @@ module Google
|
|
|
2838
2845
|
@disable_default_sink = args[:disable_default_sink] if args.key?(:disable_default_sink)
|
|
2839
2846
|
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
|
2840
2847
|
@kms_service_account_id = args[:kms_service_account_id] if args.key?(:kms_service_account_id)
|
|
2848
|
+
@logging_service_account_id = args[:logging_service_account_id] if args.key?(:logging_service_account_id)
|
|
2841
2849
|
@name = args[:name] if args.key?(:name)
|
|
2842
2850
|
@storage_location = args[:storage_location] if args.key?(:storage_location)
|
|
2843
2851
|
end
|
|
@@ -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.46.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230517"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1004,6 +1004,7 @@ module Google
|
|
|
1004
1004
|
property :disable_default_sink, as: 'disableDefaultSink'
|
|
1005
1005
|
property :kms_key_name, as: 'kmsKeyName'
|
|
1006
1006
|
property :kms_service_account_id, as: 'kmsServiceAccountId'
|
|
1007
|
+
property :logging_service_account_id, as: 'loggingServiceAccountId'
|
|
1007
1008
|
property :name, as: 'name'
|
|
1008
1009
|
property :storage_location, as: 'storageLocation'
|
|
1009
1010
|
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.
|
|
4
|
+
version: 0.46.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: 2023-
|
|
11
|
+
date: 2023-05-28 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.46.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: []
|