google-cloud-secret_manager-v1 0.10.2 → 0.11.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: 7cc37901944980f42ce63e3d5ec23733bebda882b2071d3c6a7cbba22cb6eb54
|
4
|
+
data.tar.gz: 6511e7203665386159c751e7cbb8b96bdf7fbf8950701e1c18093882bdaf62e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c691a576dbcb9bb2369993d80997acf9ac196eeb8918926560f3bed1682f0493f7397aaf0ea637b4676cf4d27e5968ef82df60e0bf2fa342cba904c482f670a
|
7
|
+
data.tar.gz: 1824c2a153e007fb5183b02c98fcc3206fc432732820148782730f44456eafca99315fa7973d1fd34692072782a4cf77f3e421d3845f7167d4bb3b581126e471
|
@@ -202,7 +202,7 @@ module Google
|
|
202
202
|
# @param options [::Gapic::CallOptions, ::Hash]
|
203
203
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
204
204
|
#
|
205
|
-
# @overload list_secrets(parent: nil, page_size: nil, page_token: nil)
|
205
|
+
# @overload list_secrets(parent: nil, page_size: nil, page_token: nil, filter: nil)
|
206
206
|
# Pass arguments to `list_secrets` via keyword arguments. Note that at
|
207
207
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
208
208
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
@@ -217,6 +217,12 @@ module Google
|
|
217
217
|
# @param page_token [::String]
|
218
218
|
# Optional. Pagination token, returned earlier via
|
219
219
|
# {::Google::Cloud::SecretManager::V1::ListSecretsResponse#next_page_token ListSecretsResponse.next_page_token}.
|
220
|
+
# @param filter [::String]
|
221
|
+
# Optional. Filter string, adhering to the rules in
|
222
|
+
# [List-operation
|
223
|
+
# filtering](https://cloud.google.com/secret-manager/docs/filtering). List
|
224
|
+
# only secrets matching the filter. If filter is empty, all secrets are
|
225
|
+
# listed.
|
220
226
|
#
|
221
227
|
# @yield [response, operation] Access the result along with the RPC operation
|
222
228
|
# @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::SecretManager::V1::Secret>]
|
@@ -628,7 +634,7 @@ module Google
|
|
628
634
|
# @param options [::Gapic::CallOptions, ::Hash]
|
629
635
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
630
636
|
#
|
631
|
-
# @overload list_secret_versions(parent: nil, page_size: nil, page_token: nil)
|
637
|
+
# @overload list_secret_versions(parent: nil, page_size: nil, page_token: nil, filter: nil)
|
632
638
|
# Pass arguments to `list_secret_versions` via keyword arguments. Note that at
|
633
639
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
634
640
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
@@ -644,6 +650,12 @@ module Google
|
|
644
650
|
# @param page_token [::String]
|
645
651
|
# Optional. Pagination token, returned earlier via
|
646
652
|
# ListSecretVersionsResponse.next_page_token][].
|
653
|
+
# @param filter [::String]
|
654
|
+
# Optional. Filter string, adhering to the rules in
|
655
|
+
# [List-operation
|
656
|
+
# filtering](https://cloud.google.com/secret-manager/docs/filtering). List
|
657
|
+
# only secret versions matching the filter. If filter is empty, all secret
|
658
|
+
# versions are listed.
|
647
659
|
#
|
648
660
|
# @yield [response, operation] Access the result along with the RPC operation
|
649
661
|
# @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::SecretManager::V1::SecretVersion>]
|
@@ -18,6 +18,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
18
18
|
optional :parent, :string, 1
|
19
19
|
optional :page_size, :int32, 2
|
20
20
|
optional :page_token, :string, 3
|
21
|
+
optional :filter, :string, 4
|
21
22
|
end
|
22
23
|
add_message "google.cloud.secretmanager.v1.ListSecretsResponse" do
|
23
24
|
repeated :secrets, :message, 1, "google.cloud.secretmanager.v1.Secret"
|
@@ -40,6 +41,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
40
41
|
optional :parent, :string, 1
|
41
42
|
optional :page_size, :int32, 2
|
42
43
|
optional :page_token, :string, 3
|
44
|
+
optional :filter, :string, 4
|
43
45
|
end
|
44
46
|
add_message "google.cloud.secretmanager.v1.ListSecretVersionsResponse" do
|
45
47
|
repeated :versions, :message, 1, "google.cloud.secretmanager.v1.SecretVersion"
|
@@ -35,6 +35,13 @@ module Google
|
|
35
35
|
# @return [::String]
|
36
36
|
# Optional. Pagination token, returned earlier via
|
37
37
|
# {::Google::Cloud::SecretManager::V1::ListSecretsResponse#next_page_token ListSecretsResponse.next_page_token}.
|
38
|
+
# @!attribute [rw] filter
|
39
|
+
# @return [::String]
|
40
|
+
# Optional. Filter string, adhering to the rules in
|
41
|
+
# [List-operation
|
42
|
+
# filtering](https://cloud.google.com/secret-manager/docs/filtering). List
|
43
|
+
# only secrets matching the filter. If filter is empty, all secrets are
|
44
|
+
# listed.
|
38
45
|
class ListSecretsRequest
|
39
46
|
include ::Google::Protobuf::MessageExts
|
40
47
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -114,6 +121,13 @@ module Google
|
|
114
121
|
# @return [::String]
|
115
122
|
# Optional. Pagination token, returned earlier via
|
116
123
|
# ListSecretVersionsResponse.next_page_token][].
|
124
|
+
# @!attribute [rw] filter
|
125
|
+
# @return [::String]
|
126
|
+
# Optional. Filter string, adhering to the rules in
|
127
|
+
# [List-operation
|
128
|
+
# filtering](https://cloud.google.com/secret-manager/docs/filtering). List
|
129
|
+
# only secret versions matching the filter. If filter is empty, all secret
|
130
|
+
# versions are listed.
|
117
131
|
class ListSecretVersionsRequest
|
118
132
|
include ::Google::Protobuf::MessageExts
|
119
133
|
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.11.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: 2021-07-
|
11
|
+
date: 2021-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|