@aws-sdk/client-datasync 3.369.0 → 3.377.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.
Files changed (39) hide show
  1. package/README.md +27 -3
  2. package/dist-cjs/DataSync.js +6 -0
  3. package/dist-cjs/commands/CreateLocationAzureBlobCommand.js +47 -0
  4. package/dist-cjs/commands/DescribeLocationAzureBlobCommand.js +46 -0
  5. package/dist-cjs/commands/UpdateLocationAzureBlobCommand.js +47 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +28 -2
  8. package/dist-cjs/protocols/Aws_json1_1.js +146 -3
  9. package/dist-es/DataSync.js +6 -0
  10. package/dist-es/commands/CreateLocationAzureBlobCommand.js +43 -0
  11. package/dist-es/commands/DescribeLocationAzureBlobCommand.js +42 -0
  12. package/dist-es/commands/UpdateLocationAzureBlobCommand.js +43 -0
  13. package/dist-es/commands/index.js +3 -0
  14. package/dist-es/models/models_0.js +23 -0
  15. package/dist-es/protocols/Aws_json1_1.js +137 -0
  16. package/dist-types/DataSync.d.ts +24 -3
  17. package/dist-types/DataSyncClient.d.ts +8 -5
  18. package/dist-types/commands/CreateAgentCommand.d.ts +19 -12
  19. package/dist-types/commands/CreateLocationAzureBlobCommand.d.ts +98 -0
  20. package/dist-types/commands/CreateLocationNfsCommand.d.ts +2 -2
  21. package/dist-types/commands/CreateLocationSmbCommand.d.ts +3 -1
  22. package/dist-types/commands/DescribeLocationAzureBlobCommand.d.ts +88 -0
  23. package/dist-types/commands/DescribeStorageSystemResourcesCommand.d.ts +3 -0
  24. package/dist-types/commands/DescribeTaskCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +2 -1
  26. package/dist-types/commands/UpdateLocationAzureBlobCommand.d.ts +88 -0
  27. package/dist-types/commands/index.d.ts +3 -0
  28. package/dist-types/index.d.ts +3 -3
  29. package/dist-types/models/models_0.d.ts +295 -87
  30. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  31. package/dist-types/ts3.4/DataSync.d.ts +51 -0
  32. package/dist-types/ts3.4/DataSyncClient.d.ts +18 -0
  33. package/dist-types/ts3.4/commands/CreateLocationAzureBlobCommand.d.ts +42 -0
  34. package/dist-types/ts3.4/commands/DescribeLocationAzureBlobCommand.d.ts +42 -0
  35. package/dist-types/ts3.4/commands/UpdateLocationAzureBlobCommand.d.ts +42 -0
  36. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +66 -0
  38. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
  39. package/package.json +16 -17
@@ -81,7 +81,8 @@ export interface AddStorageSystemRequest {
81
81
  SystemType: DiscoverySystemType | string | undefined;
82
82
  /**
83
83
  * <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to
84
- * and reads from your on-premises storage system's management interface.</p>
84
+ * and reads from your on-premises storage system's management interface. You can only specify
85
+ * one ARN.</p>
85
86
  */
86
87
  AgentArns: string[] | undefined;
87
88
  /**
@@ -192,6 +193,58 @@ export declare const Atime: {
192
193
  * @public
193
194
  */
194
195
  export type Atime = (typeof Atime)[keyof typeof Atime];
196
+ /**
197
+ * @public
198
+ * @enum
199
+ */
200
+ export declare const AzureAccessTier: {
201
+ readonly ARCHIVE: "ARCHIVE";
202
+ readonly COOL: "COOL";
203
+ readonly HOT: "HOT";
204
+ };
205
+ /**
206
+ * @public
207
+ */
208
+ export type AzureAccessTier = (typeof AzureAccessTier)[keyof typeof AzureAccessTier];
209
+ /**
210
+ * @public
211
+ * @enum
212
+ */
213
+ export declare const AzureBlobAuthenticationType: {
214
+ readonly SAS: "SAS";
215
+ };
216
+ /**
217
+ * @public
218
+ */
219
+ export type AzureBlobAuthenticationType = (typeof AzureBlobAuthenticationType)[keyof typeof AzureBlobAuthenticationType];
220
+ /**
221
+ * @public
222
+ * <p>The shared access signature (SAS) configuration that allows DataSync to access your Microsoft Azure Blob Storage.</p>
223
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-sas-tokens">SAS
224
+ * tokens</a> for accessing your Azure Blob Storage.</p>
225
+ */
226
+ export interface AzureBlobSasConfiguration {
227
+ /**
228
+ * <p>Specifies a SAS token that provides permissions at the Azure storage account, container,
229
+ * or folder level.</p>
230
+ * <p>The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A token looks something like this:</p>
231
+ * <p>
232
+ * <code>sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D</code>
233
+ * </p>
234
+ */
235
+ Token: string | undefined;
236
+ }
237
+ /**
238
+ * @public
239
+ * @enum
240
+ */
241
+ export declare const AzureBlobType: {
242
+ readonly BLOCK: "BLOCK";
243
+ };
244
+ /**
245
+ * @public
246
+ */
247
+ export type AzureBlobType = (typeof AzureBlobType)[keyof typeof AzureBlobType];
195
248
  /**
196
249
  * @public
197
250
  * <p>CancelTaskExecutionRequest</p>
@@ -233,51 +286,40 @@ export interface Capacity {
233
286
  */
234
287
  export interface CreateAgentRequest {
235
288
  /**
236
- * <p>Your agent activation key. You can get the activation key either by sending an HTTP GET
237
- * request with redirects that enable you to get the agent IP address (port 80). Alternatively,
238
- * you can get it from the DataSync console.</p>
239
- * <p>The redirect URL returned in the response provides you the activation key for your
240
- * agent in the query string parameter <code>activationKey</code>. It might also include other
241
- * activation-related parameters; however, these are merely defaults. The arguments you pass to
242
- * this API call determine the actual configuration of your agent.</p>
243
- * <p>For more information, see Activating an Agent in the <i>DataSync User Guide.</i>
244
- * </p>
289
+ * <p>Specifies your DataSync agent's activation key. If you don't have an
290
+ * activation key, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/activate-agent.html">Activate your agent</a>.</p>
245
291
  */
246
292
  ActivationKey: string | undefined;
247
293
  /**
248
- * <p>The name you configured for your agent. This value is a text reference that is used to
249
- * identify the agent in the console.</p>
294
+ * <p>Specifies a name for your agent. You can see this name in the DataSync
295
+ * console.</p>
250
296
  */
251
297
  AgentName?: string;
252
298
  /**
253
- * <p>The key-value pair that represents the tag that you want to associate with the agent.
254
- * The value can be an empty string. This value helps you manage, filter, and search for your
255
- * agents.</p>
256
- * <note>
257
- * <p>Valid characters for key and value are letters, spaces, and numbers representable in
258
- * UTF-8 format, and the following special characters: + - = . _ : / @. </p>
259
- * </note>
299
+ * <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources.
300
+ * We recommend creating at least one tag for your agent.</p>
260
301
  */
261
302
  Tags?: TagListEntry[];
262
303
  /**
263
- * <p>The ID of the VPC (virtual private cloud) endpoint that the agent has access to. This is
264
- * the client-side VPC endpoint, also called a PrivateLink. If you don't have a PrivateLink VPC
265
- * endpoint, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html#create-endpoint-service">Creating a VPC
266
- * Endpoint Service Configuration</a> in the Amazon VPC User Guide.</p>
267
- * <p>VPC endpoint ID looks like this: <code>vpce-01234d5aff67890e1</code>.</p>
304
+ * <p>Specifies the ID of the VPC endpoint that you want your agent to connect to. For example,
305
+ * a VPC endpoint ID looks like <code>vpce-01234d5aff67890e1</code>.</p>
306
+ * <important>
307
+ * <p>The VPC endpoint you use must include the DataSync service name (for example,
308
+ * <code>com.amazonaws.us-east-2.datasync</code>).</p>
309
+ * </important>
268
310
  */
269
311
  VpcEndpointId?: string;
270
312
  /**
271
- * <p>The Amazon Resource Names (ARNs) of the subnets in which DataSync will create
272
- * elastic network interfaces for each data transfer task. The agent that runs a task must be
273
- * private. When you start a task that is associated with an agent created in a VPC, or one that
274
- * has access to an IP address in a VPC, then the task is also private. In this case, DataSync creates four network interfaces for each task in your subnet. For a data transfer
275
- * to work, the agent must be able to route to all these four network interfaces.</p>
313
+ * <p>Specifies the ARN of the subnet where you want to run your DataSync task when
314
+ * using a VPC endpoint. This is the subnet where DataSync creates and manages the
315
+ * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces">network
316
+ * interfaces</a> for your transfer. You can only specify one ARN.</p>
276
317
  */
277
318
  SubnetArns?: string[];
278
319
  /**
279
- * <p>The ARNs of the security groups used to protect your data transfer task subnets. See
280
- * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_Ec2Config.html#DataSync-Type-Ec2Config-SecurityGroupArns">SecurityGroupArns</a>.</p>
320
+ * <p>Specifies the Amazon Resource Name (ARN) of the security group that protects your task's
321
+ * <a href="https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces">network
322
+ * interfaces</a> when <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choose-service-endpoint.html#choose-service-endpoint-vpc">using a virtual private cloud (VPC) endpoint</a>. You can only specify one ARN.</p>
281
323
  */
282
324
  SecurityGroupArns?: string[];
283
325
  }
@@ -287,11 +329,62 @@ export interface CreateAgentRequest {
287
329
  */
288
330
  export interface CreateAgentResponse {
289
331
  /**
290
- * <p>The Amazon Resource Name (ARN) of the agent. Use the <code>ListAgents</code> operation
291
- * to return a list of agents for your account and Amazon Web Services Region.</p>
332
+ * <p>The ARN of the agent that you just activated. Use the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_ListAgents.html">ListAgents</a> operation to return a
333
+ * list of agents in your Amazon Web Services account and Amazon Web Services Region.</p>
292
334
  */
293
335
  AgentArn?: string;
294
336
  }
337
+ /**
338
+ * @public
339
+ */
340
+ export interface CreateLocationAzureBlobRequest {
341
+ /**
342
+ * <p>Specifies the URL of the Azure Blob Storage container involved in your transfer.</p>
343
+ */
344
+ ContainerUrl: string | undefined;
345
+ /**
346
+ * <p>Specifies the authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
347
+ */
348
+ AuthenticationType: AzureBlobAuthenticationType | string | undefined;
349
+ /**
350
+ * <p>Specifies the SAS configuration that allows DataSync to access your Azure Blob Storage.</p>
351
+ */
352
+ SasConfiguration?: AzureBlobSasConfiguration;
353
+ /**
354
+ * <p>Specifies the type of blob that you want your objects or files to be when transferring
355
+ * them into Azure Blob Storage. Currently, DataSync only supports moving data into
356
+ * Azure Blob Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
357
+ */
358
+ BlobType?: AzureBlobType | string;
359
+ /**
360
+ * <p>Specifies the access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
361
+ */
362
+ AccessTier?: AzureAccessTier | string;
363
+ /**
364
+ * <p>Specifies path segments if you want to limit your transfer to a virtual directory in your
365
+ * container (for example, <code>/my/images</code>).</p>
366
+ */
367
+ Subdirectory?: string;
368
+ /**
369
+ * <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect with your Azure Blob Storage container.</p>
370
+ * <p>You can specify more than one agent. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html">Using multiple
371
+ * agents for your transfer</a>.</p>
372
+ */
373
+ AgentArns: string[] | undefined;
374
+ /**
375
+ * <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least a name tag for your transfer location.</p>
376
+ */
377
+ Tags?: TagListEntry[];
378
+ }
379
+ /**
380
+ * @public
381
+ */
382
+ export interface CreateLocationAzureBlobResponse {
383
+ /**
384
+ * <p>The ARN of the Azure Blob Storage transfer location that you created.</p>
385
+ */
386
+ LocationArn?: string;
387
+ }
295
388
  /**
296
389
  * @public
297
390
  * <p>The subnet and security groups that DataSync uses to access your Amazon EFS file system.</p>
@@ -756,10 +849,9 @@ export interface CreateLocationFsxWindowsRequest {
756
849
  */
757
850
  Tags?: TagListEntry[];
758
851
  /**
759
- * <p>Specifies the user who has the permissions to access files and folders in the file
760
- * system.</p>
761
- * <p>For information about choosing a user name that ensures sufficient permissions to files,
762
- * folders, and metadata, see <a href="create-fsx-location.html#FSxWuser">user</a>.</p>
852
+ * <p>Specifies the user who has the permissions to access files, folders, and metadata in your
853
+ * file system.</p>
854
+ * <p>For information about choosing a user with sufficient permissions, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-fsx-location.html#create-fsx-windows-location-permissions">Required permissions</a>.</p>
763
855
  */
764
856
  User: string | undefined;
765
857
  /**
@@ -979,10 +1071,10 @@ export interface OnPremConfig {
979
1071
  */
980
1072
  export interface CreateLocationNfsRequest {
981
1073
  /**
982
- * <p>The subdirectory in the NFS file system that is used to read data from the NFS source
983
- * location or write data to the NFS destination. The NFS path should be a path that's
984
- * exported by the NFS server, or a subdirectory of that path. The path should be such that it
985
- * can be mounted by other NFS clients in your network. </p>
1074
+ * <p>Specifies the subdirectory in the NFS file server that DataSync transfers to
1075
+ * or from. The NFS path should be a path that's exported by the NFS server, or a
1076
+ * subdirectory of that path. The path should be such that it can be mounted by other NFS clients
1077
+ * in your network. </p>
986
1078
  * <p>To see all the paths exported by your NFS server, run "<code>showmount -e
987
1079
  * nfs-server-name</code>" from an NFS client that has access to your server. You can specify
988
1080
  * any directory that appears in the results, and any subdirectory of that directory. Ensure that
@@ -995,36 +1087,34 @@ export interface CreateLocationNfsRequest {
995
1087
  * access.</p>
996
1088
  * <p>If you are copying data to or from your Snowcone device, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone">NFS Server on
997
1089
  * Snowcone</a> for more information.</p>
998
- * <p>For information about NFS export configuration, see 18.7. The /etc/exports
999
- * Configuration File in the Red Hat Enterprise Linux documentation.</p>
1000
1090
  */
1001
1091
  Subdirectory: string | undefined;
1002
1092
  /**
1003
- * <p>The name of the NFS server. This value is the IP address or Domain Name Service (DNS)
1004
- * name of the NFS server. An agent that is installed on-premises uses this hostname to mount the
1005
- * NFS server in a network. </p>
1093
+ * <p>Specifies the IP address or domain name of your NFS file server. An agent that is
1094
+ * installed on-premises uses this hostname to mount the NFS server in a network. </p>
1006
1095
  * <p>If you are copying data to or from your Snowcone device, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone">NFS Server on
1007
1096
  * Snowcone</a> for more information.</p>
1008
1097
  * <note>
1009
- * <p>This name must either be DNS-compliant or must be an IP version 4 (IPv4)
1010
- * address.</p>
1098
+ * <p>You must specify be an IP version 4 address or Domain Name System (DNS)-compliant
1099
+ * name.</p>
1011
1100
  * </note>
1012
1101
  */
1013
1102
  ServerHostname: string | undefined;
1014
1103
  /**
1015
- * <p>Contains a list of Amazon Resource Names (ARNs) of agents that are used to connect to
1016
- * an NFS server. </p>
1104
+ * <p>Specifies the Amazon Resource Names (ARNs) of agents that DataSync uses to
1105
+ * connect to your NFS file server. </p>
1017
1106
  * <p>If you are copying data to or from your Snowcone device, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone">NFS Server on
1018
1107
  * Snowcone</a> for more information.</p>
1019
1108
  */
1020
1109
  OnPremConfig: OnPremConfig | undefined;
1021
1110
  /**
1022
- * <p>The NFS mount options that DataSync can use to mount your NFS share.</p>
1111
+ * <p>Specifies the mount options that DataSync can use to mount your NFS
1112
+ * share.</p>
1023
1113
  */
1024
1114
  MountOptions?: NfsMountOptions;
1025
1115
  /**
1026
- * <p>The key-value pair that represents the tag that you want to add to the location. The
1027
- * value can be an empty string. We recommend using tags to name your resources.</p>
1116
+ * <p>Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources.
1117
+ * We recommend creating at least a name tag for your location.</p>
1028
1118
  */
1029
1119
  Tags?: TagListEntry[];
1030
1120
  }
@@ -1034,8 +1124,7 @@ export interface CreateLocationNfsRequest {
1034
1124
  */
1035
1125
  export interface CreateLocationNfsResponse {
1036
1126
  /**
1037
- * <p>The Amazon Resource Name (ARN) of the source NFS file system location that is
1038
- * created.</p>
1127
+ * <p>The ARN of the transfer location that you created for your NFS file server.</p>
1039
1128
  */
1040
1129
  LocationArn?: string;
1041
1130
  }
@@ -1102,10 +1191,24 @@ export interface CreateLocationObjectStorageRequest {
1102
1191
  */
1103
1192
  Tags?: TagListEntry[];
1104
1193
  /**
1105
- * <p>Specifies a certificate to authenticate with an object storage system that uses a private
1106
- * or self-signed certificate authority (CA). You must specify a Base64-encoded <code>.pem</code>
1107
- * file (for example, <code>file:///home/user/.ssh/storage_sys_certificate.pem</code>). The
1108
- * certificate can be up to 32768 bytes (before Base64 encoding).</p>
1194
+ * <p>Specifies a file with the certificates that are used to sign the object storage server's
1195
+ * certificate (for example, <code>file:///home/user/.ssh/storage_sys_certificate.pem</code>).
1196
+ * The file you specify must include the following:</p>
1197
+ * <ul>
1198
+ * <li>
1199
+ * <p>The certificate of the signing certificate authority (CA)</p>
1200
+ * </li>
1201
+ * <li>
1202
+ * <p>Any intermediate certificates</p>
1203
+ * </li>
1204
+ * <li>
1205
+ * <p>base64 encoding</p>
1206
+ * </li>
1207
+ * <li>
1208
+ * <p>A <code>.pem</code> extension</p>
1209
+ * </li>
1210
+ * </ul>
1211
+ * <p>The file can be up to 32768 bytes (before base64 encoding).</p>
1109
1212
  * <p>To use this parameter, configure <code>ServerProtocol</code> to <code>HTTPS</code>.</p>
1110
1213
  */
1111
1214
  ServerCertificate?: Uint8Array;
@@ -1635,11 +1738,9 @@ export interface Options {
1635
1738
  */
1636
1739
  BytesPerSecond?: number;
1637
1740
  /**
1638
- * <p>Specifies whether tasks should be queued before executing the tasks. The default is
1639
- * <code>ENABLED</code>, which means the tasks will be queued.</p>
1640
- * <p>If you use the same agent to run multiple tasks, you can enable the tasks to run in
1641
- * series. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#queue-task-execution">Queueing task
1642
- * executions</a>.</p>
1741
+ * <p>Specifies whether your transfer tasks should be put into a queue during certain scenarios
1742
+ * when <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#running-multiple-tasks">running multiple
1743
+ * tasks</a>. This is <code>ENABLED</code> by default.</p>
1643
1744
  */
1644
1745
  TaskQueueing?: TaskQueueing | string;
1645
1746
  /**
@@ -1869,30 +1970,27 @@ export declare const EndpointType: {
1869
1970
  export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
1870
1971
  /**
1871
1972
  * @public
1872
- * <p>The VPC endpoint, subnet, and security group that an agent uses to access IP addresses in
1873
- * a VPC (Virtual Private Cloud).</p>
1973
+ * <p>Specifies how your DataSync agent connects to Amazon Web Services using a
1974
+ * virtual private cloud (VPC) service endpoint. An agent that uses a VPC endpoint isn't
1975
+ * accessible over the public internet.</p>
1874
1976
  */
1875
1977
  export interface PrivateLinkConfig {
1876
1978
  /**
1877
- * <p>The ID of the VPC endpoint that is configured for an agent. An agent that is configured
1878
- * with a VPC endpoint will not be accessible over the public internet.</p>
1979
+ * <p>Specifies the ID of the VPC endpoint that your agent connects to.</p>
1879
1980
  */
1880
1981
  VpcEndpointId?: string;
1881
1982
  /**
1882
- * <p>The private endpoint that is configured for an agent that has access to IP addresses in a
1883
- * <a href="https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html">PrivateLink</a>. An agent that is configured with this endpoint will not be accessible
1884
- * over the public internet.</p>
1983
+ * <p>Specifies the VPC endpoint provided by <a href="https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html">Amazon Web Services PrivateLink</a> that
1984
+ * your agent connects to.</p>
1885
1985
  */
1886
1986
  PrivateLinkEndpoint?: string;
1887
1987
  /**
1888
- * <p>The Amazon Resource Names (ARNs) of the subnets that are configured for an agent activated
1889
- * in a VPC or an agent that has access to a VPC endpoint.</p>
1988
+ * <p>Specifies the ARN of the subnet where your VPC endpoint is located. You can only specify
1989
+ * one ARN.</p>
1890
1990
  */
1891
1991
  SubnetArns?: string[];
1892
1992
  /**
1893
- * <p>The Amazon Resource Names (ARNs) of the security groups that are configured for the EC2
1894
- * resource that hosts an agent activated in a VPC or an agent that has access to a VPC
1895
- * endpoint.</p>
1993
+ * <p>Specifies the Amazon Resource Names (ARN) of the security group that provides DataSync access to your VPC endpoint. You can only specify one ARN.</p>
1896
1994
  */
1897
1995
  SecurityGroupArns?: string[];
1898
1996
  }
@@ -1991,6 +2089,50 @@ export interface DescribeDiscoveryJobResponse {
1991
2089
  */
1992
2090
  JobEndTime?: Date;
1993
2091
  }
2092
+ /**
2093
+ * @public
2094
+ */
2095
+ export interface DescribeLocationAzureBlobRequest {
2096
+ /**
2097
+ * <p>Specifies the Amazon Resource Name (ARN) of your Azure Blob Storage transfer location.</p>
2098
+ */
2099
+ LocationArn: string | undefined;
2100
+ }
2101
+ /**
2102
+ * @public
2103
+ */
2104
+ export interface DescribeLocationAzureBlobResponse {
2105
+ /**
2106
+ * <p>The ARN of your Azure Blob Storage transfer location.</p>
2107
+ */
2108
+ LocationArn?: string;
2109
+ /**
2110
+ * <p>The URL of the Azure Blob Storage container involved in your transfer.</p>
2111
+ */
2112
+ LocationUri?: string;
2113
+ /**
2114
+ * <p>The authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
2115
+ */
2116
+ AuthenticationType?: AzureBlobAuthenticationType | string;
2117
+ /**
2118
+ * <p>The type of blob that you want your objects or files to be when transferring them into
2119
+ * Azure Blob Storage. Currently, DataSync only supports moving data into Azure Blob
2120
+ * Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
2121
+ */
2122
+ BlobType?: AzureBlobType | string;
2123
+ /**
2124
+ * <p>The access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
2125
+ */
2126
+ AccessTier?: AzureAccessTier | string;
2127
+ /**
2128
+ * <p>The ARNs of the DataSync agents that can connect with your Azure Blob Storage container.</p>
2129
+ */
2130
+ AgentArns?: string[];
2131
+ /**
2132
+ * <p>The time that your Azure Blob Storage transfer location was created.</p>
2133
+ */
2134
+ CreationTime?: Date;
2135
+ }
1994
2136
  /**
1995
2137
  * @public
1996
2138
  * <p>DescribeLocationEfsRequest</p>
@@ -2295,7 +2437,7 @@ export interface DescribeLocationNfsResponse {
2295
2437
  */
2296
2438
  OnPremConfig?: OnPremConfig;
2297
2439
  /**
2298
- * <p>The NFS mount options that DataSync used to mount your NFS share.</p>
2440
+ * <p>The mount options that DataSync uses to mount your NFS share.</p>
2299
2441
  */
2300
2442
  MountOptions?: NfsMountOptions;
2301
2443
  /**
@@ -2900,6 +3042,10 @@ export interface NetAppONTAPCluster {
2900
3042
  * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table">Recommendation statuses</a>.</p>
2901
3043
  */
2902
3044
  RecommendationStatus?: RecommendationStatus | string;
3045
+ /**
3046
+ * <p>The number of LUNs (logical unit numbers) in the cluster.</p>
3047
+ */
3048
+ LunCount?: number;
2903
3049
  }
2904
3050
  /**
2905
3051
  * @public
@@ -2964,6 +3110,10 @@ export interface NetAppONTAPSVM {
2964
3110
  * <p>The amount of storage in the SVM that's being used for snapshots.</p>
2965
3111
  */
2966
3112
  TotalSnapshotCapacityUsed?: number;
3113
+ /**
3114
+ * <p>The number of LUNs (logical unit numbers) in the SVM.</p>
3115
+ */
3116
+ LunCount?: number;
2967
3117
  }
2968
3118
  /**
2969
3119
  * @public
@@ -3032,6 +3182,10 @@ export interface NetAppONTAPVolume {
3032
3182
  * <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table">Recommendation statuses</a>.</p>
3033
3183
  */
3034
3184
  RecommendationStatus?: RecommendationStatus | string;
3185
+ /**
3186
+ * <p>The number of LUNs (logical unit numbers) in the volume.</p>
3187
+ */
3188
+ LunCount?: number;
3035
3189
  }
3036
3190
  /**
3037
3191
  * @public
@@ -3079,7 +3233,7 @@ export interface DescribeStorageSystemResourcesResponse {
3079
3233
  */
3080
3234
  export interface DescribeTaskRequest {
3081
3235
  /**
3082
- * <p>The Amazon Resource Name (ARN) of the task to describe.</p>
3236
+ * <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
3083
3237
  */
3084
3238
  TaskArn: string | undefined;
3085
3239
  }
@@ -3194,7 +3348,7 @@ export interface DescribeTaskResponse {
3194
3348
  */
3195
3349
  export interface DescribeTaskExecutionRequest {
3196
3350
  /**
3197
- * <p>The Amazon Resource Name (ARN) of the task that is being executed.</p>
3351
+ * <p>Specifies the Amazon Resource Name (ARN) of the transfer task that's running.</p>
3198
3352
  */
3199
3353
  TaskExecutionArn: string | undefined;
3200
3354
  }
@@ -4023,6 +4177,49 @@ export interface UpdateDiscoveryJobRequest {
4023
4177
  */
4024
4178
  export interface UpdateDiscoveryJobResponse {
4025
4179
  }
4180
+ /**
4181
+ * @public
4182
+ */
4183
+ export interface UpdateLocationAzureBlobRequest {
4184
+ /**
4185
+ * <p>Specifies the ARN of the Azure Blob Storage transfer location that you're updating.</p>
4186
+ */
4187
+ LocationArn: string | undefined;
4188
+ /**
4189
+ * <p>Specifies path segments if you want to limit your transfer to a virtual directory in your
4190
+ * container (for example, <code>/my/images</code>).</p>
4191
+ */
4192
+ Subdirectory?: string;
4193
+ /**
4194
+ * <p>Specifies the authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
4195
+ */
4196
+ AuthenticationType?: AzureBlobAuthenticationType | string;
4197
+ /**
4198
+ * <p>Specifies the SAS configuration that allows DataSync to access your Azure Blob Storage.</p>
4199
+ */
4200
+ SasConfiguration?: AzureBlobSasConfiguration;
4201
+ /**
4202
+ * <p>Specifies the type of blob that you want your objects or files to be when transferring
4203
+ * them into Azure Blob Storage. Currently, DataSync only supports moving data into
4204
+ * Azure Blob Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
4205
+ */
4206
+ BlobType?: AzureBlobType | string;
4207
+ /**
4208
+ * <p>Specifies the access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
4209
+ */
4210
+ AccessTier?: AzureAccessTier | string;
4211
+ /**
4212
+ * <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect with your Azure Blob Storage container.</p>
4213
+ * <p>You can specify more than one agent. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html">Using multiple
4214
+ * agents for your transfer</a>.</p>
4215
+ */
4216
+ AgentArns?: string[];
4217
+ }
4218
+ /**
4219
+ * @public
4220
+ */
4221
+ export interface UpdateLocationAzureBlobResponse {
4222
+ }
4026
4223
  /**
4027
4224
  * @public
4028
4225
  */
@@ -4101,14 +4298,15 @@ export interface UpdateLocationHdfsResponse {
4101
4298
  */
4102
4299
  export interface UpdateLocationNfsRequest {
4103
4300
  /**
4104
- * <p>The Amazon Resource Name (ARN) of the NFS location to update.</p>
4301
+ * <p>Specifies the Amazon Resource Name (ARN) of the NFS location that you want to
4302
+ * update.</p>
4105
4303
  */
4106
4304
  LocationArn: string | undefined;
4107
4305
  /**
4108
- * <p>The subdirectory in the NFS file system that is used to read data from the NFS source
4109
- * location or write data to the NFS destination. The NFS path should be a path that's
4110
- * exported by the NFS server, or a subdirectory of that path. The path should be such that it
4111
- * can be mounted by other NFS clients in your network.</p>
4306
+ * <p>Specifies the subdirectory in your NFS file system that DataSync uses to read
4307
+ * from or write to during a transfer. The NFS path should be exported by the NFS server, or a
4308
+ * subdirectory of that path. The path should be such that it can be mounted by other NFS clients
4309
+ * in your network.</p>
4112
4310
  * <p>To see all the paths exported by your NFS server, run "<code>showmount -e
4113
4311
  * nfs-server-name</code>" from an NFS client that has access to your server. You can specify
4114
4312
  * any directory that appears in the results, and any subdirectory of that directory. Ensure that
@@ -4121,8 +4319,6 @@ export interface UpdateLocationNfsRequest {
4121
4319
  * execute access.</p>
4122
4320
  * <p>If you are copying data to or from your Snowcone device, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone">NFS Server on
4123
4321
  * Snowcone</a> for more information.</p>
4124
- * <p>For information about NFS export configuration, see 18.7. The /etc/exports
4125
- * Configuration File in the Red Hat Enterprise Linux documentation.</p>
4126
4322
  */
4127
4323
  Subdirectory?: string;
4128
4324
  /**
@@ -4272,7 +4468,7 @@ export interface UpdateStorageSystemRequest {
4272
4468
  ServerConfiguration?: DiscoveryServerConfiguration;
4273
4469
  /**
4274
4470
  * <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads
4275
- * your on-premises storage system.</p>
4471
+ * your on-premises storage system. You can only specify one ARN.</p>
4276
4472
  */
4277
4473
  AgentArns?: string[];
4278
4474
  /**
@@ -4375,6 +4571,14 @@ export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
4375
4571
  * @internal
4376
4572
  */
4377
4573
  export declare const AddStorageSystemRequestFilterSensitiveLog: (obj: AddStorageSystemRequest) => any;
4574
+ /**
4575
+ * @internal
4576
+ */
4577
+ export declare const AzureBlobSasConfigurationFilterSensitiveLog: (obj: AzureBlobSasConfiguration) => any;
4578
+ /**
4579
+ * @internal
4580
+ */
4581
+ export declare const CreateLocationAzureBlobRequestFilterSensitiveLog: (obj: CreateLocationAzureBlobRequest) => any;
4378
4582
  /**
4379
4583
  * @internal
4380
4584
  */
@@ -4411,6 +4615,10 @@ export declare const DescribeLocationFsxOntapResponseFilterSensitiveLog: (obj: D
4411
4615
  * @internal
4412
4616
  */
4413
4617
  export declare const DescribeLocationFsxOpenZfsResponseFilterSensitiveLog: (obj: DescribeLocationFsxOpenZfsResponse) => any;
4618
+ /**
4619
+ * @internal
4620
+ */
4621
+ export declare const UpdateLocationAzureBlobRequestFilterSensitiveLog: (obj: UpdateLocationAzureBlobRequest) => any;
4414
4622
  /**
4415
4623
  * @internal
4416
4624
  */