google-apis-storagetransfer_v1 0.38.0 → 0.40.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: 9f8bb4edb4c071acc7a7d6d5435bdc3b590baab0147f191e4fd6d08be22ea7b6
|
4
|
+
data.tar.gz: e11c49125cc75c0645c207c8ba244af591db856a65253143eab28b85783650e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff41f02948069fe59835c1263d58020977e6245ae61c42405878dc8bee6fd8c5ef47f0b35725fb6f962e23decdd491b3f7e6a7a504ebba29545a181839770a7e
|
7
|
+
data.tar.gz: 38dbf60f30343f2c75a8c8688b4f31e19f0263369f2a45837cc860988b629a3562e43eddd50d7e4fb11c3b178589a845254bad7d8efac8fd3eba6bdaec8a8934
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-storagetransfer_v1
|
2
2
|
|
3
|
+
### v0.40.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230807
|
6
|
+
|
7
|
+
### v0.39.0 (2023-05-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230516
|
10
|
+
|
3
11
|
### v0.38.0 (2023-03-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230307
|
@@ -154,6 +154,19 @@ module Google
|
|
154
154
|
# @return [String]
|
155
155
|
attr_accessor :bucket_name
|
156
156
|
|
157
|
+
# Optional. The Resource name of a secret in Secret Manager. The Azure SAS token
|
158
|
+
# must be stored in Secret Manager in JSON format: ` "sas_token" : "SAS_TOKEN" `
|
159
|
+
# GoogleServiceAccount must be granted `roles/secretmanager.secretAccessor` for
|
160
|
+
# the resource. See [Configure access to a source: Microsoft Azure Blob Storage]
|
161
|
+
# (https://cloud.google.com/storage-transfer/docs/source-microsoft-azure#
|
162
|
+
# secret_manager) for more information. If `credentials_secret` is specified, do
|
163
|
+
# not specify azure_credentials. This feature is in [preview](https://cloud.
|
164
|
+
# google.com/terms/service-terms#1). Format: `projects/`project_number`/secrets/`
|
165
|
+
# secret_name``
|
166
|
+
# Corresponds to the JSON property `credentialsSecret`
|
167
|
+
# @return [String]
|
168
|
+
attr_accessor :credentials_secret
|
169
|
+
|
157
170
|
# Root path to transfer objects. Must be an empty string or full path name that
|
158
171
|
# ends with a '/'. This field is treated as an object prefix. As such, it should
|
159
172
|
# generally not begin with a '/'.
|
@@ -179,6 +192,7 @@ module Google
|
|
179
192
|
def update!(**args)
|
180
193
|
@aws_access_key = args[:aws_access_key] if args.key?(:aws_access_key)
|
181
194
|
@bucket_name = args[:bucket_name] if args.key?(:bucket_name)
|
195
|
+
@credentials_secret = args[:credentials_secret] if args.key?(:credentials_secret)
|
182
196
|
@path = args[:path] if args.key?(:path)
|
183
197
|
@role_arn = args[:role_arn] if args.key?(:role_arn)
|
184
198
|
end
|
@@ -206,6 +220,19 @@ module Google
|
|
206
220
|
# @return [String]
|
207
221
|
attr_accessor :container
|
208
222
|
|
223
|
+
# Optional. The Resource name of a secret in Secret Manager. The Azure SAS token
|
224
|
+
# must be stored in Secret Manager in JSON format: ` "sas_token" : "SAS_TOKEN" `
|
225
|
+
# GoogleServiceAccount must be granted `roles/secretmanager.secretAccessor` for
|
226
|
+
# the resource. See [Configure access to a source: Microsoft Azure Blob Storage]
|
227
|
+
# (https://cloud.google.com/storage-transfer/docs/source-microsoft-azure#
|
228
|
+
# secret_manager) for more information. If `credentials_secret` is specified, do
|
229
|
+
# not specify azure_credentials. This feature is in [preview](https://cloud.
|
230
|
+
# google.com/terms/service-terms#1). Format: `projects/`project_number`/secrets/`
|
231
|
+
# secret_name``
|
232
|
+
# Corresponds to the JSON property `credentialsSecret`
|
233
|
+
# @return [String]
|
234
|
+
attr_accessor :credentials_secret
|
235
|
+
|
209
236
|
# Root path to transfer objects. Must be an empty string or full path name that
|
210
237
|
# ends with a '/'. This field is treated as an object prefix. As such, it should
|
211
238
|
# generally not begin with a '/'.
|
@@ -226,6 +253,7 @@ module Google
|
|
226
253
|
def update!(**args)
|
227
254
|
@azure_credentials = args[:azure_credentials] if args.key?(:azure_credentials)
|
228
255
|
@container = args[:container] if args.key?(:container)
|
256
|
+
@credentials_secret = args[:credentials_secret] if args.key?(:credentials_secret)
|
229
257
|
@path = args[:path] if args.key?(:path)
|
230
258
|
@storage_account = args[:storage_account] if args.key?(:storage_account)
|
231
259
|
end
|
@@ -926,13 +954,13 @@ module Google
|
|
926
954
|
# @return [String]
|
927
955
|
attr_accessor :name
|
928
956
|
|
929
|
-
# The normal response of the operation
|
930
|
-
#
|
931
|
-
#
|
932
|
-
#
|
933
|
-
#
|
934
|
-
#
|
935
|
-
#
|
957
|
+
# The normal, successful response of the operation. If the original method
|
958
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
959
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
960
|
+
# response should be the resource. For other methods, the response should have
|
961
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
962
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
963
|
+
# `TakeSnapshotResponse`.
|
936
964
|
# Corresponds to the JSON property `response`
|
937
965
|
# @return [Hash<String,Object>]
|
938
966
|
attr_accessor :response
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module StoragetransferV1
|
18
18
|
# Version of the google-apis-storagetransfer_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.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 = "20230807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -293,6 +293,7 @@ module Google
|
|
293
293
|
property :aws_access_key, as: 'awsAccessKey', class: Google::Apis::StoragetransferV1::AwsAccessKey, decorator: Google::Apis::StoragetransferV1::AwsAccessKey::Representation
|
294
294
|
|
295
295
|
property :bucket_name, as: 'bucketName'
|
296
|
+
property :credentials_secret, as: 'credentialsSecret'
|
296
297
|
property :path, as: 'path'
|
297
298
|
property :role_arn, as: 'roleArn'
|
298
299
|
end
|
@@ -304,6 +305,7 @@ module Google
|
|
304
305
|
property :azure_credentials, as: 'azureCredentials', class: Google::Apis::StoragetransferV1::AzureCredentials, decorator: Google::Apis::StoragetransferV1::AzureCredentials::Representation
|
305
306
|
|
306
307
|
property :container, as: 'container'
|
308
|
+
property :credentials_secret, as: 'credentialsSecret'
|
307
309
|
property :path, as: 'path'
|
308
310
|
property :storage_account, as: 'storageAccount'
|
309
311
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-storagetransfer_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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-08-20 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-storagetransfer_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.40.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storagetransfer_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|