aws-sdk-datasync 1.102.0 → 1.104.0
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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +215 -786
- data/lib/aws-sdk-datasync/client_api.rb +33 -546
- data/lib/aws-sdk-datasync/types.rb +295 -1346
- data/lib/aws-sdk-datasync.rb +2 -2
- data/sig/client.rbs +49 -206
- data/sig/types.rbs +31 -321
- metadata +1 -1
@@ -10,84 +10,6 @@
|
|
10
10
|
module Aws::DataSync
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @!attribute [rw] server_configuration
|
14
|
-
# Specifies the server name and network port required to connect with
|
15
|
-
# the management interface of your on-premises storage system.
|
16
|
-
# @return [Types::DiscoveryServerConfiguration]
|
17
|
-
#
|
18
|
-
# @!attribute [rw] system_type
|
19
|
-
# Specifies the type of on-premises storage system that you want
|
20
|
-
# DataSync Discovery to collect information about.
|
21
|
-
#
|
22
|
-
# <note markdown="1"> DataSync Discovery currently supports NetApp Fabric-Attached Storage
|
23
|
-
# (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later.
|
24
|
-
#
|
25
|
-
# </note>
|
26
|
-
# @return [String]
|
27
|
-
#
|
28
|
-
# @!attribute [rw] agent_arns
|
29
|
-
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
30
|
-
# connects to and reads from your on-premises storage system's
|
31
|
-
# management interface. You can only specify one ARN.
|
32
|
-
# @return [Array<String>]
|
33
|
-
#
|
34
|
-
# @!attribute [rw] cloud_watch_log_group_arn
|
35
|
-
# Specifies the ARN of the Amazon CloudWatch log group for monitoring
|
36
|
-
# and logging discovery job events.
|
37
|
-
# @return [String]
|
38
|
-
#
|
39
|
-
# @!attribute [rw] tags
|
40
|
-
# Specifies labels that help you categorize, filter, and search for
|
41
|
-
# your Amazon Web Services resources. We recommend creating at least a
|
42
|
-
# name tag for your on-premises storage system.
|
43
|
-
# @return [Array<Types::TagListEntry>]
|
44
|
-
#
|
45
|
-
# @!attribute [rw] name
|
46
|
-
# Specifies a familiar name for your on-premises storage system.
|
47
|
-
# @return [String]
|
48
|
-
#
|
49
|
-
# @!attribute [rw] client_token
|
50
|
-
# Specifies a client token to make sure requests with this API
|
51
|
-
# operation are idempotent. If you don't specify a client token,
|
52
|
-
# DataSync generates one for you automatically.
|
53
|
-
#
|
54
|
-
# **A suitable default value is auto-generated.** You should normally
|
55
|
-
# not need to pass this option.
|
56
|
-
# @return [String]
|
57
|
-
#
|
58
|
-
# @!attribute [rw] credentials
|
59
|
-
# Specifies the user name and password for accessing your on-premises
|
60
|
-
# storage system's management interface.
|
61
|
-
# @return [Types::Credentials]
|
62
|
-
#
|
63
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/AddStorageSystemRequest AWS API Documentation
|
64
|
-
#
|
65
|
-
class AddStorageSystemRequest < Struct.new(
|
66
|
-
:server_configuration,
|
67
|
-
:system_type,
|
68
|
-
:agent_arns,
|
69
|
-
:cloud_watch_log_group_arn,
|
70
|
-
:tags,
|
71
|
-
:name,
|
72
|
-
:client_token,
|
73
|
-
:credentials)
|
74
|
-
SENSITIVE = []
|
75
|
-
include Aws::Structure
|
76
|
-
end
|
77
|
-
|
78
|
-
# @!attribute [rw] storage_system_arn
|
79
|
-
# The ARN of the on-premises storage system that you can use with
|
80
|
-
# DataSync Discovery.
|
81
|
-
# @return [String]
|
82
|
-
#
|
83
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/AddStorageSystemResponse AWS API Documentation
|
84
|
-
#
|
85
|
-
class AddStorageSystemResponse < Struct.new(
|
86
|
-
:storage_system_arn)
|
87
|
-
SENSITIVE = []
|
88
|
-
include Aws::Structure
|
89
|
-
end
|
90
|
-
|
91
13
|
# Represents a single entry in a list (or array) of DataSync agents when
|
92
14
|
# you call the [ListAgents][1] operation.
|
93
15
|
#
|
@@ -181,34 +103,35 @@ module Aws::DataSync
|
|
181
103
|
#
|
182
104
|
class CancelTaskExecutionResponse < Aws::EmptyStructure; end
|
183
105
|
|
184
|
-
#
|
185
|
-
#
|
106
|
+
# Specifies configuration information for a DataSync-managed secret,
|
107
|
+
# such as an authentication token or secret key that DataSync uses to
|
108
|
+
# access a specific storage location, with a customer-managed KMS key.
|
186
109
|
#
|
187
|
-
#
|
188
|
-
#
|
189
|
-
#
|
110
|
+
# <note markdown="1"> You can use either `CmkSecretConfig` or `CustomSecretConfig` to
|
111
|
+
# provide credentials for a `CreateLocation` request. Do not provide
|
112
|
+
# both parameters for the same request.
|
190
113
|
#
|
191
|
-
#
|
192
|
-
# The total amount of space available in a storage system resource.
|
193
|
-
# @return [Integer]
|
114
|
+
# </note>
|
194
115
|
#
|
195
|
-
# @!attribute [rw]
|
196
|
-
#
|
197
|
-
#
|
198
|
-
#
|
116
|
+
# @!attribute [rw] secret_arn
|
117
|
+
# Specifies the ARN for the DataSync-managed Secrets Manager secret
|
118
|
+
# that that is used to access a specific storage location. This
|
119
|
+
# property is generated by DataSync and is read-only. DataSync
|
120
|
+
# encrypts this secret with the KMS key that you specify for
|
121
|
+
# `KmsKeyArn`.
|
122
|
+
# @return [String]
|
199
123
|
#
|
200
|
-
# @!attribute [rw]
|
201
|
-
#
|
202
|
-
#
|
203
|
-
#
|
124
|
+
# @!attribute [rw] kms_key_arn
|
125
|
+
# Specifies the ARN for the customer-managed KMS key that DataSync
|
126
|
+
# uses to encrypt the DataSync-managed secret stored for `SecretArn`.
|
127
|
+
# DataSync provides this key to Secrets Manager.
|
128
|
+
# @return [String]
|
204
129
|
#
|
205
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/
|
130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CmkSecretConfig AWS API Documentation
|
206
131
|
#
|
207
|
-
class
|
208
|
-
:
|
209
|
-
:
|
210
|
-
:logical_used,
|
211
|
-
:cluster_cloud_storage_used)
|
132
|
+
class CmkSecretConfig < Struct.new(
|
133
|
+
:secret_arn,
|
134
|
+
:kms_key_arn)
|
212
135
|
SENSITIVE = []
|
213
136
|
include Aws::Structure
|
214
137
|
end
|
@@ -306,6 +229,13 @@ module Aws::DataSync
|
|
306
229
|
# @!attribute [rw] sas_configuration
|
307
230
|
# Specifies the SAS configuration that allows DataSync to access your
|
308
231
|
# Azure Blob Storage.
|
232
|
+
#
|
233
|
+
# <note markdown="1"> If you provide an authentication token using `SasConfiguration`, but
|
234
|
+
# do not provide secret configuration details using `CmkSecretConfig`
|
235
|
+
# or `CustomSecretConfig`, then DataSync stores the token using your
|
236
|
+
# Amazon Web Services account's secrets manager secret.
|
237
|
+
#
|
238
|
+
# </note>
|
309
239
|
# @return [Types::AzureBlobSasConfiguration]
|
310
240
|
#
|
311
241
|
# @!attribute [rw] blob_type
|
@@ -336,12 +266,20 @@ module Aws::DataSync
|
|
336
266
|
# @return [String]
|
337
267
|
#
|
338
268
|
# @!attribute [rw] agent_arns
|
339
|
-
# Specifies the Amazon Resource Name (ARN) of the DataSync
|
340
|
-
# can connect with your Azure Blob Storage container.
|
269
|
+
# (Optional) Specifies the Amazon Resource Name (ARN) of the DataSync
|
270
|
+
# agent that can connect with your Azure Blob Storage container. If
|
271
|
+
# you are setting up an agentless cross-cloud transfer, you do not
|
272
|
+
# need to specify a value for this parameter.
|
341
273
|
#
|
342
274
|
# You can specify more than one agent. For more information, see
|
343
275
|
# [Using multiple agents for your transfer][1].
|
344
276
|
#
|
277
|
+
# <note markdown="1"> Make sure you configure this parameter correctly when you first
|
278
|
+
# create your storage location. You cannot add or remove agents from a
|
279
|
+
# storage location after you create it.
|
280
|
+
#
|
281
|
+
# </note>
|
282
|
+
#
|
345
283
|
#
|
346
284
|
#
|
347
285
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
@@ -353,6 +291,44 @@ module Aws::DataSync
|
|
353
291
|
# name tag for your transfer location.
|
354
292
|
# @return [Array<Types::TagListEntry>]
|
355
293
|
#
|
294
|
+
# @!attribute [rw] cmk_secret_config
|
295
|
+
# Specifies configuration information for a DataSync-managed secret,
|
296
|
+
# which includes the authentication token that DataSync uses to access
|
297
|
+
# a specific AzureBlob storage location, with a customer-managed KMS
|
298
|
+
# key.
|
299
|
+
#
|
300
|
+
# When you include this paramater as part of a
|
301
|
+
# `CreateLocationAzureBlob` request, you provide only the KMS key ARN.
|
302
|
+
# DataSync uses this KMS key together with the authentication token
|
303
|
+
# you specify for `SasConfiguration` to create a DataSync-managed
|
304
|
+
# secret to store the location access credentials.
|
305
|
+
#
|
306
|
+
# Make sure the DataSync has permission to access the KMS key that you
|
307
|
+
# specify.
|
308
|
+
#
|
309
|
+
# <note markdown="1"> You can use either `CmkSecretConfig` (with `SasConfiguration`) or
|
310
|
+
# `CustomSecretConfig` (without `SasConfiguration`) to provide
|
311
|
+
# credentials for a `CreateLocationAzureBlob` request. Do not provide
|
312
|
+
# both parameters for the same request.
|
313
|
+
#
|
314
|
+
# </note>
|
315
|
+
# @return [Types::CmkSecretConfig]
|
316
|
+
#
|
317
|
+
# @!attribute [rw] custom_secret_config
|
318
|
+
# Specifies configuration information for a customer-managed Secrets
|
319
|
+
# Manager secret where the authentication token for an AzureBlob
|
320
|
+
# storage location is stored in plain text. This configuration
|
321
|
+
# includes the secret ARN, and the ARN for an IAM role that provides
|
322
|
+
# access to the secret.
|
323
|
+
#
|
324
|
+
# <note markdown="1"> You can use either `CmkSecretConfig` (with `SasConfiguration`) or
|
325
|
+
# `CustomSecretConfig` (without `SasConfiguration`) to provide
|
326
|
+
# credentials for a `CreateLocationAzureBlob` request. Do not provide
|
327
|
+
# both parameters for the same request.
|
328
|
+
#
|
329
|
+
# </note>
|
330
|
+
# @return [Types::CustomSecretConfig]
|
331
|
+
#
|
356
332
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationAzureBlobRequest AWS API Documentation
|
357
333
|
#
|
358
334
|
class CreateLocationAzureBlobRequest < Struct.new(
|
@@ -363,7 +339,9 @@ module Aws::DataSync
|
|
363
339
|
:access_tier,
|
364
340
|
:subdirectory,
|
365
341
|
:agent_arns,
|
366
|
-
:tags
|
342
|
+
:tags,
|
343
|
+
:cmk_secret_config,
|
344
|
+
:custom_secret_config)
|
367
345
|
SENSITIVE = []
|
368
346
|
include Aws::Structure
|
369
347
|
end
|
@@ -830,9 +808,7 @@ module Aws::DataSync
|
|
830
808
|
# @!attribute [rw] kerberos_keytab
|
831
809
|
# The Kerberos key table (keytab) that contains mappings between the
|
832
810
|
# defined Kerberos principal and the encrypted keys. You can load the
|
833
|
-
# keytab from a file by providing the file's address.
|
834
|
-
# using the CLI, it performs base64 encoding for you. Otherwise,
|
835
|
-
# provide the base64-encoded text.
|
811
|
+
# keytab from a file by providing the file's address.
|
836
812
|
#
|
837
813
|
# <note markdown="1"> If `KERBEROS` is specified for `AuthenticationType`, this parameter
|
838
814
|
# is required.
|
@@ -1005,8 +981,16 @@ module Aws::DataSync
|
|
1005
981
|
# @return [String]
|
1006
982
|
#
|
1007
983
|
# @!attribute [rw] agent_arns
|
1008
|
-
# Specifies the Amazon Resource Names (ARNs) of the
|
1009
|
-
# that can connect with your object storage system.
|
984
|
+
# (Optional) Specifies the Amazon Resource Names (ARNs) of the
|
985
|
+
# DataSync agents that can connect with your object storage system. If
|
986
|
+
# you are setting up an agentless cross-cloud transfer, you do not
|
987
|
+
# need to specify a value for this parameter.
|
988
|
+
#
|
989
|
+
# <note markdown="1"> Make sure you configure this parameter correctly when you first
|
990
|
+
# create your storage location. You cannot add or remove agents from a
|
991
|
+
# storage location after you create it.
|
992
|
+
#
|
993
|
+
# </note>
|
1010
994
|
# @return [Array<String>]
|
1011
995
|
#
|
1012
996
|
# @!attribute [rw] tags
|
@@ -1042,6 +1026,43 @@ module Aws::DataSync
|
|
1042
1026
|
# To use this parameter, configure `ServerProtocol` to `HTTPS`.
|
1043
1027
|
# @return [String]
|
1044
1028
|
#
|
1029
|
+
# @!attribute [rw] cmk_secret_config
|
1030
|
+
# Specifies configuration information for a DataSync-managed secret,
|
1031
|
+
# which includes the `SecretKey` that DataSync uses to access a
|
1032
|
+
# specific object storage location, with a customer-managed KMS key.
|
1033
|
+
#
|
1034
|
+
# When you include this paramater as part of a
|
1035
|
+
# `CreateLocationObjectStorage` request, you provide only the KMS key
|
1036
|
+
# ARN. DataSync uses this KMS key together with the value you specify
|
1037
|
+
# for the `SecretKey` parameter to create a DataSync-managed secret to
|
1038
|
+
# store the location access credentials.
|
1039
|
+
#
|
1040
|
+
# Make sure the DataSync has permission to access the KMS key that you
|
1041
|
+
# specify.
|
1042
|
+
#
|
1043
|
+
# <note markdown="1"> You can use either `CmkSecretConfig` (with `SecretKey`) or
|
1044
|
+
# `CustomSecretConfig` (without `SecretKey`) to provide credentials
|
1045
|
+
# for a `CreateLocationObjectStorage` request. Do not provide both
|
1046
|
+
# parameters for the same request.
|
1047
|
+
#
|
1048
|
+
# </note>
|
1049
|
+
# @return [Types::CmkSecretConfig]
|
1050
|
+
#
|
1051
|
+
# @!attribute [rw] custom_secret_config
|
1052
|
+
# Specifies configuration information for a customer-managed Secrets
|
1053
|
+
# Manager secret where the secret key for a specific object storage
|
1054
|
+
# location is stored in plain text. This configuration includes the
|
1055
|
+
# secret ARN, and the ARN for an IAM role that provides access to the
|
1056
|
+
# secret.
|
1057
|
+
#
|
1058
|
+
# <note markdown="1"> You can use either `CmkSecretConfig` (with `SecretKey`) or
|
1059
|
+
# `CustomSecretConfig` (without `SecretKey`) to provide credentials
|
1060
|
+
# for a `CreateLocationObjectStorage` request. Do not provide both
|
1061
|
+
# parameters for the same request.
|
1062
|
+
#
|
1063
|
+
# </note>
|
1064
|
+
# @return [Types::CustomSecretConfig]
|
1065
|
+
#
|
1045
1066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationObjectStorageRequest AWS API Documentation
|
1046
1067
|
#
|
1047
1068
|
class CreateLocationObjectStorageRequest < Struct.new(
|
@@ -1054,7 +1075,9 @@ module Aws::DataSync
|
|
1054
1075
|
:secret_key,
|
1055
1076
|
:agent_arns,
|
1056
1077
|
:tags,
|
1057
|
-
:server_certificate
|
1078
|
+
:server_certificate,
|
1079
|
+
:cmk_secret_config,
|
1080
|
+
:custom_secret_config)
|
1058
1081
|
SENSITIVE = [:secret_key]
|
1059
1082
|
include Aws::Structure
|
1060
1083
|
end
|
@@ -1303,9 +1326,6 @@ module Aws::DataSync
|
|
1303
1326
|
# Specifies your Kerberos key table (keytab) file, which includes
|
1304
1327
|
# mappings between your Kerberos principal and encryption keys.
|
1305
1328
|
#
|
1306
|
-
# The file must be base64 encoded. If you're using the CLI, the
|
1307
|
-
# encoding is done for you.
|
1308
|
-
#
|
1309
1329
|
# To avoid task execution errors, make sure that the Kerberos
|
1310
1330
|
# principal that you use to create the keytab file matches exactly
|
1311
1331
|
# what you specify for `KerberosPrincipal`.
|
@@ -1460,7 +1480,9 @@ module Aws::DataSync
|
|
1460
1480
|
# higher performance than Basic mode. Enhanced mode tasks optimize
|
1461
1481
|
# the data transfer process by listing, preparing, transferring, and
|
1462
1482
|
# verifying data in parallel. Enhanced mode is currently available
|
1463
|
-
# for transfers between Amazon S3 locations
|
1483
|
+
# for transfers between Amazon S3 locations, transfers between Azure
|
1484
|
+
# Blob and Amazon S3 without an agent, and transfers between other
|
1485
|
+
# clouds and Amazon S3 without an agent.
|
1464
1486
|
#
|
1465
1487
|
# <note markdown="1"> To create an Enhanced mode task, the IAM role that you use to call
|
1466
1488
|
# the `CreateTask` operation must have the
|
@@ -1516,34 +1538,32 @@ module Aws::DataSync
|
|
1516
1538
|
include Aws::Structure
|
1517
1539
|
end
|
1518
1540
|
|
1519
|
-
#
|
1520
|
-
#
|
1521
|
-
#
|
1522
|
-
#
|
1523
|
-
# For more information, see [Accessing your on-premises storage
|
1524
|
-
# system][2].
|
1541
|
+
# Specifies configuration information for a customer-managed Secrets
|
1542
|
+
# Manager secret where a storage location authentication token or secret
|
1543
|
+
# key is stored in plain text. This configuration includes the secret
|
1544
|
+
# ARN, and the ARN for an IAM role that provides access to the secret.
|
1525
1545
|
#
|
1546
|
+
# <note markdown="1"> You can use either `CmkSecretConfig` or `CustomSecretConfig` to
|
1547
|
+
# provide credentials for a `CreateLocation` request. Do not provide
|
1548
|
+
# both parameters for the same request.
|
1526
1549
|
#
|
1550
|
+
# </note>
|
1527
1551
|
#
|
1528
|
-
# [
|
1529
|
-
#
|
1530
|
-
#
|
1531
|
-
# @!attribute [rw] username
|
1532
|
-
# Specifies the user name for your storage system's management
|
1533
|
-
# interface.
|
1552
|
+
# @!attribute [rw] secret_arn
|
1553
|
+
# Specifies the ARN for an Secrets Manager secret.
|
1534
1554
|
# @return [String]
|
1535
1555
|
#
|
1536
|
-
# @!attribute [rw]
|
1537
|
-
# Specifies the
|
1538
|
-
#
|
1556
|
+
# @!attribute [rw] secret_access_role_arn
|
1557
|
+
# Specifies the ARN for the Identity and Access Management role that
|
1558
|
+
# DataSync uses to access the secret specified for `SecretArn`.
|
1539
1559
|
# @return [String]
|
1540
1560
|
#
|
1541
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/
|
1561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CustomSecretConfig AWS API Documentation
|
1542
1562
|
#
|
1543
|
-
class
|
1544
|
-
:
|
1545
|
-
:
|
1546
|
-
SENSITIVE = [
|
1563
|
+
class CustomSecretConfig < Struct.new(
|
1564
|
+
:secret_arn,
|
1565
|
+
:secret_access_role_arn)
|
1566
|
+
SENSITIVE = []
|
1547
1567
|
include Aws::Structure
|
1548
1568
|
end
|
1549
1569
|
|
@@ -1695,62 +1715,6 @@ module Aws::DataSync
|
|
1695
1715
|
include Aws::Structure
|
1696
1716
|
end
|
1697
1717
|
|
1698
|
-
# @!attribute [rw] discovery_job_arn
|
1699
|
-
# Specifies the Amazon Resource Name (ARN) of the discovery job that
|
1700
|
-
# you want information about.
|
1701
|
-
# @return [String]
|
1702
|
-
#
|
1703
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeDiscoveryJobRequest AWS API Documentation
|
1704
|
-
#
|
1705
|
-
class DescribeDiscoveryJobRequest < Struct.new(
|
1706
|
-
:discovery_job_arn)
|
1707
|
-
SENSITIVE = []
|
1708
|
-
include Aws::Structure
|
1709
|
-
end
|
1710
|
-
|
1711
|
-
# @!attribute [rw] storage_system_arn
|
1712
|
-
# The ARN of the on-premises storage system you're running the
|
1713
|
-
# discovery job on.
|
1714
|
-
# @return [String]
|
1715
|
-
#
|
1716
|
-
# @!attribute [rw] discovery_job_arn
|
1717
|
-
# The ARN of the discovery job.
|
1718
|
-
# @return [String]
|
1719
|
-
#
|
1720
|
-
# @!attribute [rw] collection_duration_minutes
|
1721
|
-
# The number of minutes that the discovery job runs.
|
1722
|
-
# @return [Integer]
|
1723
|
-
#
|
1724
|
-
# @!attribute [rw] status
|
1725
|
-
# Indicates the status of a discovery job. For more information, see
|
1726
|
-
# [Discovery job statuses][1].
|
1727
|
-
#
|
1728
|
-
#
|
1729
|
-
#
|
1730
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#discovery-job-statuses-table
|
1731
|
-
# @return [String]
|
1732
|
-
#
|
1733
|
-
# @!attribute [rw] job_start_time
|
1734
|
-
# The time when the discovery job started.
|
1735
|
-
# @return [Time]
|
1736
|
-
#
|
1737
|
-
# @!attribute [rw] job_end_time
|
1738
|
-
# The time when the discovery job ended.
|
1739
|
-
# @return [Time]
|
1740
|
-
#
|
1741
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeDiscoveryJobResponse AWS API Documentation
|
1742
|
-
#
|
1743
|
-
class DescribeDiscoveryJobResponse < Struct.new(
|
1744
|
-
:storage_system_arn,
|
1745
|
-
:discovery_job_arn,
|
1746
|
-
:collection_duration_minutes,
|
1747
|
-
:status,
|
1748
|
-
:job_start_time,
|
1749
|
-
:job_end_time)
|
1750
|
-
SENSITIVE = []
|
1751
|
-
include Aws::Structure
|
1752
|
-
end
|
1753
|
-
|
1754
1718
|
# @!attribute [rw] location_arn
|
1755
1719
|
# Specifies the Amazon Resource Name (ARN) of your Azure Blob Storage
|
1756
1720
|
# transfer location.
|
@@ -1810,6 +1774,25 @@ module Aws::DataSync
|
|
1810
1774
|
# The time that your Azure Blob Storage transfer location was created.
|
1811
1775
|
# @return [Time]
|
1812
1776
|
#
|
1777
|
+
# @!attribute [rw] managed_secret_config
|
1778
|
+
# Describes configuration information for a DataSync-managed secret,
|
1779
|
+
# such as an authentication token that DataSync uses to access a
|
1780
|
+
# specific storage location. DataSync uses the default Amazon Web
|
1781
|
+
# Services-managed KMS key to encrypt this secret in Secrets Manager.
|
1782
|
+
# @return [Types::ManagedSecretConfig]
|
1783
|
+
#
|
1784
|
+
# @!attribute [rw] cmk_secret_config
|
1785
|
+
# Describes configuration information for a DataSync-managed secret,
|
1786
|
+
# such as an authentication token that DataSync uses to access a
|
1787
|
+
# specific storage location, with a customer-managed KMS key.
|
1788
|
+
# @return [Types::CmkSecretConfig]
|
1789
|
+
#
|
1790
|
+
# @!attribute [rw] custom_secret_config
|
1791
|
+
# Describes configuration information for a customer-managed secret,
|
1792
|
+
# such as an authentication token that DataSync uses to access a
|
1793
|
+
# specific storage location, with a customer-managed KMS key.
|
1794
|
+
# @return [Types::CustomSecretConfig]
|
1795
|
+
#
|
1813
1796
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationAzureBlobResponse AWS API Documentation
|
1814
1797
|
#
|
1815
1798
|
class DescribeLocationAzureBlobResponse < Struct.new(
|
@@ -1819,7 +1802,10 @@ module Aws::DataSync
|
|
1819
1802
|
:blob_type,
|
1820
1803
|
:access_tier,
|
1821
1804
|
:agent_arns,
|
1822
|
-
:creation_time
|
1805
|
+
:creation_time,
|
1806
|
+
:managed_secret_config,
|
1807
|
+
:cmk_secret_config,
|
1808
|
+
:custom_secret_config)
|
1823
1809
|
SENSITIVE = []
|
1824
1810
|
include Aws::Structure
|
1825
1811
|
end
|
@@ -2309,6 +2295,28 @@ module Aws::DataSync
|
|
2309
2295
|
# certificate authority (CA).
|
2310
2296
|
# @return [String]
|
2311
2297
|
#
|
2298
|
+
# @!attribute [rw] managed_secret_config
|
2299
|
+
# Describes configuration information for a DataSync-managed secret,
|
2300
|
+
# such as an authentication token or set of credentials that DataSync
|
2301
|
+
# uses to access a specific transfer location. DataSync uses the
|
2302
|
+
# default Amazon Web Services-managed KMS key to encrypt this secret
|
2303
|
+
# in Secrets Manager.
|
2304
|
+
# @return [Types::ManagedSecretConfig]
|
2305
|
+
#
|
2306
|
+
# @!attribute [rw] cmk_secret_config
|
2307
|
+
# Describes configuration information for a DataSync-managed secret,
|
2308
|
+
# such as an authentication token or set of credentials that DataSync
|
2309
|
+
# uses to access a specific transfer location, and a customer-managed
|
2310
|
+
# KMS key.
|
2311
|
+
# @return [Types::CmkSecretConfig]
|
2312
|
+
#
|
2313
|
+
# @!attribute [rw] custom_secret_config
|
2314
|
+
# Describes configuration information for a customer-managed secret,
|
2315
|
+
# such as an authentication token or set of credentials that DataSync
|
2316
|
+
# uses to access a specific transfer location, and a customer-managed
|
2317
|
+
# KMS key.
|
2318
|
+
# @return [Types::CustomSecretConfig]
|
2319
|
+
#
|
2312
2320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationObjectStorageResponse AWS API Documentation
|
2313
2321
|
#
|
2314
2322
|
class DescribeLocationObjectStorageResponse < Struct.new(
|
@@ -2319,7 +2327,10 @@ module Aws::DataSync
|
|
2319
2327
|
:server_protocol,
|
2320
2328
|
:agent_arns,
|
2321
2329
|
:creation_time,
|
2322
|
-
:server_certificate
|
2330
|
+
:server_certificate,
|
2331
|
+
:managed_secret_config,
|
2332
|
+
:cmk_secret_config,
|
2333
|
+
:custom_secret_config)
|
2323
2334
|
SENSITIVE = []
|
2324
2335
|
include Aws::Structure
|
2325
2336
|
end
|
@@ -2485,239 +2496,6 @@ module Aws::DataSync
|
|
2485
2496
|
include Aws::Structure
|
2486
2497
|
end
|
2487
2498
|
|
2488
|
-
# @!attribute [rw] storage_system_arn
|
2489
|
-
# Specifies the Amazon Resource Name (ARN) of an on-premises storage
|
2490
|
-
# system that you're using with DataSync Discovery.
|
2491
|
-
# @return [String]
|
2492
|
-
#
|
2493
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemRequest AWS API Documentation
|
2494
|
-
#
|
2495
|
-
class DescribeStorageSystemRequest < Struct.new(
|
2496
|
-
:storage_system_arn)
|
2497
|
-
SENSITIVE = []
|
2498
|
-
include Aws::Structure
|
2499
|
-
end
|
2500
|
-
|
2501
|
-
# @!attribute [rw] discovery_job_arn
|
2502
|
-
# Specifies the Amazon Resource Name (ARN) of the discovery job that
|
2503
|
-
# collects information about your on-premises storage system.
|
2504
|
-
# @return [String]
|
2505
|
-
#
|
2506
|
-
# @!attribute [rw] resource_type
|
2507
|
-
# Specifies the kind of storage system resource that you want
|
2508
|
-
# information about.
|
2509
|
-
# @return [String]
|
2510
|
-
#
|
2511
|
-
# @!attribute [rw] resource_id
|
2512
|
-
# Specifies the universally unique identifier (UUID) of the storage
|
2513
|
-
# system resource that you want information about.
|
2514
|
-
# @return [String]
|
2515
|
-
#
|
2516
|
-
# @!attribute [rw] start_time
|
2517
|
-
# Specifies a time within the total duration that the discovery job
|
2518
|
-
# ran. To see information gathered during a certain time frame, use
|
2519
|
-
# this parameter with `EndTime`.
|
2520
|
-
# @return [Time]
|
2521
|
-
#
|
2522
|
-
# @!attribute [rw] end_time
|
2523
|
-
# Specifies a time within the total duration that the discovery job
|
2524
|
-
# ran. To see information gathered during a certain time frame, use
|
2525
|
-
# this parameter with `StartTime`.
|
2526
|
-
# @return [Time]
|
2527
|
-
#
|
2528
|
-
# @!attribute [rw] max_results
|
2529
|
-
# Specifies how many results that you want in the response.
|
2530
|
-
# @return [Integer]
|
2531
|
-
#
|
2532
|
-
# @!attribute [rw] next_token
|
2533
|
-
# Specifies an opaque string that indicates the position to begin the
|
2534
|
-
# next list of results in the response.
|
2535
|
-
# @return [String]
|
2536
|
-
#
|
2537
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResourceMetricsRequest AWS API Documentation
|
2538
|
-
#
|
2539
|
-
class DescribeStorageSystemResourceMetricsRequest < Struct.new(
|
2540
|
-
:discovery_job_arn,
|
2541
|
-
:resource_type,
|
2542
|
-
:resource_id,
|
2543
|
-
:start_time,
|
2544
|
-
:end_time,
|
2545
|
-
:max_results,
|
2546
|
-
:next_token)
|
2547
|
-
SENSITIVE = []
|
2548
|
-
include Aws::Structure
|
2549
|
-
end
|
2550
|
-
|
2551
|
-
# @!attribute [rw] metrics
|
2552
|
-
# The details that your discovery job collected about your storage
|
2553
|
-
# system resource.
|
2554
|
-
# @return [Array<Types::ResourceMetrics>]
|
2555
|
-
#
|
2556
|
-
# @!attribute [rw] next_token
|
2557
|
-
# The opaque string that indicates the position to begin the next list
|
2558
|
-
# of results in the response.
|
2559
|
-
# @return [String]
|
2560
|
-
#
|
2561
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResourceMetricsResponse AWS API Documentation
|
2562
|
-
#
|
2563
|
-
class DescribeStorageSystemResourceMetricsResponse < Struct.new(
|
2564
|
-
:metrics,
|
2565
|
-
:next_token)
|
2566
|
-
SENSITIVE = []
|
2567
|
-
include Aws::Structure
|
2568
|
-
end
|
2569
|
-
|
2570
|
-
# @!attribute [rw] discovery_job_arn
|
2571
|
-
# Specifies the Amazon Resource Name (ARN) of the discovery job
|
2572
|
-
# that's collecting data from your on-premises storage system.
|
2573
|
-
# @return [String]
|
2574
|
-
#
|
2575
|
-
# @!attribute [rw] resource_type
|
2576
|
-
# Specifies what kind of storage system resources that you want
|
2577
|
-
# information about.
|
2578
|
-
# @return [String]
|
2579
|
-
#
|
2580
|
-
# @!attribute [rw] resource_ids
|
2581
|
-
# Specifies the universally unique identifiers (UUIDs) of the storage
|
2582
|
-
# system resources that you want information about. You can't use
|
2583
|
-
# this parameter in combination with the `Filter` parameter.
|
2584
|
-
# @return [Array<String>]
|
2585
|
-
#
|
2586
|
-
# @!attribute [rw] filter
|
2587
|
-
# Filters the storage system resources that you want returned. For
|
2588
|
-
# example, this might be volumes associated with a specific storage
|
2589
|
-
# virtual machine (SVM).
|
2590
|
-
# @return [Hash<String,Array<String>>]
|
2591
|
-
#
|
2592
|
-
# @!attribute [rw] max_results
|
2593
|
-
# Specifies the maximum number of storage system resources that you
|
2594
|
-
# want to list in a response.
|
2595
|
-
# @return [Integer]
|
2596
|
-
#
|
2597
|
-
# @!attribute [rw] next_token
|
2598
|
-
# Specifies an opaque string that indicates the position to begin the
|
2599
|
-
# next list of results in the response.
|
2600
|
-
# @return [String]
|
2601
|
-
#
|
2602
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResourcesRequest AWS API Documentation
|
2603
|
-
#
|
2604
|
-
class DescribeStorageSystemResourcesRequest < Struct.new(
|
2605
|
-
:discovery_job_arn,
|
2606
|
-
:resource_type,
|
2607
|
-
:resource_ids,
|
2608
|
-
:filter,
|
2609
|
-
:max_results,
|
2610
|
-
:next_token)
|
2611
|
-
SENSITIVE = []
|
2612
|
-
include Aws::Structure
|
2613
|
-
end
|
2614
|
-
|
2615
|
-
# @!attribute [rw] resource_details
|
2616
|
-
# The information collected about your storage system's resources. A
|
2617
|
-
# response can also include Amazon Web Services storage service
|
2618
|
-
# recommendations.
|
2619
|
-
#
|
2620
|
-
# For more information, see [storage resource information][1]
|
2621
|
-
# collected by and [recommendations][2] provided by DataSync
|
2622
|
-
# Discovery.
|
2623
|
-
#
|
2624
|
-
#
|
2625
|
-
#
|
2626
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-findings.html
|
2627
|
-
# [2]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
|
2628
|
-
# @return [Types::ResourceDetails]
|
2629
|
-
#
|
2630
|
-
# @!attribute [rw] next_token
|
2631
|
-
# The opaque string that indicates the position to begin the next list
|
2632
|
-
# of results in the response.
|
2633
|
-
# @return [String]
|
2634
|
-
#
|
2635
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResourcesResponse AWS API Documentation
|
2636
|
-
#
|
2637
|
-
class DescribeStorageSystemResourcesResponse < Struct.new(
|
2638
|
-
:resource_details,
|
2639
|
-
:next_token)
|
2640
|
-
SENSITIVE = []
|
2641
|
-
include Aws::Structure
|
2642
|
-
end
|
2643
|
-
|
2644
|
-
# @!attribute [rw] storage_system_arn
|
2645
|
-
# The ARN of the on-premises storage system that the discovery job
|
2646
|
-
# looked at.
|
2647
|
-
# @return [String]
|
2648
|
-
#
|
2649
|
-
# @!attribute [rw] server_configuration
|
2650
|
-
# The server name and network port required to connect with your
|
2651
|
-
# on-premises storage system's management interface.
|
2652
|
-
# @return [Types::DiscoveryServerConfiguration]
|
2653
|
-
#
|
2654
|
-
# @!attribute [rw] system_type
|
2655
|
-
# The type of on-premises storage system.
|
2656
|
-
#
|
2657
|
-
# <note markdown="1"> DataSync Discovery currently only supports NetApp Fabric-Attached
|
2658
|
-
# Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or
|
2659
|
-
# later.
|
2660
|
-
#
|
2661
|
-
# </note>
|
2662
|
-
# @return [String]
|
2663
|
-
#
|
2664
|
-
# @!attribute [rw] agent_arns
|
2665
|
-
# The ARN of the DataSync agent that connects to and reads from your
|
2666
|
-
# on-premises storage system.
|
2667
|
-
# @return [Array<String>]
|
2668
|
-
#
|
2669
|
-
# @!attribute [rw] name
|
2670
|
-
# The name that you gave your on-premises storage system when adding
|
2671
|
-
# it to DataSync Discovery.
|
2672
|
-
# @return [String]
|
2673
|
-
#
|
2674
|
-
# @!attribute [rw] error_message
|
2675
|
-
# Describes the connectivity error that the DataSync agent is
|
2676
|
-
# encountering with your on-premises storage system.
|
2677
|
-
# @return [String]
|
2678
|
-
#
|
2679
|
-
# @!attribute [rw] connectivity_status
|
2680
|
-
# Indicates whether your DataSync agent can connect to your
|
2681
|
-
# on-premises storage system.
|
2682
|
-
# @return [String]
|
2683
|
-
#
|
2684
|
-
# @!attribute [rw] cloud_watch_log_group_arn
|
2685
|
-
# The ARN of the Amazon CloudWatch log group that's used to monitor
|
2686
|
-
# and log discovery job events.
|
2687
|
-
# @return [String]
|
2688
|
-
#
|
2689
|
-
# @!attribute [rw] creation_time
|
2690
|
-
# The time when you added the on-premises storage system to DataSync
|
2691
|
-
# Discovery.
|
2692
|
-
# @return [Time]
|
2693
|
-
#
|
2694
|
-
# @!attribute [rw] secrets_manager_arn
|
2695
|
-
# The ARN of the secret that stores your on-premises storage system's
|
2696
|
-
# credentials. DataSync Discovery stores these credentials in [Secrets
|
2697
|
-
# Manager][1].
|
2698
|
-
#
|
2699
|
-
#
|
2700
|
-
#
|
2701
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-configure-storage.html#discovery-add-storage
|
2702
|
-
# @return [String]
|
2703
|
-
#
|
2704
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResponse AWS API Documentation
|
2705
|
-
#
|
2706
|
-
class DescribeStorageSystemResponse < Struct.new(
|
2707
|
-
:storage_system_arn,
|
2708
|
-
:server_configuration,
|
2709
|
-
:system_type,
|
2710
|
-
:agent_arns,
|
2711
|
-
:name,
|
2712
|
-
:error_message,
|
2713
|
-
:connectivity_status,
|
2714
|
-
:cloud_watch_log_group_arn,
|
2715
|
-
:creation_time,
|
2716
|
-
:secrets_manager_arn)
|
2717
|
-
SENSITIVE = []
|
2718
|
-
include Aws::Structure
|
2719
|
-
end
|
2720
|
-
|
2721
2499
|
# DescribeTaskExecutionRequest
|
2722
2500
|
#
|
2723
2501
|
# @!attribute [rw] task_execution_arn
|
@@ -2800,7 +2578,11 @@ module Aws::DataSync
|
|
2800
2578
|
# @return [Types::ManifestConfig]
|
2801
2579
|
#
|
2802
2580
|
# @!attribute [rw] start_time
|
2803
|
-
# The time
|
2581
|
+
# The time that DataSync sends the request to start the task
|
2582
|
+
# execution. For non-queued tasks, `LaunchTime` and `StartTime` are
|
2583
|
+
# typically the same. For queued tasks, `LaunchTime` is typically
|
2584
|
+
# later than `StartTime` because previously queued tasks must finish
|
2585
|
+
# running before newer tasks can begin.
|
2804
2586
|
# @return [Time]
|
2805
2587
|
#
|
2806
2588
|
# @!attribute [rw] estimated_files_to_transfer
|
@@ -2999,6 +2781,18 @@ module Aws::DataSync
|
|
2999
2781
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html
|
3000
2782
|
# @return [Types::TaskExecutionFilesFailedDetail]
|
3001
2783
|
#
|
2784
|
+
# @!attribute [rw] launch_time
|
2785
|
+
# The time that the task execution actually begins. For non-queued
|
2786
|
+
# tasks, `LaunchTime` and `StartTime` are typically the same. For
|
2787
|
+
# queued tasks, `LaunchTime` is typically later than `StartTime`
|
2788
|
+
# because previously queued tasks must finish running before newer
|
2789
|
+
# tasks can begin.
|
2790
|
+
# @return [Time]
|
2791
|
+
#
|
2792
|
+
# @!attribute [rw] end_time
|
2793
|
+
# The time that the transfer task ends.
|
2794
|
+
# @return [Time]
|
2795
|
+
#
|
3002
2796
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeTaskExecutionResponse AWS API Documentation
|
3003
2797
|
#
|
3004
2798
|
class DescribeTaskExecutionResponse < Struct.new(
|
@@ -3025,7 +2819,9 @@ module Aws::DataSync
|
|
3025
2819
|
:task_mode,
|
3026
2820
|
:files_prepared,
|
3027
2821
|
:files_listed,
|
3028
|
-
:files_failed
|
2822
|
+
:files_failed,
|
2823
|
+
:launch_time,
|
2824
|
+
:end_time)
|
3029
2825
|
SENSITIVE = []
|
3030
2826
|
include Aws::Structure
|
3031
2827
|
end
|
@@ -3231,54 +3027,8 @@ module Aws::DataSync
|
|
3231
3027
|
include Aws::Structure
|
3232
3028
|
end
|
3233
3029
|
|
3234
|
-
# The
|
3235
|
-
#
|
3236
|
-
# @!attribute [rw] discovery_job_arn
|
3237
|
-
# The Amazon Resource Name (ARN) of a discovery job.
|
3238
|
-
# @return [String]
|
3239
|
-
#
|
3240
|
-
# @!attribute [rw] status
|
3241
|
-
# The status of a discovery job. For more information, see [Discovery
|
3242
|
-
# job statuses][1].
|
3243
|
-
#
|
3244
|
-
#
|
3245
|
-
#
|
3246
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#discovery-job-statuses-table
|
3247
|
-
# @return [String]
|
3248
|
-
#
|
3249
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DiscoveryJobListEntry AWS API Documentation
|
3250
|
-
#
|
3251
|
-
class DiscoveryJobListEntry < Struct.new(
|
3252
|
-
:discovery_job_arn,
|
3253
|
-
:status)
|
3254
|
-
SENSITIVE = []
|
3255
|
-
include Aws::Structure
|
3256
|
-
end
|
3257
|
-
|
3258
|
-
# The network settings that DataSync Discovery uses to connect with your
|
3259
|
-
# on-premises storage system's management interface.
|
3260
|
-
#
|
3261
|
-
# @!attribute [rw] server_hostname
|
3262
|
-
# The domain name or IP address of your storage system's management
|
3263
|
-
# interface.
|
3264
|
-
# @return [String]
|
3265
|
-
#
|
3266
|
-
# @!attribute [rw] server_port
|
3267
|
-
# The network port for accessing the storage system's management
|
3268
|
-
# interface.
|
3269
|
-
# @return [Integer]
|
3270
|
-
#
|
3271
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DiscoveryServerConfiguration AWS API Documentation
|
3272
|
-
#
|
3273
|
-
class DiscoveryServerConfiguration < Struct.new(
|
3274
|
-
:server_hostname,
|
3275
|
-
:server_port)
|
3276
|
-
SENSITIVE = []
|
3277
|
-
include Aws::Structure
|
3278
|
-
end
|
3279
|
-
|
3280
|
-
# The subnet and security groups that DataSync uses to connect to one of
|
3281
|
-
# your Amazon EFS file system's [mount targets][1].
|
3030
|
+
# The subnet and security groups that DataSync uses to connect to one of
|
3031
|
+
# your Amazon EFS file system's [mount targets][1].
|
3282
3032
|
#
|
3283
3033
|
#
|
3284
3034
|
#
|
@@ -3517,35 +3267,6 @@ module Aws::DataSync
|
|
3517
3267
|
include Aws::Structure
|
3518
3268
|
end
|
3519
3269
|
|
3520
|
-
# @!attribute [rw] discovery_job_arn
|
3521
|
-
# Specifies the Amazon Resource Name (ARN) of the discovery job that
|
3522
|
-
# collects information about your on-premises storage system.
|
3523
|
-
# @return [String]
|
3524
|
-
#
|
3525
|
-
# @!attribute [rw] resource_ids
|
3526
|
-
# Specifies the universally unique identifiers (UUIDs) of the
|
3527
|
-
# resources in your storage system that you want recommendations on.
|
3528
|
-
# @return [Array<String>]
|
3529
|
-
#
|
3530
|
-
# @!attribute [rw] resource_type
|
3531
|
-
# Specifies the type of resource in your storage system that you want
|
3532
|
-
# recommendations on.
|
3533
|
-
# @return [String]
|
3534
|
-
#
|
3535
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/GenerateRecommendationsRequest AWS API Documentation
|
3536
|
-
#
|
3537
|
-
class GenerateRecommendationsRequest < Struct.new(
|
3538
|
-
:discovery_job_arn,
|
3539
|
-
:resource_ids,
|
3540
|
-
:resource_type)
|
3541
|
-
SENSITIVE = []
|
3542
|
-
include Aws::Structure
|
3543
|
-
end
|
3544
|
-
|
3545
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/GenerateRecommendationsResponse AWS API Documentation
|
3546
|
-
#
|
3547
|
-
class GenerateRecommendationsResponse < Aws::EmptyStructure; end
|
3548
|
-
|
3549
3270
|
# The NameNode of the Hadoop Distributed File System (HDFS). The
|
3550
3271
|
# NameNode manages the file system's namespace. The NameNode performs
|
3551
3272
|
# operations such as opening, closing, and renaming files and
|
@@ -3572,37 +3293,6 @@ module Aws::DataSync
|
|
3572
3293
|
include Aws::Structure
|
3573
3294
|
end
|
3574
3295
|
|
3575
|
-
# The IOPS peaks for an on-premises storage system resource. Each data
|
3576
|
-
# point represents the 95th percentile peak value during a 1-hour
|
3577
|
-
# interval.
|
3578
|
-
#
|
3579
|
-
# @!attribute [rw] read
|
3580
|
-
# Peak IOPS related to read operations.
|
3581
|
-
# @return [Float]
|
3582
|
-
#
|
3583
|
-
# @!attribute [rw] write
|
3584
|
-
# Peak IOPS related to write operations.
|
3585
|
-
# @return [Float]
|
3586
|
-
#
|
3587
|
-
# @!attribute [rw] other
|
3588
|
-
# Peak IOPS unrelated to read and write operations.
|
3589
|
-
# @return [Float]
|
3590
|
-
#
|
3591
|
-
# @!attribute [rw] total
|
3592
|
-
# Peak total IOPS on your on-premises storage system resource.
|
3593
|
-
# @return [Float]
|
3594
|
-
#
|
3595
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/IOPS AWS API Documentation
|
3596
|
-
#
|
3597
|
-
class IOPS < Struct.new(
|
3598
|
-
:read,
|
3599
|
-
:write,
|
3600
|
-
:other,
|
3601
|
-
:total)
|
3602
|
-
SENSITIVE = []
|
3603
|
-
include Aws::Structure
|
3604
|
-
end
|
3605
|
-
|
3606
3296
|
# This exception is thrown when an error occurs in the DataSync service.
|
3607
3297
|
#
|
3608
3298
|
# @!attribute [rw] message
|
@@ -3641,32 +3331,6 @@ module Aws::DataSync
|
|
3641
3331
|
include Aws::Structure
|
3642
3332
|
end
|
3643
3333
|
|
3644
|
-
# The latency peaks for an on-premises storage system resource. Each
|
3645
|
-
# data point represents the 95th percentile peak value during a 1-hour
|
3646
|
-
# interval.
|
3647
|
-
#
|
3648
|
-
# @!attribute [rw] read
|
3649
|
-
# Peak latency for read operations.
|
3650
|
-
# @return [Float]
|
3651
|
-
#
|
3652
|
-
# @!attribute [rw] write
|
3653
|
-
# Peak latency for write operations.
|
3654
|
-
# @return [Float]
|
3655
|
-
#
|
3656
|
-
# @!attribute [rw] other
|
3657
|
-
# Peak latency for operations unrelated to read and write operations.
|
3658
|
-
# @return [Float]
|
3659
|
-
#
|
3660
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Latency AWS API Documentation
|
3661
|
-
#
|
3662
|
-
class Latency < Struct.new(
|
3663
|
-
:read,
|
3664
|
-
:write,
|
3665
|
-
:other)
|
3666
|
-
SENSITIVE = []
|
3667
|
-
include Aws::Structure
|
3668
|
-
end
|
3669
|
-
|
3670
3334
|
# ListAgentsRequest
|
3671
3335
|
#
|
3672
3336
|
# @!attribute [rw] max_results
|
@@ -3710,49 +3374,6 @@ module Aws::DataSync
|
|
3710
3374
|
include Aws::Structure
|
3711
3375
|
end
|
3712
3376
|
|
3713
|
-
# @!attribute [rw] storage_system_arn
|
3714
|
-
# Specifies the Amazon Resource Name (ARN) of an on-premises storage
|
3715
|
-
# system. Use this parameter if you only want to list the discovery
|
3716
|
-
# jobs that are associated with a specific storage system.
|
3717
|
-
# @return [String]
|
3718
|
-
#
|
3719
|
-
# @!attribute [rw] max_results
|
3720
|
-
# Specifies how many results you want in the response.
|
3721
|
-
# @return [Integer]
|
3722
|
-
#
|
3723
|
-
# @!attribute [rw] next_token
|
3724
|
-
# Specifies an opaque string that indicates the position to begin the
|
3725
|
-
# next list of results in the response.
|
3726
|
-
# @return [String]
|
3727
|
-
#
|
3728
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListDiscoveryJobsRequest AWS API Documentation
|
3729
|
-
#
|
3730
|
-
class ListDiscoveryJobsRequest < Struct.new(
|
3731
|
-
:storage_system_arn,
|
3732
|
-
:max_results,
|
3733
|
-
:next_token)
|
3734
|
-
SENSITIVE = []
|
3735
|
-
include Aws::Structure
|
3736
|
-
end
|
3737
|
-
|
3738
|
-
# @!attribute [rw] discovery_jobs
|
3739
|
-
# The discovery jobs that you've run.
|
3740
|
-
# @return [Array<Types::DiscoveryJobListEntry>]
|
3741
|
-
#
|
3742
|
-
# @!attribute [rw] next_token
|
3743
|
-
# The opaque string that indicates the position to begin the next list
|
3744
|
-
# of results in the response.
|
3745
|
-
# @return [String]
|
3746
|
-
#
|
3747
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListDiscoveryJobsResponse AWS API Documentation
|
3748
|
-
#
|
3749
|
-
class ListDiscoveryJobsResponse < Struct.new(
|
3750
|
-
:discovery_jobs,
|
3751
|
-
:next_token)
|
3752
|
-
SENSITIVE = []
|
3753
|
-
include Aws::Structure
|
3754
|
-
end
|
3755
|
-
|
3756
3377
|
# ListLocationsRequest
|
3757
3378
|
#
|
3758
3379
|
# @!attribute [rw] max_results
|
@@ -3801,43 +3422,6 @@ module Aws::DataSync
|
|
3801
3422
|
include Aws::Structure
|
3802
3423
|
end
|
3803
3424
|
|
3804
|
-
# @!attribute [rw] max_results
|
3805
|
-
# Specifies how many results you want in the response.
|
3806
|
-
# @return [Integer]
|
3807
|
-
#
|
3808
|
-
# @!attribute [rw] next_token
|
3809
|
-
# Specifies an opaque string that indicates the position to begin the
|
3810
|
-
# next list of results in the response.
|
3811
|
-
# @return [String]
|
3812
|
-
#
|
3813
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListStorageSystemsRequest AWS API Documentation
|
3814
|
-
#
|
3815
|
-
class ListStorageSystemsRequest < Struct.new(
|
3816
|
-
:max_results,
|
3817
|
-
:next_token)
|
3818
|
-
SENSITIVE = []
|
3819
|
-
include Aws::Structure
|
3820
|
-
end
|
3821
|
-
|
3822
|
-
# @!attribute [rw] storage_systems
|
3823
|
-
# The Amazon Resource Names ARNs) of the on-premises storage systems
|
3824
|
-
# that you're using with DataSync Discovery.
|
3825
|
-
# @return [Array<Types::StorageSystemListEntry>]
|
3826
|
-
#
|
3827
|
-
# @!attribute [rw] next_token
|
3828
|
-
# The opaque string that indicates the position to begin the next list
|
3829
|
-
# of results in the response.
|
3830
|
-
# @return [String]
|
3831
|
-
#
|
3832
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListStorageSystemsResponse AWS API Documentation
|
3833
|
-
#
|
3834
|
-
class ListStorageSystemsResponse < Struct.new(
|
3835
|
-
:storage_systems,
|
3836
|
-
:next_token)
|
3837
|
-
SENSITIVE = []
|
3838
|
-
include Aws::Structure
|
3839
|
-
end
|
3840
|
-
|
3841
3425
|
# ListTagsForResourceRequest
|
3842
3426
|
#
|
3843
3427
|
# @!attribute [rw] resource_arn
|
@@ -4066,6 +3650,24 @@ module Aws::DataSync
|
|
4066
3650
|
include Aws::Structure
|
4067
3651
|
end
|
4068
3652
|
|
3653
|
+
# Specifies configuration information for a DataSync-managed secret,
|
3654
|
+
# such as an authentication token or set of credentials that DataSync
|
3655
|
+
# uses to access a specific transfer location. DataSync uses the default
|
3656
|
+
# Amazon Web Services-managed KMS key to encrypt this secret in Secrets
|
3657
|
+
# Manager.
|
3658
|
+
#
|
3659
|
+
# @!attribute [rw] secret_arn
|
3660
|
+
# Specifies the ARN for an Secrets Manager secret.
|
3661
|
+
# @return [String]
|
3662
|
+
#
|
3663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ManagedSecretConfig AWS API Documentation
|
3664
|
+
#
|
3665
|
+
class ManagedSecretConfig < Struct.new(
|
3666
|
+
:secret_arn)
|
3667
|
+
SENSITIVE = []
|
3668
|
+
include Aws::Structure
|
3669
|
+
end
|
3670
|
+
|
4069
3671
|
# Configures a manifest, which is a list of files or objects that you
|
4070
3672
|
# want DataSync to transfer. For more information and configuration
|
4071
3673
|
# examples, see [Specifying what DataSync transfers by using a
|
@@ -4118,354 +3720,6 @@ module Aws::DataSync
|
|
4118
3720
|
include Aws::Structure
|
4119
3721
|
end
|
4120
3722
|
|
4121
|
-
# The performance data that DataSync Discovery collects about an
|
4122
|
-
# on-premises storage system resource.
|
4123
|
-
#
|
4124
|
-
# @!attribute [rw] iops_read
|
4125
|
-
# Peak IOPS related to read operations.
|
4126
|
-
# @return [Float]
|
4127
|
-
#
|
4128
|
-
# @!attribute [rw] iops_write
|
4129
|
-
# Peak IOPS related to write operations.
|
4130
|
-
# @return [Float]
|
4131
|
-
#
|
4132
|
-
# @!attribute [rw] iops_other
|
4133
|
-
# Peak IOPS unrelated to read and write operations.
|
4134
|
-
# @return [Float]
|
4135
|
-
#
|
4136
|
-
# @!attribute [rw] iops_total
|
4137
|
-
# Peak total IOPS on your on-premises storage system resource.
|
4138
|
-
# @return [Float]
|
4139
|
-
#
|
4140
|
-
# @!attribute [rw] throughput_read
|
4141
|
-
# Peak throughput related to read operations.
|
4142
|
-
# @return [Float]
|
4143
|
-
#
|
4144
|
-
# @!attribute [rw] throughput_write
|
4145
|
-
# Peak throughput related to write operations.
|
4146
|
-
# @return [Float]
|
4147
|
-
#
|
4148
|
-
# @!attribute [rw] throughput_other
|
4149
|
-
# Peak throughput unrelated to read and write operations.
|
4150
|
-
# @return [Float]
|
4151
|
-
#
|
4152
|
-
# @!attribute [rw] throughput_total
|
4153
|
-
# Peak total throughput on your on-premises storage system resource.
|
4154
|
-
# @return [Float]
|
4155
|
-
#
|
4156
|
-
# @!attribute [rw] latency_read
|
4157
|
-
# Peak latency for read operations.
|
4158
|
-
# @return [Float]
|
4159
|
-
#
|
4160
|
-
# @!attribute [rw] latency_write
|
4161
|
-
# Peak latency for write operations.
|
4162
|
-
# @return [Float]
|
4163
|
-
#
|
4164
|
-
# @!attribute [rw] latency_other
|
4165
|
-
# Peak latency for operations unrelated to read and write operations.
|
4166
|
-
# @return [Float]
|
4167
|
-
#
|
4168
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/MaxP95Performance AWS API Documentation
|
4169
|
-
#
|
4170
|
-
class MaxP95Performance < Struct.new(
|
4171
|
-
:iops_read,
|
4172
|
-
:iops_write,
|
4173
|
-
:iops_other,
|
4174
|
-
:iops_total,
|
4175
|
-
:throughput_read,
|
4176
|
-
:throughput_write,
|
4177
|
-
:throughput_other,
|
4178
|
-
:throughput_total,
|
4179
|
-
:latency_read,
|
4180
|
-
:latency_write,
|
4181
|
-
:latency_other)
|
4182
|
-
SENSITIVE = []
|
4183
|
-
include Aws::Structure
|
4184
|
-
end
|
4185
|
-
|
4186
|
-
# The information that DataSync Discovery collects about an on-premises
|
4187
|
-
# storage system cluster.
|
4188
|
-
#
|
4189
|
-
# @!attribute [rw] cifs_share_count
|
4190
|
-
# The number of CIFS shares in the cluster.
|
4191
|
-
# @return [Integer]
|
4192
|
-
#
|
4193
|
-
# @!attribute [rw] nfs_exported_volumes
|
4194
|
-
# The number of NFS volumes in the cluster.
|
4195
|
-
# @return [Integer]
|
4196
|
-
#
|
4197
|
-
# @!attribute [rw] resource_id
|
4198
|
-
# The universally unique identifier (UUID) of the cluster.
|
4199
|
-
# @return [String]
|
4200
|
-
#
|
4201
|
-
# @!attribute [rw] cluster_name
|
4202
|
-
# The name of the cluster.
|
4203
|
-
# @return [String]
|
4204
|
-
#
|
4205
|
-
# @!attribute [rw] max_p95_performance
|
4206
|
-
# The performance data that DataSync Discovery collects about the
|
4207
|
-
# cluster.
|
4208
|
-
# @return [Types::MaxP95Performance]
|
4209
|
-
#
|
4210
|
-
# @!attribute [rw] cluster_block_storage_size
|
4211
|
-
# The total storage space that's available in the cluster.
|
4212
|
-
# @return [Integer]
|
4213
|
-
#
|
4214
|
-
# @!attribute [rw] cluster_block_storage_used
|
4215
|
-
# The storage space that's being used in a cluster.
|
4216
|
-
# @return [Integer]
|
4217
|
-
#
|
4218
|
-
# @!attribute [rw] cluster_block_storage_logical_used
|
4219
|
-
# The storage space that's being used in the cluster without
|
4220
|
-
# accounting for compression or deduplication.
|
4221
|
-
# @return [Integer]
|
4222
|
-
#
|
4223
|
-
# @!attribute [rw] recommendations
|
4224
|
-
# The Amazon Web Services storage services that DataSync Discovery
|
4225
|
-
# recommends for the cluster. For more information, see
|
4226
|
-
# [Recommendations provided by DataSync Discovery][1].
|
4227
|
-
#
|
4228
|
-
#
|
4229
|
-
#
|
4230
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
|
4231
|
-
# @return [Array<Types::Recommendation>]
|
4232
|
-
#
|
4233
|
-
# @!attribute [rw] recommendation_status
|
4234
|
-
# Indicates whether DataSync Discovery recommendations for the cluster
|
4235
|
-
# are ready to view, incomplete, or can't be determined.
|
4236
|
-
#
|
4237
|
-
# For more information, see [Recommendation statuses][1].
|
4238
|
-
#
|
4239
|
-
#
|
4240
|
-
#
|
4241
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table
|
4242
|
-
# @return [String]
|
4243
|
-
#
|
4244
|
-
# @!attribute [rw] lun_count
|
4245
|
-
# The number of LUNs (logical unit numbers) in the cluster.
|
4246
|
-
# @return [Integer]
|
4247
|
-
#
|
4248
|
-
# @!attribute [rw] cluster_cloud_storage_used
|
4249
|
-
# The amount of space in the cluster that's in cloud storage (for
|
4250
|
-
# example, if you're using data tiering).
|
4251
|
-
# @return [Integer]
|
4252
|
-
#
|
4253
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPCluster AWS API Documentation
|
4254
|
-
#
|
4255
|
-
class NetAppONTAPCluster < Struct.new(
|
4256
|
-
:cifs_share_count,
|
4257
|
-
:nfs_exported_volumes,
|
4258
|
-
:resource_id,
|
4259
|
-
:cluster_name,
|
4260
|
-
:max_p95_performance,
|
4261
|
-
:cluster_block_storage_size,
|
4262
|
-
:cluster_block_storage_used,
|
4263
|
-
:cluster_block_storage_logical_used,
|
4264
|
-
:recommendations,
|
4265
|
-
:recommendation_status,
|
4266
|
-
:lun_count,
|
4267
|
-
:cluster_cloud_storage_used)
|
4268
|
-
SENSITIVE = []
|
4269
|
-
include Aws::Structure
|
4270
|
-
end
|
4271
|
-
|
4272
|
-
# The information that DataSync Discovery collects about a storage
|
4273
|
-
# virtual machine (SVM) in your on-premises storage system.
|
4274
|
-
#
|
4275
|
-
# @!attribute [rw] cluster_uuid
|
4276
|
-
# The universally unique identifier (UUID) of the cluster associated
|
4277
|
-
# with the SVM.
|
4278
|
-
# @return [String]
|
4279
|
-
#
|
4280
|
-
# @!attribute [rw] resource_id
|
4281
|
-
# The UUID of the SVM.
|
4282
|
-
# @return [String]
|
4283
|
-
#
|
4284
|
-
# @!attribute [rw] svm_name
|
4285
|
-
# The name of the SVM
|
4286
|
-
# @return [String]
|
4287
|
-
#
|
4288
|
-
# @!attribute [rw] cifs_share_count
|
4289
|
-
# The number of CIFS shares in the SVM.
|
4290
|
-
# @return [Integer]
|
4291
|
-
#
|
4292
|
-
# @!attribute [rw] enabled_protocols
|
4293
|
-
# The data transfer protocols (such as NFS) configured for the SVM.
|
4294
|
-
# @return [Array<String>]
|
4295
|
-
#
|
4296
|
-
# @!attribute [rw] total_capacity_used
|
4297
|
-
# The storage space that's being used in the SVM.
|
4298
|
-
# @return [Integer]
|
4299
|
-
#
|
4300
|
-
# @!attribute [rw] total_capacity_provisioned
|
4301
|
-
# The total storage space that's available in the SVM.
|
4302
|
-
# @return [Integer]
|
4303
|
-
#
|
4304
|
-
# @!attribute [rw] total_logical_capacity_used
|
4305
|
-
# The storage space that's being used in the SVM without accounting
|
4306
|
-
# for compression or deduplication.
|
4307
|
-
# @return [Integer]
|
4308
|
-
#
|
4309
|
-
# @!attribute [rw] max_p95_performance
|
4310
|
-
# The performance data that DataSync Discovery collects about the SVM.
|
4311
|
-
# @return [Types::MaxP95Performance]
|
4312
|
-
#
|
4313
|
-
# @!attribute [rw] recommendations
|
4314
|
-
# The Amazon Web Services storage services that DataSync Discovery
|
4315
|
-
# recommends for the SVM. For more information, see [Recommendations
|
4316
|
-
# provided by DataSync Discovery][1].
|
4317
|
-
#
|
4318
|
-
#
|
4319
|
-
#
|
4320
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
|
4321
|
-
# @return [Array<Types::Recommendation>]
|
4322
|
-
#
|
4323
|
-
# @!attribute [rw] nfs_exported_volumes
|
4324
|
-
# The number of NFS volumes in the SVM.
|
4325
|
-
# @return [Integer]
|
4326
|
-
#
|
4327
|
-
# @!attribute [rw] recommendation_status
|
4328
|
-
# Indicates whether DataSync Discovery recommendations for the SVM are
|
4329
|
-
# ready to view, incomplete, or can't be determined.
|
4330
|
-
#
|
4331
|
-
# For more information, see [Recommendation statuses][1].
|
4332
|
-
#
|
4333
|
-
#
|
4334
|
-
#
|
4335
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table
|
4336
|
-
# @return [String]
|
4337
|
-
#
|
4338
|
-
# @!attribute [rw] total_snapshot_capacity_used
|
4339
|
-
# The amount of storage in the SVM that's being used for snapshots.
|
4340
|
-
# @return [Integer]
|
4341
|
-
#
|
4342
|
-
# @!attribute [rw] lun_count
|
4343
|
-
# The number of LUNs (logical unit numbers) in the SVM.
|
4344
|
-
# @return [Integer]
|
4345
|
-
#
|
4346
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPSVM AWS API Documentation
|
4347
|
-
#
|
4348
|
-
class NetAppONTAPSVM < Struct.new(
|
4349
|
-
:cluster_uuid,
|
4350
|
-
:resource_id,
|
4351
|
-
:svm_name,
|
4352
|
-
:cifs_share_count,
|
4353
|
-
:enabled_protocols,
|
4354
|
-
:total_capacity_used,
|
4355
|
-
:total_capacity_provisioned,
|
4356
|
-
:total_logical_capacity_used,
|
4357
|
-
:max_p95_performance,
|
4358
|
-
:recommendations,
|
4359
|
-
:nfs_exported_volumes,
|
4360
|
-
:recommendation_status,
|
4361
|
-
:total_snapshot_capacity_used,
|
4362
|
-
:lun_count)
|
4363
|
-
SENSITIVE = []
|
4364
|
-
include Aws::Structure
|
4365
|
-
end
|
4366
|
-
|
4367
|
-
# The information that DataSync Discovery collects about a volume in
|
4368
|
-
# your on-premises storage system.
|
4369
|
-
#
|
4370
|
-
# @!attribute [rw] volume_name
|
4371
|
-
# The name of the volume.
|
4372
|
-
# @return [String]
|
4373
|
-
#
|
4374
|
-
# @!attribute [rw] resource_id
|
4375
|
-
# The universally unique identifier (UUID) of the volume.
|
4376
|
-
# @return [String]
|
4377
|
-
#
|
4378
|
-
# @!attribute [rw] cifs_share_count
|
4379
|
-
# The number of CIFS shares in the volume.
|
4380
|
-
# @return [Integer]
|
4381
|
-
#
|
4382
|
-
# @!attribute [rw] security_style
|
4383
|
-
# The volume's security style (such as Unix or NTFS).
|
4384
|
-
# @return [String]
|
4385
|
-
#
|
4386
|
-
# @!attribute [rw] svm_uuid
|
4387
|
-
# The UUID of the storage virtual machine (SVM) associated with the
|
4388
|
-
# volume.
|
4389
|
-
# @return [String]
|
4390
|
-
#
|
4391
|
-
# @!attribute [rw] svm_name
|
4392
|
-
# The name of the SVM associated with the volume.
|
4393
|
-
# @return [String]
|
4394
|
-
#
|
4395
|
-
# @!attribute [rw] capacity_used
|
4396
|
-
# The storage space that's being used in the volume.
|
4397
|
-
# @return [Integer]
|
4398
|
-
#
|
4399
|
-
# @!attribute [rw] capacity_provisioned
|
4400
|
-
# The total storage space that's available in the volume.
|
4401
|
-
# @return [Integer]
|
4402
|
-
#
|
4403
|
-
# @!attribute [rw] logical_capacity_used
|
4404
|
-
# The storage space that's being used in the volume without
|
4405
|
-
# accounting for compression or deduplication.
|
4406
|
-
# @return [Integer]
|
4407
|
-
#
|
4408
|
-
# @!attribute [rw] nfs_exported
|
4409
|
-
# The number of NFS volumes in the volume.
|
4410
|
-
# @return [Boolean]
|
4411
|
-
#
|
4412
|
-
# @!attribute [rw] snapshot_capacity_used
|
4413
|
-
# The amount of storage in the volume that's being used for
|
4414
|
-
# snapshots.
|
4415
|
-
# @return [Integer]
|
4416
|
-
#
|
4417
|
-
# @!attribute [rw] max_p95_performance
|
4418
|
-
# The performance data that DataSync Discovery collects about the
|
4419
|
-
# volume.
|
4420
|
-
# @return [Types::MaxP95Performance]
|
4421
|
-
#
|
4422
|
-
# @!attribute [rw] recommendations
|
4423
|
-
# The Amazon Web Services storage services that DataSync Discovery
|
4424
|
-
# recommends for the volume. For more information, see
|
4425
|
-
# [Recommendations provided by DataSync Discovery][1].
|
4426
|
-
#
|
4427
|
-
#
|
4428
|
-
#
|
4429
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
|
4430
|
-
# @return [Array<Types::Recommendation>]
|
4431
|
-
#
|
4432
|
-
# @!attribute [rw] recommendation_status
|
4433
|
-
# Indicates whether DataSync Discovery recommendations for the volume
|
4434
|
-
# are ready to view, incomplete, or can't be determined.
|
4435
|
-
#
|
4436
|
-
# For more information, see [Recommendation statuses][1].
|
4437
|
-
#
|
4438
|
-
#
|
4439
|
-
#
|
4440
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table
|
4441
|
-
# @return [String]
|
4442
|
-
#
|
4443
|
-
# @!attribute [rw] lun_count
|
4444
|
-
# The number of LUNs (logical unit numbers) in the volume.
|
4445
|
-
# @return [Integer]
|
4446
|
-
#
|
4447
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPVolume AWS API Documentation
|
4448
|
-
#
|
4449
|
-
class NetAppONTAPVolume < Struct.new(
|
4450
|
-
:volume_name,
|
4451
|
-
:resource_id,
|
4452
|
-
:cifs_share_count,
|
4453
|
-
:security_style,
|
4454
|
-
:svm_uuid,
|
4455
|
-
:svm_name,
|
4456
|
-
:capacity_used,
|
4457
|
-
:capacity_provisioned,
|
4458
|
-
:logical_capacity_used,
|
4459
|
-
:nfs_exported,
|
4460
|
-
:snapshot_capacity_used,
|
4461
|
-
:max_p95_performance,
|
4462
|
-
:recommendations,
|
4463
|
-
:recommendation_status,
|
4464
|
-
:lun_count)
|
4465
|
-
SENSITIVE = []
|
4466
|
-
include Aws::Structure
|
4467
|
-
end
|
4468
|
-
|
4469
3723
|
# Specifies how DataSync can access a location using the NFS protocol.
|
4470
3724
|
#
|
4471
3725
|
# @!attribute [rw] version
|
@@ -4881,37 +4135,6 @@ module Aws::DataSync
|
|
4881
4135
|
include Aws::Structure
|
4882
4136
|
end
|
4883
4137
|
|
4884
|
-
# The types of performance data that DataSync Discovery collects about
|
4885
|
-
# an on-premises storage system resource.
|
4886
|
-
#
|
4887
|
-
# @!attribute [rw] iops
|
4888
|
-
# The IOPS peaks for an on-premises storage system resource. Each data
|
4889
|
-
# point represents the 95th percentile peak value during a 1-hour
|
4890
|
-
# interval.
|
4891
|
-
# @return [Types::IOPS]
|
4892
|
-
#
|
4893
|
-
# @!attribute [rw] throughput
|
4894
|
-
# The throughput peaks for an on-premises storage system resource.
|
4895
|
-
# Each data point represents the 95th percentile peak value during a
|
4896
|
-
# 1-hour interval.
|
4897
|
-
# @return [Types::Throughput]
|
4898
|
-
#
|
4899
|
-
# @!attribute [rw] latency
|
4900
|
-
# The latency peaks for an on-premises storage system resource. Each
|
4901
|
-
# data point represents the 95th percentile peak value during a 1-hour
|
4902
|
-
# interval.
|
4903
|
-
# @return [Types::Latency]
|
4904
|
-
#
|
4905
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/P95Metrics AWS API Documentation
|
4906
|
-
#
|
4907
|
-
class P95Metrics < Struct.new(
|
4908
|
-
:iops,
|
4909
|
-
:throughput,
|
4910
|
-
:latency)
|
4911
|
-
SENSITIVE = []
|
4912
|
-
include Aws::Structure
|
4913
|
-
end
|
4914
|
-
|
4915
4138
|
# The platform-related details about the DataSync agent, such as the
|
4916
4139
|
# version number.
|
4917
4140
|
#
|
@@ -4995,60 +4218,6 @@ module Aws::DataSync
|
|
4995
4218
|
include Aws::Structure
|
4996
4219
|
end
|
4997
4220
|
|
4998
|
-
# The details about an Amazon Web Services storage service that DataSync
|
4999
|
-
# Discovery recommends for a resource in your on-premises storage
|
5000
|
-
# system.
|
5001
|
-
#
|
5002
|
-
# For more information, see [Recommendations provided by DataSync
|
5003
|
-
# Discovery][1].
|
5004
|
-
#
|
5005
|
-
#
|
5006
|
-
#
|
5007
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
|
5008
|
-
#
|
5009
|
-
# @!attribute [rw] storage_type
|
5010
|
-
# A recommended Amazon Web Services storage service that you can
|
5011
|
-
# migrate data to based on information that DataSync Discovery
|
5012
|
-
# collects about your on-premises storage system.
|
5013
|
-
# @return [String]
|
5014
|
-
#
|
5015
|
-
# @!attribute [rw] storage_configuration
|
5016
|
-
# Information about how you can set up a recommended Amazon Web
|
5017
|
-
# Services storage service.
|
5018
|
-
# @return [Hash<String,String>]
|
5019
|
-
#
|
5020
|
-
# @!attribute [rw] estimated_monthly_storage_cost
|
5021
|
-
# The estimated monthly cost of the recommended Amazon Web Services
|
5022
|
-
# storage service.
|
5023
|
-
# @return [String]
|
5024
|
-
#
|
5025
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Recommendation AWS API Documentation
|
5026
|
-
#
|
5027
|
-
class Recommendation < Struct.new(
|
5028
|
-
:storage_type,
|
5029
|
-
:storage_configuration,
|
5030
|
-
:estimated_monthly_storage_cost)
|
5031
|
-
SENSITIVE = []
|
5032
|
-
include Aws::Structure
|
5033
|
-
end
|
5034
|
-
|
5035
|
-
# @!attribute [rw] storage_system_arn
|
5036
|
-
# Specifies the Amazon Resource Name (ARN) of the storage system that
|
5037
|
-
# you want to permanently remove from DataSync Discovery.
|
5038
|
-
# @return [String]
|
5039
|
-
#
|
5040
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/RemoveStorageSystemRequest AWS API Documentation
|
5041
|
-
#
|
5042
|
-
class RemoveStorageSystemRequest < Struct.new(
|
5043
|
-
:storage_system_arn)
|
5044
|
-
SENSITIVE = []
|
5045
|
-
include Aws::Structure
|
5046
|
-
end
|
5047
|
-
|
5048
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/RemoveStorageSystemResponse AWS API Documentation
|
5049
|
-
#
|
5050
|
-
class RemoveStorageSystemResponse < Aws::EmptyStructure; end
|
5051
|
-
|
5052
4221
|
# Specifies where DataSync uploads your [task report][1].
|
5053
4222
|
#
|
5054
4223
|
#
|
@@ -5212,73 +4381,6 @@ module Aws::DataSync
|
|
5212
4381
|
include Aws::Structure
|
5213
4382
|
end
|
5214
4383
|
|
5215
|
-
# Information provided by DataSync Discovery about the resources in your
|
5216
|
-
# on-premises storage system.
|
5217
|
-
#
|
5218
|
-
# @!attribute [rw] net_app_ontapsv_ms
|
5219
|
-
# The information that DataSync Discovery collects about storage
|
5220
|
-
# virtual machines (SVMs) in your on-premises storage system.
|
5221
|
-
# @return [Array<Types::NetAppONTAPSVM>]
|
5222
|
-
#
|
5223
|
-
# @!attribute [rw] net_app_ontap_volumes
|
5224
|
-
# The information that DataSync Discovery collects about volumes in
|
5225
|
-
# your on-premises storage system.
|
5226
|
-
# @return [Array<Types::NetAppONTAPVolume>]
|
5227
|
-
#
|
5228
|
-
# @!attribute [rw] net_app_ontap_clusters
|
5229
|
-
# The information that DataSync Discovery collects about the cluster
|
5230
|
-
# in your on-premises storage system.
|
5231
|
-
# @return [Array<Types::NetAppONTAPCluster>]
|
5232
|
-
#
|
5233
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ResourceDetails AWS API Documentation
|
5234
|
-
#
|
5235
|
-
class ResourceDetails < Struct.new(
|
5236
|
-
:net_app_ontapsv_ms,
|
5237
|
-
:net_app_ontap_volumes,
|
5238
|
-
:net_app_ontap_clusters)
|
5239
|
-
SENSITIVE = []
|
5240
|
-
include Aws::Structure
|
5241
|
-
end
|
5242
|
-
|
5243
|
-
# Information, including performance data and capacity usage, provided
|
5244
|
-
# by DataSync Discovery about a resource in your on-premises storage
|
5245
|
-
# system.
|
5246
|
-
#
|
5247
|
-
# @!attribute [rw] timestamp
|
5248
|
-
# The time when DataSync Discovery collected this information from the
|
5249
|
-
# resource.
|
5250
|
-
# @return [Time]
|
5251
|
-
#
|
5252
|
-
# @!attribute [rw] p95_metrics
|
5253
|
-
# The types of performance data that DataSync Discovery collects about
|
5254
|
-
# the on-premises storage system resource.
|
5255
|
-
# @return [Types::P95Metrics]
|
5256
|
-
#
|
5257
|
-
# @!attribute [rw] capacity
|
5258
|
-
# The storage capacity of the on-premises storage system resource.
|
5259
|
-
# @return [Types::Capacity]
|
5260
|
-
#
|
5261
|
-
# @!attribute [rw] resource_id
|
5262
|
-
# The universally unique identifier (UUID) of the on-premises storage
|
5263
|
-
# system resource.
|
5264
|
-
# @return [String]
|
5265
|
-
#
|
5266
|
-
# @!attribute [rw] resource_type
|
5267
|
-
# The type of on-premises storage system resource.
|
5268
|
-
# @return [String]
|
5269
|
-
#
|
5270
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ResourceMetrics AWS API Documentation
|
5271
|
-
#
|
5272
|
-
class ResourceMetrics < Struct.new(
|
5273
|
-
:timestamp,
|
5274
|
-
:p95_metrics,
|
5275
|
-
:capacity,
|
5276
|
-
:resource_id,
|
5277
|
-
:resource_type)
|
5278
|
-
SENSITIVE = []
|
5279
|
-
include Aws::Structure
|
5280
|
-
end
|
5281
|
-
|
5282
4384
|
# Specifies the Amazon Resource Name (ARN) of the Identity and Access
|
5283
4385
|
# Management (IAM) role that DataSync uses to access your S3 bucket.
|
5284
4386
|
#
|
@@ -5417,59 +4519,6 @@ module Aws::DataSync
|
|
5417
4519
|
include Aws::Structure
|
5418
4520
|
end
|
5419
4521
|
|
5420
|
-
# @!attribute [rw] storage_system_arn
|
5421
|
-
# Specifies the Amazon Resource Name (ARN) of the on-premises storage
|
5422
|
-
# system that you want to run the discovery job on.
|
5423
|
-
# @return [String]
|
5424
|
-
#
|
5425
|
-
# @!attribute [rw] collection_duration_minutes
|
5426
|
-
# Specifies in minutes how long you want the discovery job to run.
|
5427
|
-
#
|
5428
|
-
# <note markdown="1"> For more accurate recommendations, we recommend a duration of at
|
5429
|
-
# least 14 days. Longer durations allow time to collect a sufficient
|
5430
|
-
# number of data points and provide a realistic representation of
|
5431
|
-
# storage performance and utilization.
|
5432
|
-
#
|
5433
|
-
# </note>
|
5434
|
-
# @return [Integer]
|
5435
|
-
#
|
5436
|
-
# @!attribute [rw] client_token
|
5437
|
-
# Specifies a client token to make sure requests with this API
|
5438
|
-
# operation are idempotent. If you don't specify a client token,
|
5439
|
-
# DataSync generates one for you automatically.
|
5440
|
-
#
|
5441
|
-
# **A suitable default value is auto-generated.** You should normally
|
5442
|
-
# not need to pass this option.
|
5443
|
-
# @return [String]
|
5444
|
-
#
|
5445
|
-
# @!attribute [rw] tags
|
5446
|
-
# Specifies labels that help you categorize, filter, and search for
|
5447
|
-
# your Amazon Web Services resources.
|
5448
|
-
# @return [Array<Types::TagListEntry>]
|
5449
|
-
#
|
5450
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StartDiscoveryJobRequest AWS API Documentation
|
5451
|
-
#
|
5452
|
-
class StartDiscoveryJobRequest < Struct.new(
|
5453
|
-
:storage_system_arn,
|
5454
|
-
:collection_duration_minutes,
|
5455
|
-
:client_token,
|
5456
|
-
:tags)
|
5457
|
-
SENSITIVE = []
|
5458
|
-
include Aws::Structure
|
5459
|
-
end
|
5460
|
-
|
5461
|
-
# @!attribute [rw] discovery_job_arn
|
5462
|
-
# The ARN of the discovery job that you started.
|
5463
|
-
# @return [String]
|
5464
|
-
#
|
5465
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StartDiscoveryJobResponse AWS API Documentation
|
5466
|
-
#
|
5467
|
-
class StartDiscoveryJobResponse < Struct.new(
|
5468
|
-
:discovery_job_arn)
|
5469
|
-
SENSITIVE = []
|
5470
|
-
include Aws::Structure
|
5471
|
-
end
|
5472
|
-
|
5473
4522
|
# StartTaskExecutionRequest
|
5474
4523
|
#
|
5475
4524
|
# @!attribute [rw] task_arn
|
@@ -5587,45 +4636,6 @@ module Aws::DataSync
|
|
5587
4636
|
include Aws::Structure
|
5588
4637
|
end
|
5589
4638
|
|
5590
|
-
# @!attribute [rw] discovery_job_arn
|
5591
|
-
# Specifies the Amazon Resource Name (ARN) of the discovery job that
|
5592
|
-
# you want to stop.
|
5593
|
-
# @return [String]
|
5594
|
-
#
|
5595
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StopDiscoveryJobRequest AWS API Documentation
|
5596
|
-
#
|
5597
|
-
class StopDiscoveryJobRequest < Struct.new(
|
5598
|
-
:discovery_job_arn)
|
5599
|
-
SENSITIVE = []
|
5600
|
-
include Aws::Structure
|
5601
|
-
end
|
5602
|
-
|
5603
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StopDiscoveryJobResponse AWS API Documentation
|
5604
|
-
#
|
5605
|
-
class StopDiscoveryJobResponse < Aws::EmptyStructure; end
|
5606
|
-
|
5607
|
-
# Information that identifies an on-premises storage system that you're
|
5608
|
-
# using with DataSync Discovery.
|
5609
|
-
#
|
5610
|
-
# @!attribute [rw] storage_system_arn
|
5611
|
-
# The Amazon Resource Names (ARN) of an on-premises storage system
|
5612
|
-
# that you added to DataSync Discovery.
|
5613
|
-
# @return [String]
|
5614
|
-
#
|
5615
|
-
# @!attribute [rw] name
|
5616
|
-
# The name of an on-premises storage system that you added to DataSync
|
5617
|
-
# Discovery.
|
5618
|
-
# @return [String]
|
5619
|
-
#
|
5620
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StorageSystemListEntry AWS API Documentation
|
5621
|
-
#
|
5622
|
-
class StorageSystemListEntry < Struct.new(
|
5623
|
-
:storage_system_arn,
|
5624
|
-
:name)
|
5625
|
-
SENSITIVE = []
|
5626
|
-
include Aws::Structure
|
5627
|
-
end
|
5628
|
-
|
5629
4639
|
# A key-value pair representing a single tag that's been applied to an
|
5630
4640
|
# Amazon Web Services resource.
|
5631
4641
|
#
|
@@ -6169,37 +5179,6 @@ module Aws::DataSync
|
|
6169
5179
|
include Aws::Structure
|
6170
5180
|
end
|
6171
5181
|
|
6172
|
-
# The throughput peaks for an on-premises storage system volume. Each
|
6173
|
-
# data point represents the 95th percentile peak value during a 1-hour
|
6174
|
-
# interval.
|
6175
|
-
#
|
6176
|
-
# @!attribute [rw] read
|
6177
|
-
# Peak throughput related to read operations.
|
6178
|
-
# @return [Float]
|
6179
|
-
#
|
6180
|
-
# @!attribute [rw] write
|
6181
|
-
# Peak throughput related to write operations.
|
6182
|
-
# @return [Float]
|
6183
|
-
#
|
6184
|
-
# @!attribute [rw] other
|
6185
|
-
# Peak throughput unrelated to read and write operations.
|
6186
|
-
# @return [Float]
|
6187
|
-
#
|
6188
|
-
# @!attribute [rw] total
|
6189
|
-
# Peak total throughput on your on-premises storage system resource.
|
6190
|
-
# @return [Float]
|
6191
|
-
#
|
6192
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Throughput AWS API Documentation
|
6193
|
-
#
|
6194
|
-
class Throughput < Struct.new(
|
6195
|
-
:read,
|
6196
|
-
:write,
|
6197
|
-
:other,
|
6198
|
-
:total)
|
6199
|
-
SENSITIVE = []
|
6200
|
-
include Aws::Structure
|
6201
|
-
end
|
6202
|
-
|
6203
5182
|
# UntagResourceRequest
|
6204
5183
|
#
|
6205
5184
|
# @!attribute [rw] resource_arn
|
@@ -6247,30 +5226,6 @@ module Aws::DataSync
|
|
6247
5226
|
#
|
6248
5227
|
class UpdateAgentResponse < Aws::EmptyStructure; end
|
6249
5228
|
|
6250
|
-
# @!attribute [rw] discovery_job_arn
|
6251
|
-
# Specifies the Amazon Resource Name (ARN) of the discovery job that
|
6252
|
-
# you want to update.
|
6253
|
-
# @return [String]
|
6254
|
-
#
|
6255
|
-
# @!attribute [rw] collection_duration_minutes
|
6256
|
-
# Specifies in minutes how long that you want the discovery job to
|
6257
|
-
# run. (You can't set this parameter to less than the number of
|
6258
|
-
# minutes that the job has already run for.)
|
6259
|
-
# @return [Integer]
|
6260
|
-
#
|
6261
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateDiscoveryJobRequest AWS API Documentation
|
6262
|
-
#
|
6263
|
-
class UpdateDiscoveryJobRequest < Struct.new(
|
6264
|
-
:discovery_job_arn,
|
6265
|
-
:collection_duration_minutes)
|
6266
|
-
SENSITIVE = []
|
6267
|
-
include Aws::Structure
|
6268
|
-
end
|
6269
|
-
|
6270
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateDiscoveryJobResponse AWS API Documentation
|
6271
|
-
#
|
6272
|
-
class UpdateDiscoveryJobResponse < Aws::EmptyStructure; end
|
6273
|
-
|
6274
5229
|
# @!attribute [rw] location_arn
|
6275
5230
|
# Specifies the ARN of the Azure Blob Storage transfer location that
|
6276
5231
|
# you're updating.
|
@@ -6315,17 +5270,38 @@ module Aws::DataSync
|
|
6315
5270
|
# @return [String]
|
6316
5271
|
#
|
6317
5272
|
# @!attribute [rw] agent_arns
|
6318
|
-
# Specifies the Amazon Resource Name (ARN) of the DataSync
|
6319
|
-
# can connect with your Azure Blob Storage container.
|
5273
|
+
# (Optional) Specifies the Amazon Resource Name (ARN) of the DataSync
|
5274
|
+
# agent that can connect with your Azure Blob Storage container. If
|
5275
|
+
# you are setting up an agentless cross-cloud transfer, you do not
|
5276
|
+
# need to specify a value for this parameter.
|
6320
5277
|
#
|
6321
5278
|
# You can specify more than one agent. For more information, see
|
6322
5279
|
# [Using multiple agents for your transfer][1].
|
6323
5280
|
#
|
5281
|
+
# <note markdown="1"> You cannot add or remove agents from a storage location after you
|
5282
|
+
# initially create it.
|
5283
|
+
#
|
5284
|
+
# </note>
|
5285
|
+
#
|
6324
5286
|
#
|
6325
5287
|
#
|
6326
5288
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
6327
5289
|
# @return [Array<String>]
|
6328
5290
|
#
|
5291
|
+
# @!attribute [rw] cmk_secret_config
|
5292
|
+
# Specifies configuration information for a DataSync-managed secret,
|
5293
|
+
# such as an authentication token or set of credentials that DataSync
|
5294
|
+
# uses to access a specific transfer location, and a customer-managed
|
5295
|
+
# KMS key.
|
5296
|
+
# @return [Types::CmkSecretConfig]
|
5297
|
+
#
|
5298
|
+
# @!attribute [rw] custom_secret_config
|
5299
|
+
# Specifies configuration information for a customer-managed secret,
|
5300
|
+
# such as an authentication token or set of credentials that DataSync
|
5301
|
+
# uses to access a specific transfer location, and a customer-managed
|
5302
|
+
# KMS key.
|
5303
|
+
# @return [Types::CustomSecretConfig]
|
5304
|
+
#
|
6329
5305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationAzureBlobRequest AWS API Documentation
|
6330
5306
|
#
|
6331
5307
|
class UpdateLocationAzureBlobRequest < Struct.new(
|
@@ -6335,7 +5311,9 @@ module Aws::DataSync
|
|
6335
5311
|
:sas_configuration,
|
6336
5312
|
:blob_type,
|
6337
5313
|
:access_tier,
|
6338
|
-
:agent_arns
|
5314
|
+
:agent_arns,
|
5315
|
+
:cmk_secret_config,
|
5316
|
+
:custom_secret_config)
|
6339
5317
|
SENSITIVE = []
|
6340
5318
|
include Aws::Structure
|
6341
5319
|
end
|
@@ -6626,9 +5604,7 @@ module Aws::DataSync
|
|
6626
5604
|
# @!attribute [rw] kerberos_keytab
|
6627
5605
|
# The Kerberos key table (keytab) that contains mappings between the
|
6628
5606
|
# defined Kerberos principal and the encrypted keys. You can load the
|
6629
|
-
# keytab from a file by providing the file's address.
|
6630
|
-
# CLI, it performs base64 encoding for you. Otherwise, provide the
|
6631
|
-
# base64-encoded text.
|
5607
|
+
# keytab from a file by providing the file's address.
|
6632
5608
|
# @return [String]
|
6633
5609
|
#
|
6634
5610
|
# @!attribute [rw] kerberos_krb_5_conf
|
@@ -6753,8 +5729,15 @@ module Aws::DataSync
|
|
6753
5729
|
# @return [String]
|
6754
5730
|
#
|
6755
5731
|
# @!attribute [rw] agent_arns
|
6756
|
-
# Specifies the Amazon Resource Names (ARNs) of the
|
6757
|
-
# that can connect with your object storage system.
|
5732
|
+
# (Optional) Specifies the Amazon Resource Names (ARNs) of the
|
5733
|
+
# DataSync agents that can connect with your object storage system. If
|
5734
|
+
# you are setting up an agentless cross-cloud transfer, you do not
|
5735
|
+
# need to specify a value for this parameter.
|
5736
|
+
#
|
5737
|
+
# <note markdown="1"> You cannot add or remove agents from a storage location after you
|
5738
|
+
# initially create it.
|
5739
|
+
#
|
5740
|
+
# </note>
|
6758
5741
|
# @return [Array<String>]
|
6759
5742
|
#
|
6760
5743
|
# @!attribute [rw] server_certificate
|
@@ -6786,6 +5769,20 @@ module Aws::DataSync
|
|
6786
5769
|
# in progress.
|
6787
5770
|
# @return [String]
|
6788
5771
|
#
|
5772
|
+
# @!attribute [rw] cmk_secret_config
|
5773
|
+
# Specifies configuration information for a DataSync-managed secret,
|
5774
|
+
# such as an authentication token or set of credentials that DataSync
|
5775
|
+
# uses to access a specific transfer location, and a customer-managed
|
5776
|
+
# KMS key.
|
5777
|
+
# @return [Types::CmkSecretConfig]
|
5778
|
+
#
|
5779
|
+
# @!attribute [rw] custom_secret_config
|
5780
|
+
# Specifies configuration information for a customer-managed secret,
|
5781
|
+
# such as an authentication token or set of credentials that DataSync
|
5782
|
+
# uses to access a specific transfer location, and a customer-managed
|
5783
|
+
# KMS key.
|
5784
|
+
# @return [Types::CustomSecretConfig]
|
5785
|
+
#
|
6789
5786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationObjectStorageRequest AWS API Documentation
|
6790
5787
|
#
|
6791
5788
|
class UpdateLocationObjectStorageRequest < Struct.new(
|
@@ -6797,7 +5794,9 @@ module Aws::DataSync
|
|
6797
5794
|
:access_key,
|
6798
5795
|
:secret_key,
|
6799
5796
|
:agent_arns,
|
6800
|
-
:server_certificate
|
5797
|
+
:server_certificate,
|
5798
|
+
:cmk_secret_config,
|
5799
|
+
:custom_secret_config)
|
6801
5800
|
SENSITIVE = [:secret_key]
|
6802
5801
|
include Aws::Structure
|
6803
5802
|
end
|
@@ -6990,9 +5989,6 @@ module Aws::DataSync
|
|
6990
5989
|
# Specifies your Kerberos key table (keytab) file, which includes
|
6991
5990
|
# mappings between your Kerberos principal and encryption keys.
|
6992
5991
|
#
|
6993
|
-
# The file must be base64 encoded. If you're using the CLI, the
|
6994
|
-
# encoding is done for you.
|
6995
|
-
#
|
6996
5992
|
# To avoid task execution errors, make sure that the Kerberos
|
6997
5993
|
# principal that you use to create the keytab file matches exactly
|
6998
5994
|
# what you specify for `KerberosPrincipal`.
|
@@ -7030,53 +6026,6 @@ module Aws::DataSync
|
|
7030
6026
|
#
|
7031
6027
|
class UpdateLocationSmbResponse < Aws::EmptyStructure; end
|
7032
6028
|
|
7033
|
-
# @!attribute [rw] storage_system_arn
|
7034
|
-
# Specifies the ARN of the on-premises storage system that you want
|
7035
|
-
# reconfigure.
|
7036
|
-
# @return [String]
|
7037
|
-
#
|
7038
|
-
# @!attribute [rw] server_configuration
|
7039
|
-
# Specifies the server name and network port required to connect with
|
7040
|
-
# your on-premises storage system's management interface.
|
7041
|
-
# @return [Types::DiscoveryServerConfiguration]
|
7042
|
-
#
|
7043
|
-
# @!attribute [rw] agent_arns
|
7044
|
-
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
7045
|
-
# connects to and reads your on-premises storage system. You can only
|
7046
|
-
# specify one ARN.
|
7047
|
-
# @return [Array<String>]
|
7048
|
-
#
|
7049
|
-
# @!attribute [rw] name
|
7050
|
-
# Specifies a familiar name for your on-premises storage system.
|
7051
|
-
# @return [String]
|
7052
|
-
#
|
7053
|
-
# @!attribute [rw] cloud_watch_log_group_arn
|
7054
|
-
# Specifies the ARN of the Amazon CloudWatch log group for monitoring
|
7055
|
-
# and logging discovery job events.
|
7056
|
-
# @return [String]
|
7057
|
-
#
|
7058
|
-
# @!attribute [rw] credentials
|
7059
|
-
# Specifies the user name and password for accessing your on-premises
|
7060
|
-
# storage system's management interface.
|
7061
|
-
# @return [Types::Credentials]
|
7062
|
-
#
|
7063
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateStorageSystemRequest AWS API Documentation
|
7064
|
-
#
|
7065
|
-
class UpdateStorageSystemRequest < Struct.new(
|
7066
|
-
:storage_system_arn,
|
7067
|
-
:server_configuration,
|
7068
|
-
:agent_arns,
|
7069
|
-
:name,
|
7070
|
-
:cloud_watch_log_group_arn,
|
7071
|
-
:credentials)
|
7072
|
-
SENSITIVE = []
|
7073
|
-
include Aws::Structure
|
7074
|
-
end
|
7075
|
-
|
7076
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateStorageSystemResponse AWS API Documentation
|
7077
|
-
#
|
7078
|
-
class UpdateStorageSystemResponse < Aws::EmptyStructure; end
|
7079
|
-
|
7080
6029
|
# @!attribute [rw] task_execution_arn
|
7081
6030
|
# Specifies the Amazon Resource Name (ARN) of the task execution that
|
7082
6031
|
# you're updating.
|