google-apis-storagetransfer_v1 0.38.0 → 0.39.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: 68c606f82dd817bbe8bbc20183644745e92e66babe547651466ba78224ee0eac
4
- data.tar.gz: 455c229c10fc4443288b2e62b4d8a4de0c89be4fdb74e8ed4ae82f542b51750a
3
+ metadata.gz: 132d4c3efa0f574d65743b8d8a0a8615c6d9a5f2155ecf2301d41857f41dc563
4
+ data.tar.gz: 5807c1e203161f480470e8e1d89bd33389124d6ca85f20818d6a664b8d4ec311
5
5
  SHA512:
6
- metadata.gz: f405fe8695506e84f241ac4342928563b33af34594b1ad8ca0a29d238e429206f9e12eb030c2dabc10ce68d0ae8cb3135c857a2e2d363f0bb3753da5bb824cc2
7
- data.tar.gz: f1cea5af9c02ee593613b0aac9dbdc774db056ad6949ff86da0f23764ce896f9245d34730c904d2191ab3887c566e46e03523503d8258c1f4ce704800715f1b7
6
+ metadata.gz: 3b0e500cbdd2298f8fd1cbbb381395c76196c11019748f79b8f4d69a13e65172541641ee76c4a2bfc80201834b26a033ab2a467a76a1b2c00b349e7b20160d16
7
+ data.tar.gz: e48917e9cce4c9fb3fc01fcd3bbedcdc87974ca4cf1ed7bfaa1f87533f1bc9272b1abaacd26fca2ef368d3dd19aa3724380c299bb7cffeb82b821597c29b6c10
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-storagetransfer_v1
2
2
 
3
+ ### v0.39.0 (2023-05-21)
4
+
5
+ * Regenerated from discovery document revision 20230516
6
+
3
7
  ### v0.38.0 (2023-03-12)
4
8
 
5
9
  * 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
@@ -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.38.0"
19
+ GEM_VERSION = "0.39.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 = "20230307"
25
+ REVISION = "20230516"
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.38.0
4
+ version: 0.39.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-03-12 00:00:00.000000000 Z
11
+ date: 2023-05-21 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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.39.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: []