google-apis-secretmanager_v1 0.18.0 → 0.19.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: d4e1b1a89b73ddccb277656188c3c2805c9ca1ff51374cf3122c0310b158d58f
|
4
|
+
data.tar.gz: ce6905a9705d4f9a351491444a8f828b007ad194f5ad12bb18b2e7463ea3d062
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 810959d56e02ac177bcd61e06ac292220b3b615169c98ad65e56b6491de2aebf3f81a39559d13638e201a3c2a522c3bfac0682608a217f6ce6b3d1a910f3c25a
|
7
|
+
data.tar.gz: 861b3124a16970ee71faaadb7bbd22df9070c46c5773e6cea74331bb2813d4c46540d858943814f3f788c75d4d603bbc70103b14641d7480e7a9eb0a9d8ac090
|
data/CHANGELOG.md
CHANGED
@@ -892,6 +892,19 @@ module Google
|
|
892
892
|
# @return [String]
|
893
893
|
attr_accessor :data
|
894
894
|
|
895
|
+
# Optional. If specified, SecretManagerService will verify the integrity of the
|
896
|
+
# received data on SecretManagerService.AddSecretVersion calls using the crc32c
|
897
|
+
# checksum and store it to include in future SecretManagerService.
|
898
|
+
# AccessSecretVersion responses. If a checksum is not provided in the
|
899
|
+
# SecretManagerService.AddSecretVersion request, the SecretManagerService will
|
900
|
+
# generate and store one for you. The CRC32C value is encoded as a Int64 for
|
901
|
+
# compatibility, and can be safely downconverted to uint32 in languages that
|
902
|
+
# support this type. https://cloud.google.com/apis/design/design_patterns#
|
903
|
+
# integer_types
|
904
|
+
# Corresponds to the JSON property `dataCrc32c`
|
905
|
+
# @return [Fixnum]
|
906
|
+
attr_accessor :data_crc32c
|
907
|
+
|
895
908
|
def initialize(**args)
|
896
909
|
update!(**args)
|
897
910
|
end
|
@@ -899,6 +912,7 @@ module Google
|
|
899
912
|
# Update properties of this object
|
900
913
|
def update!(**args)
|
901
914
|
@data = args[:data] if args.key?(:data)
|
915
|
+
@data_crc32c = args[:data_crc32c] if args.key?(:data_crc32c)
|
902
916
|
end
|
903
917
|
end
|
904
918
|
|
@@ -906,6 +920,13 @@ module Google
|
|
906
920
|
class SecretVersion
|
907
921
|
include Google::Apis::Core::Hashable
|
908
922
|
|
923
|
+
# Output only. True if payload checksum specified in SecretPayload object has
|
924
|
+
# been received by SecretManagerService on SecretManagerService.AddSecretVersion.
|
925
|
+
# Corresponds to the JSON property `clientSpecifiedPayloadChecksum`
|
926
|
+
# @return [Boolean]
|
927
|
+
attr_accessor :client_specified_payload_checksum
|
928
|
+
alias_method :client_specified_payload_checksum?, :client_specified_payload_checksum
|
929
|
+
|
909
930
|
# Output only. The time at which the SecretVersion was created.
|
910
931
|
# Corresponds to the JSON property `createTime`
|
911
932
|
# @return [String]
|
@@ -945,6 +966,7 @@ module Google
|
|
945
966
|
|
946
967
|
# Update properties of this object
|
947
968
|
def update!(**args)
|
969
|
+
@client_specified_payload_checksum = args[:client_specified_payload_checksum] if args.key?(:client_specified_payload_checksum)
|
948
970
|
@create_time = args[:create_time] if args.key?(:create_time)
|
949
971
|
@destroy_time = args[:destroy_time] if args.key?(:destroy_time)
|
950
972
|
@etag = args[:etag] if args.key?(:etag)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecretmanagerV1
|
18
18
|
# Version of the google-apis-secretmanager_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220115"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -451,12 +451,14 @@ module Google
|
|
451
451
|
# @private
|
452
452
|
class Representation < Google::Apis::Core::JsonRepresentation
|
453
453
|
property :data, :base64 => true, as: 'data'
|
454
|
+
property :data_crc32c, :numeric_string => true, as: 'dataCrc32c'
|
454
455
|
end
|
455
456
|
end
|
456
457
|
|
457
458
|
class SecretVersion
|
458
459
|
# @private
|
459
460
|
class Representation < Google::Apis::Core::JsonRepresentation
|
461
|
+
property :client_specified_payload_checksum, as: 'clientSpecifiedPayloadChecksum'
|
460
462
|
property :create_time, as: 'createTime'
|
461
463
|
property :destroy_time, as: 'destroyTime'
|
462
464
|
property :etag, as: 'etag'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-secretmanager_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.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-01-
|
11
|
+
date: 2022-01-24 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-secretmanager_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-secretmanager_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-secretmanager_v1/v0.19.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-secretmanager_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Secret Manager API V1
|