google-apis-storagetransfer_v1 0.37.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 132d4c3efa0f574d65743b8d8a0a8615c6d9a5f2155ecf2301d41857f41dc563
|
4
|
+
data.tar.gz: 5807c1e203161f480470e8e1d89bd33389124d6ca85f20818d6a664b8d4ec311
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b0e500cbdd2298f8fd1cbbb381395c76196c11019748f79b8f4d69a13e65172541641ee76c4a2bfc80201834b26a033ab2a467a76a1b2c00b349e7b20160d16
|
7
|
+
data.tar.gz: e48917e9cce4c9fb3fc01fcd3bbedcdc87974ca4cf1ed7bfaa1f87533f1bc9272b1abaacd26fca2ef368d3dd19aa3724380c299bb7cffeb82b821597c29b6c10
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.38.0 (2023-03-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230307
|
10
|
+
|
3
11
|
### v0.37.0 (2023-02-19)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -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
|
@@ -1519,6 +1547,17 @@ module Google
|
|
1519
1547
|
# @return [Array<Google::Apis::StoragetransferV1::ErrorSummary>]
|
1520
1548
|
attr_accessor :error_breakdowns
|
1521
1549
|
|
1550
|
+
# Specifies the logging behavior for transfer operations. For cloud-to-cloud
|
1551
|
+
# transfers, logs are sent to Cloud Logging. See [Read transfer logs](https://
|
1552
|
+
# cloud.google.com/storage-transfer/docs/read-transfer-logs) for details. For
|
1553
|
+
# transfers to or from a POSIX file system, logs are stored in the Cloud Storage
|
1554
|
+
# bucket that is the source or sink of the transfer. See [Managing Transfer for
|
1555
|
+
# on-premises jobs] (https://cloud.google.com/storage-transfer/docs/managing-on-
|
1556
|
+
# prem-jobs#viewing-logs) for details.
|
1557
|
+
# Corresponds to the JSON property `loggingConfig`
|
1558
|
+
# @return [Google::Apis::StoragetransferV1::LoggingConfig]
|
1559
|
+
attr_accessor :logging_config
|
1560
|
+
|
1522
1561
|
# A globally unique ID assigned by the system.
|
1523
1562
|
# Corresponds to the JSON property `name`
|
1524
1563
|
# @return [String]
|
@@ -1571,6 +1610,7 @@ module Google
|
|
1571
1610
|
@counters = args[:counters] if args.key?(:counters)
|
1572
1611
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1573
1612
|
@error_breakdowns = args[:error_breakdowns] if args.key?(:error_breakdowns)
|
1613
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
1574
1614
|
@name = args[:name] if args.key?(:name)
|
1575
1615
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
1576
1616
|
@project_id = args[:project_id] if args.key?(:project_id)
|
@@ -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.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 = "
|
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
|
@@ -614,6 +616,8 @@ module Google
|
|
614
616
|
property :end_time, as: 'endTime'
|
615
617
|
collection :error_breakdowns, as: 'errorBreakdowns', class: Google::Apis::StoragetransferV1::ErrorSummary, decorator: Google::Apis::StoragetransferV1::ErrorSummary::Representation
|
616
618
|
|
619
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::StoragetransferV1::LoggingConfig, decorator: Google::Apis::StoragetransferV1::LoggingConfig::Representation
|
620
|
+
|
617
621
|
property :name, as: 'name'
|
618
622
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::StoragetransferV1::NotificationConfig, decorator: Google::Apis::StoragetransferV1::NotificationConfig::Representation
|
619
623
|
|
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.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-
|
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.
|
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: []
|