google-cloud-secret_manager-v1 0.11.3 → 0.12.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37b0cf686a32d4f82d396c40a69d3664919f0240faa9c6475bd196dfb19ed395
|
4
|
+
data.tar.gz: 58c3fa3d03ce616fcf2c1a5921fdcc09dac5fd88a7930e4fb8e7ff2d8c99220e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6af54a656d01b9d7e347c6a336324fd766524360f48c821bfb2d8e7ad543f8db71436599a676b00eefe74dd09153639b091add30570913bbdddb6bf1d35d0b08
|
7
|
+
data.tar.gz: 401c6971e1716b439130964ae640812a77a8533d47d88e504ae13487cb48da3157462e1f5e4d789be9538e47bab939be2ae57b93225bcb6a8de48bcc271f8caf
|
data/README.md
CHANGED
@@ -37,7 +37,7 @@ request = ::Google::Cloud::SecretManager::V1::ListSecretsRequest.new # (request
|
|
37
37
|
response = client.list_secrets request
|
38
38
|
```
|
39
39
|
|
40
|
-
View the [Client Library Documentation](https://
|
40
|
+
View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-cloud-secret_manager-v1/latest)
|
41
41
|
for class and method documentation.
|
42
42
|
|
43
43
|
See also the [Product Documentation](https://cloud.google.com/secret-manager)
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/secretmanager/v1/resources.proto
|
3
3
|
|
4
|
+
require 'google/api/annotations_pb'
|
4
5
|
require 'google/api/field_behavior_pb'
|
5
6
|
require 'google/api/resource_pb'
|
6
7
|
require 'google/protobuf/duration_pb'
|
7
8
|
require 'google/protobuf/timestamp_pb'
|
8
|
-
require 'google/api/annotations_pb'
|
9
9
|
require 'google/protobuf'
|
10
10
|
|
11
11
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
@@ -30,6 +30,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
30
30
|
optional :state, :enum, 4, "google.cloud.secretmanager.v1.SecretVersion.State"
|
31
31
|
optional :replication_status, :message, 5, "google.cloud.secretmanager.v1.ReplicationStatus"
|
32
32
|
optional :etag, :string, 6
|
33
|
+
optional :client_specified_payload_checksum, :bool, 7
|
33
34
|
end
|
34
35
|
add_enum "google.cloud.secretmanager.v1.SecretVersion.State" do
|
35
36
|
value :STATE_UNSPECIFIED, 0
|
@@ -84,6 +85,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
84
85
|
end
|
85
86
|
add_message "google.cloud.secretmanager.v1.SecretPayload" do
|
86
87
|
optional :data, :bytes, 1
|
88
|
+
proto3_optional :data_crc32c, :int64, 2
|
87
89
|
end
|
88
90
|
end
|
89
91
|
end
|
@@ -107,6 +107,11 @@ module Google
|
|
107
107
|
# @!attribute [r] etag
|
108
108
|
# @return [::String]
|
109
109
|
# Output only. Etag of the currently stored {::Google::Cloud::SecretManager::V1::SecretVersion SecretVersion}.
|
110
|
+
# @!attribute [r] client_specified_payload_checksum
|
111
|
+
# @return [::Boolean]
|
112
|
+
# Output only. True if payload checksum specified in {::Google::Cloud::SecretManager::V1::SecretPayload SecretPayload} object has been
|
113
|
+
# received by {::Google::Cloud::SecretManager::V1::SecretManagerService::Client SecretManagerService} on
|
114
|
+
# {::Google::Cloud::SecretManager::V1::SecretManagerService::Client#add_secret_version SecretManagerService.AddSecretVersion}.
|
110
115
|
class SecretVersion
|
111
116
|
include ::Google::Protobuf::MessageExts
|
112
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -319,6 +324,18 @@ module Google
|
|
319
324
|
# @!attribute [rw] data
|
320
325
|
# @return [::String]
|
321
326
|
# The secret data. Must be no larger than 64KiB.
|
327
|
+
# @!attribute [rw] data_crc32c
|
328
|
+
# @return [::Integer]
|
329
|
+
# Optional. If specified, {::Google::Cloud::SecretManager::V1::SecretManagerService::Client SecretManagerService} will verify the integrity of the
|
330
|
+
# received {::Google::Cloud::SecretManager::V1::SecretPayload#data data} on {::Google::Cloud::SecretManager::V1::SecretManagerService::Client#add_secret_version SecretManagerService.AddSecretVersion} calls using
|
331
|
+
# the crc32c checksum and store it to include in future
|
332
|
+
# {::Google::Cloud::SecretManager::V1::SecretManagerService::Client#access_secret_version SecretManagerService.AccessSecretVersion} responses. If a checksum is
|
333
|
+
# not provided in the {::Google::Cloud::SecretManager::V1::SecretManagerService::Client#add_secret_version SecretManagerService.AddSecretVersion} request, the
|
334
|
+
# {::Google::Cloud::SecretManager::V1::SecretManagerService::Client SecretManagerService} will generate and store one for you.
|
335
|
+
#
|
336
|
+
# The CRC32C value is encoded as a Int64 for compatibility, and can be
|
337
|
+
# safely downconverted to uint32 in languages that support this type.
|
338
|
+
# https://cloud.google.com/apis/design/design_patterns#integer_types
|
322
339
|
class SecretPayload
|
323
340
|
include ::Google::Protobuf::MessageExts
|
324
341
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-secret_manager-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -233,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
233
233
|
- !ruby/object:Gem::Version
|
234
234
|
version: '0'
|
235
235
|
requirements: []
|
236
|
-
rubygems_version: 3.3.
|
236
|
+
rubygems_version: 3.3.5
|
237
237
|
signing_key:
|
238
238
|
specification_version: 4
|
239
239
|
summary: API Client library for the Secret Manager V1 API
|