google-cloud-secret_manager-v1beta1 0.17.0 → 0.17.1
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 +4 -4
- data/lib/google/cloud/secret_manager/v1beta1/bindings_override.rb +102 -0
- data/lib/google/cloud/secret_manager/v1beta1/rest.rb +1 -0
- data/lib/google/cloud/secret_manager/v1beta1/secret_manager_service/client.rb +72 -33
- data/lib/google/cloud/secret_manager/v1beta1/secret_manager_service/rest/client.rb +80 -33
- data/lib/google/cloud/secret_manager/v1beta1/secret_manager_service/rest.rb +1 -0
- data/lib/google/cloud/secret_manager/v1beta1/version.rb +1 -1
- data/lib/google/cloud/secrets/v1beta1/resources_pb.rb +1 -1
- data/lib/google/cloud/secrets/v1beta1/service_pb.rb +1 -1
- data/lib/google/cloud/secrets/v1beta1/service_services_pb.rb +24 -15
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/cloud/secrets/v1beta1/resources.rb +53 -30
- data/proto_docs/google/cloud/secrets/v1beta1/service.rb +74 -41
- data/proto_docs/google/protobuf/any.rb +145 -0
- metadata +25 -3
@@ -21,7 +21,8 @@ module Google
|
|
21
21
|
module Cloud
|
22
22
|
module SecretManager
|
23
23
|
module V1beta1
|
24
|
-
# Request message for
|
24
|
+
# Request message for
|
25
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#list_secrets SecretManagerService.ListSecrets}.
|
25
26
|
# @!attribute [rw] parent
|
26
27
|
# @return [::String]
|
27
28
|
# Required. The resource name of the project associated with the
|
@@ -40,15 +41,17 @@ module Google
|
|
40
41
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
41
42
|
end
|
42
43
|
|
43
|
-
# Response message for
|
44
|
+
# Response message for
|
45
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#list_secrets SecretManagerService.ListSecrets}.
|
44
46
|
# @!attribute [rw] secrets
|
45
47
|
# @return [::Array<::Google::Cloud::SecretManager::V1beta1::Secret>]
|
46
|
-
# The list of {::Google::Cloud::SecretManager::V1beta1::Secret Secrets} sorted in
|
47
|
-
# first).
|
48
|
+
# The list of {::Google::Cloud::SecretManager::V1beta1::Secret Secrets} sorted in
|
49
|
+
# reverse by create_time (newest first).
|
48
50
|
# @!attribute [rw] next_page_token
|
49
51
|
# @return [::String]
|
50
52
|
# A token to retrieve the next page of results. Pass this value in
|
51
|
-
# {::Google::Cloud::SecretManager::V1beta1::ListSecretsRequest#page_token ListSecretsRequest.page_token}
|
53
|
+
# {::Google::Cloud::SecretManager::V1beta1::ListSecretsRequest#page_token ListSecretsRequest.page_token}
|
54
|
+
# to retrieve the next page.
|
52
55
|
# @!attribute [rw] total_size
|
53
56
|
# @return [::Integer]
|
54
57
|
# The total number of {::Google::Cloud::SecretManager::V1beta1::Secret Secrets}.
|
@@ -57,7 +60,8 @@ module Google
|
|
57
60
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
58
61
|
end
|
59
62
|
|
60
|
-
# Request message for
|
63
|
+
# Request message for
|
64
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#create_secret SecretManagerService.CreateSecret}.
|
61
65
|
# @!attribute [rw] parent
|
62
66
|
# @return [::String]
|
63
67
|
# Required. The resource name of the project to associate with the
|
@@ -71,40 +75,50 @@ module Google
|
|
71
75
|
# underscore (`_`) characters.
|
72
76
|
# @!attribute [rw] secret
|
73
77
|
# @return [::Google::Cloud::SecretManager::V1beta1::Secret]
|
74
|
-
# Required. A {::Google::Cloud::SecretManager::V1beta1::Secret Secret} with initial
|
78
|
+
# Required. A {::Google::Cloud::SecretManager::V1beta1::Secret Secret} with initial
|
79
|
+
# field values.
|
75
80
|
class CreateSecretRequest
|
76
81
|
include ::Google::Protobuf::MessageExts
|
77
82
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
78
83
|
end
|
79
84
|
|
80
|
-
# Request message for
|
85
|
+
# Request message for
|
86
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#add_secret_version SecretManagerService.AddSecretVersion}.
|
81
87
|
# @!attribute [rw] parent
|
82
88
|
# @return [::String]
|
83
|
-
# Required. The resource name of the
|
84
|
-
# {::Google::Cloud::SecretManager::V1beta1::
|
89
|
+
# Required. The resource name of the
|
90
|
+
# {::Google::Cloud::SecretManager::V1beta1::Secret Secret} to associate with the
|
91
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion} in the format
|
92
|
+
# `projects/*/secrets/*`.
|
85
93
|
# @!attribute [rw] payload
|
86
94
|
# @return [::Google::Cloud::SecretManager::V1beta1::SecretPayload]
|
87
|
-
# Required. The secret payload of the
|
95
|
+
# Required. The secret payload of the
|
96
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion}.
|
88
97
|
class AddSecretVersionRequest
|
89
98
|
include ::Google::Protobuf::MessageExts
|
90
99
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
91
100
|
end
|
92
101
|
|
93
|
-
# Request message for
|
102
|
+
# Request message for
|
103
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#get_secret SecretManagerService.GetSecret}.
|
94
104
|
# @!attribute [rw] name
|
95
105
|
# @return [::String]
|
96
|
-
# Required. The resource name of the
|
106
|
+
# Required. The resource name of the
|
107
|
+
# {::Google::Cloud::SecretManager::V1beta1::Secret Secret}, in the format
|
108
|
+
# `projects/*/secrets/*`.
|
97
109
|
class GetSecretRequest
|
98
110
|
include ::Google::Protobuf::MessageExts
|
99
111
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
100
112
|
end
|
101
113
|
|
102
|
-
# Request message for
|
114
|
+
# Request message for
|
115
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#list_secret_versions SecretManagerService.ListSecretVersions}.
|
103
116
|
# @!attribute [rw] parent
|
104
117
|
# @return [::String]
|
105
|
-
# Required. The resource name of the
|
106
|
-
# {::Google::Cloud::SecretManager::V1beta1::
|
107
|
-
#
|
118
|
+
# Required. The resource name of the
|
119
|
+
# {::Google::Cloud::SecretManager::V1beta1::Secret Secret} associated with the
|
120
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersions} to list, in
|
121
|
+
# the format `projects/*/secrets/*`.
|
108
122
|
# @!attribute [rw] page_size
|
109
123
|
# @return [::Integer]
|
110
124
|
# Optional. The maximum number of results to be returned in a single page. If
|
@@ -119,27 +133,32 @@ module Google
|
|
119
133
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
120
134
|
end
|
121
135
|
|
122
|
-
# Response message for
|
136
|
+
# Response message for
|
137
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#list_secret_versions SecretManagerService.ListSecretVersions}.
|
123
138
|
# @!attribute [rw] versions
|
124
139
|
# @return [::Array<::Google::Cloud::SecretManager::V1beta1::SecretVersion>]
|
125
|
-
# The list of {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersions}
|
126
|
-
# create_time (newest first).
|
140
|
+
# The list of {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersions}
|
141
|
+
# sorted in reverse by create_time (newest first).
|
127
142
|
# @!attribute [rw] next_page_token
|
128
143
|
# @return [::String]
|
129
144
|
# A token to retrieve the next page of results. Pass this value in
|
130
|
-
# {::Google::Cloud::SecretManager::V1beta1::ListSecretVersionsRequest#page_token ListSecretVersionsRequest.page_token}
|
145
|
+
# {::Google::Cloud::SecretManager::V1beta1::ListSecretVersionsRequest#page_token ListSecretVersionsRequest.page_token}
|
146
|
+
# to retrieve the next page.
|
131
147
|
# @!attribute [rw] total_size
|
132
148
|
# @return [::Integer]
|
133
|
-
# The total number of
|
149
|
+
# The total number of
|
150
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersions}.
|
134
151
|
class ListSecretVersionsResponse
|
135
152
|
include ::Google::Protobuf::MessageExts
|
136
153
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
137
154
|
end
|
138
155
|
|
139
|
-
# Request message for
|
156
|
+
# Request message for
|
157
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#get_secret_version SecretManagerService.GetSecretVersion}.
|
140
158
|
# @!attribute [rw] name
|
141
159
|
# @return [::String]
|
142
|
-
# Required. The resource name of the
|
160
|
+
# Required. The resource name of the
|
161
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion} in the format
|
143
162
|
# `projects/*/secrets/*/versions/*`.
|
144
163
|
# `projects/*/secrets/*/versions/latest` is an alias to the `latest`
|
145
164
|
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion}.
|
@@ -148,10 +167,12 @@ module Google
|
|
148
167
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
149
168
|
end
|
150
169
|
|
151
|
-
# Request message for
|
170
|
+
# Request message for
|
171
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#update_secret SecretManagerService.UpdateSecret}.
|
152
172
|
# @!attribute [rw] secret
|
153
173
|
# @return [::Google::Cloud::SecretManager::V1beta1::Secret]
|
154
|
-
# Required. {::Google::Cloud::SecretManager::V1beta1::Secret Secret} with updated field
|
174
|
+
# Required. {::Google::Cloud::SecretManager::V1beta1::Secret Secret} with updated field
|
175
|
+
# values.
|
155
176
|
# @!attribute [rw] update_mask
|
156
177
|
# @return [::Google::Protobuf::FieldMask]
|
157
178
|
# Required. Specifies the fields to be updated.
|
@@ -160,20 +181,24 @@ module Google
|
|
160
181
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
161
182
|
end
|
162
183
|
|
163
|
-
# Request message for
|
184
|
+
# Request message for
|
185
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#access_secret_version SecretManagerService.AccessSecretVersion}.
|
164
186
|
# @!attribute [rw] name
|
165
187
|
# @return [::String]
|
166
|
-
# Required. The resource name of the
|
188
|
+
# Required. The resource name of the
|
189
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion} in the format
|
167
190
|
# `projects/*/secrets/*/versions/*`.
|
168
191
|
class AccessSecretVersionRequest
|
169
192
|
include ::Google::Protobuf::MessageExts
|
170
193
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
171
194
|
end
|
172
195
|
|
173
|
-
# Response message for
|
196
|
+
# Response message for
|
197
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#access_secret_version SecretManagerService.AccessSecretVersion}.
|
174
198
|
# @!attribute [rw] name
|
175
199
|
# @return [::String]
|
176
|
-
# The resource name of the
|
200
|
+
# The resource name of the
|
201
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion} in the format
|
177
202
|
# `projects/*/secrets/*/versions/*`.
|
178
203
|
# @!attribute [rw] payload
|
179
204
|
# @return [::Google::Cloud::SecretManager::V1beta1::SecretPayload]
|
@@ -183,41 +208,49 @@ module Google
|
|
183
208
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
184
209
|
end
|
185
210
|
|
186
|
-
# Request message for
|
211
|
+
# Request message for
|
212
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#delete_secret SecretManagerService.DeleteSecret}.
|
187
213
|
# @!attribute [rw] name
|
188
214
|
# @return [::String]
|
189
|
-
# Required. The resource name of the
|
215
|
+
# Required. The resource name of the
|
216
|
+
# {::Google::Cloud::SecretManager::V1beta1::Secret Secret} to delete in the format
|
190
217
|
# `projects/*/secrets/*`.
|
191
218
|
class DeleteSecretRequest
|
192
219
|
include ::Google::Protobuf::MessageExts
|
193
220
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
194
221
|
end
|
195
222
|
|
196
|
-
# Request message for
|
223
|
+
# Request message for
|
224
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#disable_secret_version SecretManagerService.DisableSecretVersion}.
|
197
225
|
# @!attribute [rw] name
|
198
226
|
# @return [::String]
|
199
|
-
# Required. The resource name of the
|
200
|
-
#
|
227
|
+
# Required. The resource name of the
|
228
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion} to disable in
|
229
|
+
# the format `projects/*/secrets/*/versions/*`.
|
201
230
|
class DisableSecretVersionRequest
|
202
231
|
include ::Google::Protobuf::MessageExts
|
203
232
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
204
233
|
end
|
205
234
|
|
206
|
-
# Request message for
|
235
|
+
# Request message for
|
236
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#enable_secret_version SecretManagerService.EnableSecretVersion}.
|
207
237
|
# @!attribute [rw] name
|
208
238
|
# @return [::String]
|
209
|
-
# Required. The resource name of the
|
210
|
-
#
|
239
|
+
# Required. The resource name of the
|
240
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion} to enable in
|
241
|
+
# the format `projects/*/secrets/*/versions/*`.
|
211
242
|
class EnableSecretVersionRequest
|
212
243
|
include ::Google::Protobuf::MessageExts
|
213
244
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
214
245
|
end
|
215
246
|
|
216
|
-
# Request message for
|
247
|
+
# Request message for
|
248
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretManagerService::Client#destroy_secret_version SecretManagerService.DestroySecretVersion}.
|
217
249
|
# @!attribute [rw] name
|
218
250
|
# @return [::String]
|
219
|
-
# Required. The resource name of the
|
220
|
-
#
|
251
|
+
# Required. The resource name of the
|
252
|
+
# {::Google::Cloud::SecretManager::V1beta1::SecretVersion SecretVersion} to destroy in
|
253
|
+
# the format `projects/*/secrets/*/versions/*`.
|
221
254
|
class DestroySecretVersionRequest
|
222
255
|
include ::Google::Protobuf::MessageExts
|
223
256
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -0,0 +1,145 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Protobuf
|
22
|
+
# `Any` contains an arbitrary serialized protocol buffer message along with a
|
23
|
+
# URL that describes the type of the serialized message.
|
24
|
+
#
|
25
|
+
# Protobuf library provides support to pack/unpack Any values in the form
|
26
|
+
# of utility functions or additional generated methods of the Any type.
|
27
|
+
#
|
28
|
+
# Example 1: Pack and unpack a message in C++.
|
29
|
+
#
|
30
|
+
# Foo foo = ...;
|
31
|
+
# Any any;
|
32
|
+
# any.PackFrom(foo);
|
33
|
+
# ...
|
34
|
+
# if (any.UnpackTo(&foo)) {
|
35
|
+
# ...
|
36
|
+
# }
|
37
|
+
#
|
38
|
+
# Example 2: Pack and unpack a message in Java.
|
39
|
+
#
|
40
|
+
# Foo foo = ...;
|
41
|
+
# Any any = Any.pack(foo);
|
42
|
+
# ...
|
43
|
+
# if (any.is(Foo.class)) {
|
44
|
+
# foo = any.unpack(Foo.class);
|
45
|
+
# }
|
46
|
+
# // or ...
|
47
|
+
# if (any.isSameTypeAs(Foo.getDefaultInstance())) {
|
48
|
+
# foo = any.unpack(Foo.getDefaultInstance());
|
49
|
+
# }
|
50
|
+
#
|
51
|
+
# Example 3: Pack and unpack a message in Python.
|
52
|
+
#
|
53
|
+
# foo = Foo(...)
|
54
|
+
# any = Any()
|
55
|
+
# any.Pack(foo)
|
56
|
+
# ...
|
57
|
+
# if any.Is(Foo.DESCRIPTOR):
|
58
|
+
# any.Unpack(foo)
|
59
|
+
# ...
|
60
|
+
#
|
61
|
+
# Example 4: Pack and unpack a message in Go
|
62
|
+
#
|
63
|
+
# foo := &pb.Foo{...}
|
64
|
+
# any, err := anypb.New(foo)
|
65
|
+
# if err != nil {
|
66
|
+
# ...
|
67
|
+
# }
|
68
|
+
# ...
|
69
|
+
# foo := &pb.Foo{}
|
70
|
+
# if err := any.UnmarshalTo(foo); err != nil {
|
71
|
+
# ...
|
72
|
+
# }
|
73
|
+
#
|
74
|
+
# The pack methods provided by protobuf library will by default use
|
75
|
+
# 'type.googleapis.com/full.type.name' as the type URL and the unpack
|
76
|
+
# methods only use the fully qualified type name after the last '/'
|
77
|
+
# in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
78
|
+
# name "y.z".
|
79
|
+
#
|
80
|
+
# JSON
|
81
|
+
# ====
|
82
|
+
# The JSON representation of an `Any` value uses the regular
|
83
|
+
# representation of the deserialized, embedded message, with an
|
84
|
+
# additional field `@type` which contains the type URL. Example:
|
85
|
+
#
|
86
|
+
# package google.profile;
|
87
|
+
# message Person {
|
88
|
+
# string first_name = 1;
|
89
|
+
# string last_name = 2;
|
90
|
+
# }
|
91
|
+
#
|
92
|
+
# {
|
93
|
+
# "@type": "type.googleapis.com/google.profile.Person",
|
94
|
+
# "firstName": <string>,
|
95
|
+
# "lastName": <string>
|
96
|
+
# }
|
97
|
+
#
|
98
|
+
# If the embedded message type is well-known and has a custom JSON
|
99
|
+
# representation, that representation will be embedded adding a field
|
100
|
+
# `value` which holds the custom JSON in addition to the `@type`
|
101
|
+
# field. Example (for message [google.protobuf.Duration][]):
|
102
|
+
#
|
103
|
+
# {
|
104
|
+
# "@type": "type.googleapis.com/google.protobuf.Duration",
|
105
|
+
# "value": "1.212s"
|
106
|
+
# }
|
107
|
+
# @!attribute [rw] type_url
|
108
|
+
# @return [::String]
|
109
|
+
# A URL/resource name that uniquely identifies the type of the serialized
|
110
|
+
# protocol buffer message. This string must contain at least
|
111
|
+
# one "/" character. The last segment of the URL's path must represent
|
112
|
+
# the fully qualified name of the type (as in
|
113
|
+
# `path/google.protobuf.Duration`). The name should be in a canonical form
|
114
|
+
# (e.g., leading "." is not accepted).
|
115
|
+
#
|
116
|
+
# In practice, teams usually precompile into the binary all types that they
|
117
|
+
# expect it to use in the context of Any. However, for URLs which use the
|
118
|
+
# scheme `http`, `https`, or no scheme, one can optionally set up a type
|
119
|
+
# server that maps type URLs to message definitions as follows:
|
120
|
+
#
|
121
|
+
# * If no scheme is provided, `https` is assumed.
|
122
|
+
# * An HTTP GET on the URL must yield a [google.protobuf.Type][]
|
123
|
+
# value in binary format, or produce an error.
|
124
|
+
# * Applications are allowed to cache lookup results based on the
|
125
|
+
# URL, or have them precompiled into a binary to avoid any
|
126
|
+
# lookup. Therefore, binary compatibility needs to be preserved
|
127
|
+
# on changes to types. (Use versioned type names to manage
|
128
|
+
# breaking changes.)
|
129
|
+
#
|
130
|
+
# Note: this functionality is not currently available in the official
|
131
|
+
# protobuf release, and it is not used for type URLs beginning with
|
132
|
+
# type.googleapis.com. As of May 2023, there are no widely used type server
|
133
|
+
# implementations and no plans to implement one.
|
134
|
+
#
|
135
|
+
# Schemes other than `http`, `https` (or the empty scheme) might be
|
136
|
+
# used with implementation specific semantics.
|
137
|
+
# @!attribute [rw] value
|
138
|
+
# @return [::String]
|
139
|
+
# Must be a valid serialized protocol buffer of the above specified type.
|
140
|
+
class Any
|
141
|
+
include ::Google::Protobuf::MessageExts
|
142
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-secret_manager-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.17.
|
4
|
+
version: 0.17.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-21 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -43,6 +43,26 @@ dependencies:
|
|
43
43
|
- - "~>"
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '1.0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: google-cloud-location
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0.7'
|
53
|
+
- - "<"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 2.a
|
56
|
+
type: :runtime
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0.7'
|
63
|
+
- - "<"
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 2.a
|
46
66
|
- !ruby/object:Gem::Dependency
|
47
67
|
name: grpc-google-iam-v1
|
48
68
|
requirement: !ruby/object:Gem::Requirement
|
@@ -74,6 +94,7 @@ files:
|
|
74
94
|
- README.md
|
75
95
|
- lib/google-cloud-secret_manager-v1beta1.rb
|
76
96
|
- lib/google/cloud/secret_manager/v1beta1.rb
|
97
|
+
- lib/google/cloud/secret_manager/v1beta1/bindings_override.rb
|
77
98
|
- lib/google/cloud/secret_manager/v1beta1/rest.rb
|
78
99
|
- lib/google/cloud/secret_manager/v1beta1/secret_manager_service.rb
|
79
100
|
- lib/google/cloud/secret_manager/v1beta1/secret_manager_service/client.rb
|
@@ -96,6 +117,7 @@ files:
|
|
96
117
|
- proto_docs/google/iam/v1/iam_policy.rb
|
97
118
|
- proto_docs/google/iam/v1/options.rb
|
98
119
|
- proto_docs/google/iam/v1/policy.rb
|
120
|
+
- proto_docs/google/protobuf/any.rb
|
99
121
|
- proto_docs/google/protobuf/duration.rb
|
100
122
|
- proto_docs/google/protobuf/empty.rb
|
101
123
|
- proto_docs/google/protobuf/field_mask.rb
|
@@ -119,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
141
|
- !ruby/object:Gem::Version
|
120
142
|
version: '0'
|
121
143
|
requirements: []
|
122
|
-
rubygems_version: 3.6.
|
144
|
+
rubygems_version: 3.6.5
|
123
145
|
specification_version: 4
|
124
146
|
summary: Stores sensitive data such as API keys, passwords, and certificates. Provides
|
125
147
|
convenience while improving security.
|