@aws-sdk/client-datasync 3.39.0 → 3.43.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.
- package/CHANGELOG.md +39 -0
- package/dist-cjs/DataSync.js +45 -0
- package/dist-cjs/commands/CreateLocationHdfsCommand.js +36 -0
- package/dist-cjs/commands/DescribeLocationHdfsCommand.js +36 -0
- package/dist-cjs/commands/UpdateLocationHdfsCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoints.js +151 -26
- package/dist-cjs/models/models_0.js +70 -3
- package/dist-cjs/protocols/Aws_json1_1.js +336 -2
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/DataSync.js +45 -0
- package/dist-es/commands/CreateLocationHdfsCommand.js +39 -0
- package/dist-es/commands/DescribeLocationHdfsCommand.js +39 -0
- package/dist-es/commands/UpdateLocationHdfsCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoints.js +151 -26
- package/dist-es/models/models_0.js +51 -0
- package/dist-es/protocols/Aws_json1_1.js +328 -0
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/DataSync.d.ts +23 -0
- package/dist-types/DataSyncClient.d.ts +13 -2
- package/dist-types/commands/CancelTaskExecutionCommand.d.ts +1 -1
- package/dist-types/commands/CreateAgentCommand.d.ts +1 -1
- package/dist-types/commands/CreateLocationEfsCommand.d.ts +1 -1
- package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +1 -1
- package/dist-types/commands/CreateLocationHdfsCommand.d.ts +35 -0
- package/dist-types/commands/CreateLocationNfsCommand.d.ts +1 -1
- package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +1 -1
- package/dist-types/commands/CreateLocationS3Command.d.ts +1 -1
- package/dist-types/commands/CreateLocationSmbCommand.d.ts +1 -1
- package/dist-types/commands/CreateTaskCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAgentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLocationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTaskCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAgentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationEfsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +36 -0
- package/dist-types/commands/DescribeLocationNfsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationS3Command.d.ts +1 -1
- package/dist-types/commands/DescribeLocationSmbCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListAgentsCommand.d.ts +1 -1
- package/dist-types/commands/ListLocationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTaskExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTasksCommand.d.ts +1 -1
- package/dist-types/commands/StartTaskExecutionCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +36 -0
- package/dist-types/commands/UpdateLocationNfsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLocationSmbCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTaskCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTaskExecutionCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +343 -25
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/DataSync.d.ts +15 -0
- package/dist-types/ts3.4/DataSyncClient.d.ts +9 -2
- package/dist-types/ts3.4/commands/CreateLocationHdfsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLocationHdfsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateLocationHdfsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +154 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
|
@@ -87,7 +87,7 @@ export declare namespace InvalidRequestException {
|
|
|
87
87
|
const filterSensitiveLog: (obj: InvalidRequestException) => any;
|
|
88
88
|
}
|
|
89
89
|
/**
|
|
90
|
-
* <p>Represents a single entry in a list of
|
|
90
|
+
* <p>Represents a single entry in a list of Amazon Web Services resource tags. <code>TagListEntry</code>
|
|
91
91
|
* returns an array that contains a list of tasks when the
|
|
92
92
|
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_ListTagsForResource.html">ListTagsForResource</a>
|
|
93
93
|
* operation is called.</p>
|
|
@@ -342,6 +342,178 @@ export declare namespace CreateLocationFsxWindowsResponse {
|
|
|
342
342
|
*/
|
|
343
343
|
const filterSensitiveLog: (obj: CreateLocationFsxWindowsResponse) => any;
|
|
344
344
|
}
|
|
345
|
+
export declare enum HdfsAuthenticationType {
|
|
346
|
+
KERBEROS = "KERBEROS",
|
|
347
|
+
SIMPLE = "SIMPLE"
|
|
348
|
+
}
|
|
349
|
+
/**
|
|
350
|
+
* <p>The NameNode of the Hadoop Distributed File System (HDFS). The NameNode manages the file
|
|
351
|
+
* system's namespace. The NameNode performs operations such as opening, closing, and renaming
|
|
352
|
+
* files and directories. The NameNode contains the information to map blocks of data to the
|
|
353
|
+
* DataNodes.</p>
|
|
354
|
+
*/
|
|
355
|
+
export interface HdfsNameNode {
|
|
356
|
+
/**
|
|
357
|
+
* <p>The hostname of the NameNode in the HDFS cluster. This value is the IP address or Domain
|
|
358
|
+
* Name Service (DNS) name of the NameNode. An agent that's installed on-premises uses this
|
|
359
|
+
* hostname to communicate with the NameNode in the network.</p>
|
|
360
|
+
*/
|
|
361
|
+
Hostname: string | undefined;
|
|
362
|
+
/**
|
|
363
|
+
* <p>The port that the NameNode uses to listen to client requests.</p>
|
|
364
|
+
*/
|
|
365
|
+
Port: number | undefined;
|
|
366
|
+
}
|
|
367
|
+
export declare namespace HdfsNameNode {
|
|
368
|
+
/**
|
|
369
|
+
* @internal
|
|
370
|
+
*/
|
|
371
|
+
const filterSensitiveLog: (obj: HdfsNameNode) => any;
|
|
372
|
+
}
|
|
373
|
+
export declare enum HdfsDataTransferProtection {
|
|
374
|
+
AUTHENTICATION = "AUTHENTICATION",
|
|
375
|
+
DISABLED = "DISABLED",
|
|
376
|
+
INTEGRITY = "INTEGRITY",
|
|
377
|
+
PRIVACY = "PRIVACY"
|
|
378
|
+
}
|
|
379
|
+
export declare enum HdfsRpcProtection {
|
|
380
|
+
AUTHENTICATION = "AUTHENTICATION",
|
|
381
|
+
DISABLED = "DISABLED",
|
|
382
|
+
INTEGRITY = "INTEGRITY",
|
|
383
|
+
PRIVACY = "PRIVACY"
|
|
384
|
+
}
|
|
385
|
+
/**
|
|
386
|
+
* <p>The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC)
|
|
387
|
+
* and data transfer privacy settings configured on the Hadoop Distributed File System (HDFS)
|
|
388
|
+
* cluster.</p>
|
|
389
|
+
*/
|
|
390
|
+
export interface QopConfiguration {
|
|
391
|
+
/**
|
|
392
|
+
* <p>The RPC protection setting configured on the HDFS cluster. This setting corresponds to
|
|
393
|
+
* your <code>hadoop.rpc.protection</code> setting in your <code>core-site.xml</code> file on
|
|
394
|
+
* your Hadoop cluster.</p>
|
|
395
|
+
*/
|
|
396
|
+
RpcProtection?: HdfsRpcProtection | string;
|
|
397
|
+
/**
|
|
398
|
+
* <p>The data transfer protection setting configured on the HDFS cluster. This setting
|
|
399
|
+
* corresponds to your <code>dfs.data.transfer.protection</code> setting in the
|
|
400
|
+
* <code>hdfs-site.xml</code> file on your Hadoop cluster.</p>
|
|
401
|
+
*/
|
|
402
|
+
DataTransferProtection?: HdfsDataTransferProtection | string;
|
|
403
|
+
}
|
|
404
|
+
export declare namespace QopConfiguration {
|
|
405
|
+
/**
|
|
406
|
+
* @internal
|
|
407
|
+
*/
|
|
408
|
+
const filterSensitiveLog: (obj: QopConfiguration) => any;
|
|
409
|
+
}
|
|
410
|
+
export interface CreateLocationHdfsRequest {
|
|
411
|
+
/**
|
|
412
|
+
* <p>A subdirectory in the HDFS cluster. This subdirectory is used to read data from or write
|
|
413
|
+
* data to the HDFS cluster. If the subdirectory isn't specified, it will default to
|
|
414
|
+
* <code>/</code>.</p>
|
|
415
|
+
*/
|
|
416
|
+
Subdirectory?: string;
|
|
417
|
+
/**
|
|
418
|
+
* <p>The NameNode that manages the HDFS namespace. The NameNode performs operations such as
|
|
419
|
+
* opening, closing, and renaming files and directories. The NameNode contains the information to
|
|
420
|
+
* map blocks of data to the DataNodes. You can use only one NameNode.</p>
|
|
421
|
+
*/
|
|
422
|
+
NameNodes: HdfsNameNode[] | undefined;
|
|
423
|
+
/**
|
|
424
|
+
* <p>The size of data blocks to write into the HDFS cluster. The block size must be a multiple
|
|
425
|
+
* of 512 bytes. The default block size is 128 mebibytes (MiB).</p>
|
|
426
|
+
*/
|
|
427
|
+
BlockSize?: number;
|
|
428
|
+
/**
|
|
429
|
+
* <p>The number of DataNodes to replicate the data to when writing to the HDFS cluster. By
|
|
430
|
+
* default, data is replicated to three DataNodes.</p>
|
|
431
|
+
*/
|
|
432
|
+
ReplicationFactor?: number;
|
|
433
|
+
/**
|
|
434
|
+
* <p>The URI of the HDFS cluster's Key Management Server (KMS). </p>
|
|
435
|
+
*/
|
|
436
|
+
KmsKeyProviderUri?: string;
|
|
437
|
+
/**
|
|
438
|
+
* <p>The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC)
|
|
439
|
+
* and data transfer protection settings configured on the Hadoop Distributed File System (HDFS)
|
|
440
|
+
* cluster. If <code>QopConfiguration</code> isn't specified, <code>RpcProtection</code> and
|
|
441
|
+
* <code>DataTransferProtection</code> default to <code>PRIVACY</code>. If you set
|
|
442
|
+
* <code>RpcProtection</code> or <code>DataTransferProtection</code>, the other parameter
|
|
443
|
+
* assumes the same value. </p>
|
|
444
|
+
*/
|
|
445
|
+
QopConfiguration?: QopConfiguration;
|
|
446
|
+
/**
|
|
447
|
+
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
448
|
+
*/
|
|
449
|
+
AuthenticationType: HdfsAuthenticationType | string | undefined;
|
|
450
|
+
/**
|
|
451
|
+
* <p>The user name used to identify the client on the host operating system. </p>
|
|
452
|
+
* <note>
|
|
453
|
+
* <p>If <code>SIMPLE</code> is specified for <code>AuthenticationType</code>, this parameter
|
|
454
|
+
* is required. </p>
|
|
455
|
+
* </note>
|
|
456
|
+
*/
|
|
457
|
+
SimpleUser?: string;
|
|
458
|
+
/**
|
|
459
|
+
* <p>The Kerberos principal with access to the files and folders on the HDFS cluster. </p>
|
|
460
|
+
* <note>
|
|
461
|
+
* <p>If <code>KERBEROS</code> is specified for <code>AuthenticationType</code>, this
|
|
462
|
+
* parameter is required.</p>
|
|
463
|
+
* </note>
|
|
464
|
+
*/
|
|
465
|
+
KerberosPrincipal?: string;
|
|
466
|
+
/**
|
|
467
|
+
* <p>The Kerberos key table (keytab) that contains mappings between the defined Kerberos
|
|
468
|
+
* principal and the encrypted keys. You can load the keytab from a file by providing the file's
|
|
469
|
+
* address. If you're using the CLI, it performs base64 encoding for you.
|
|
470
|
+
* Otherwise, provide the base64-encoded text. </p>
|
|
471
|
+
* <note>
|
|
472
|
+
* <p>If <code>KERBEROS</code> is specified for <code>AuthenticationType</code>, this
|
|
473
|
+
* parameter is required. </p>
|
|
474
|
+
* </note>
|
|
475
|
+
*/
|
|
476
|
+
KerberosKeytab?: Uint8Array;
|
|
477
|
+
/**
|
|
478
|
+
* <p>The <code>krb5.conf</code> file that contains the Kerberos configuration information. You
|
|
479
|
+
* can load the <code>krb5.conf</code> file by providing the file's address. If you're using the
|
|
480
|
+
* CLI, it performs the base64 encoding for you. Otherwise, provide the
|
|
481
|
+
* base64-encoded text. </p>
|
|
482
|
+
* <note>
|
|
483
|
+
* <p>If <code>KERBEROS</code> is specified for <code>AuthenticationType</code>, this
|
|
484
|
+
* parameter is required.</p>
|
|
485
|
+
* </note>
|
|
486
|
+
*/
|
|
487
|
+
KerberosKrb5Conf?: Uint8Array;
|
|
488
|
+
/**
|
|
489
|
+
* <p>The Amazon Resource Names (ARNs) of the agents that are used to connect to the HDFS
|
|
490
|
+
* cluster.</p>
|
|
491
|
+
*/
|
|
492
|
+
AgentArns: string[] | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* <p>The key-value pair that represents the tag that you want to add to the location. The value
|
|
495
|
+
* can be an empty string. We recommend using tags to name your resources. </p>
|
|
496
|
+
*/
|
|
497
|
+
Tags?: TagListEntry[];
|
|
498
|
+
}
|
|
499
|
+
export declare namespace CreateLocationHdfsRequest {
|
|
500
|
+
/**
|
|
501
|
+
* @internal
|
|
502
|
+
*/
|
|
503
|
+
const filterSensitiveLog: (obj: CreateLocationHdfsRequest) => any;
|
|
504
|
+
}
|
|
505
|
+
export interface CreateLocationHdfsResponse {
|
|
506
|
+
/**
|
|
507
|
+
* <p>The ARN of the source HDFS cluster location that's created. </p>
|
|
508
|
+
*/
|
|
509
|
+
LocationArn?: string;
|
|
510
|
+
}
|
|
511
|
+
export declare namespace CreateLocationHdfsResponse {
|
|
512
|
+
/**
|
|
513
|
+
* @internal
|
|
514
|
+
*/
|
|
515
|
+
const filterSensitiveLog: (obj: CreateLocationHdfsResponse) => any;
|
|
516
|
+
}
|
|
345
517
|
export declare enum NfsVersion {
|
|
346
518
|
AUTOMATIC = "AUTOMATIC",
|
|
347
519
|
NFS3 = "NFS3",
|
|
@@ -373,7 +545,7 @@ export interface NfsMountOptions {
|
|
|
373
545
|
* <b>
|
|
374
546
|
* <a href="https://tools.ietf.org/html/rfc3530">NFSv4.0</a>
|
|
375
547
|
* </b> - stateful, firewall-friendly protocol version that supports
|
|
376
|
-
* delegations and pseudo
|
|
548
|
+
* delegations and pseudo file systems.</p>
|
|
377
549
|
* </li>
|
|
378
550
|
* <li>
|
|
379
551
|
* <p>
|
|
@@ -1146,9 +1318,8 @@ export interface CreateTaskRequest {
|
|
|
1146
1318
|
Tags?: TagListEntry[];
|
|
1147
1319
|
/**
|
|
1148
1320
|
* <p>A list of filter rules that determines which files to include when running a task. The
|
|
1149
|
-
* pattern
|
|
1150
|
-
*
|
|
1151
|
-
* <code>"/folder1|/folder2</code>"</p>
|
|
1321
|
+
* pattern contains a single filter string that consists of the patterns to include. The patterns
|
|
1322
|
+
* are delimited by "|" (that is, a pipe), for example, <code>"/folder1|/folder2"</code>.</p>
|
|
1152
1323
|
*/
|
|
1153
1324
|
Includes?: FilterRule[];
|
|
1154
1325
|
}
|
|
@@ -1434,6 +1605,79 @@ export declare namespace DescribeLocationFsxWindowsResponse {
|
|
|
1434
1605
|
*/
|
|
1435
1606
|
const filterSensitiveLog: (obj: DescribeLocationFsxWindowsResponse) => any;
|
|
1436
1607
|
}
|
|
1608
|
+
export interface DescribeLocationHdfsRequest {
|
|
1609
|
+
/**
|
|
1610
|
+
* <p>The Amazon Resource Name (ARN) of the HDFS cluster location to describe.</p>
|
|
1611
|
+
*/
|
|
1612
|
+
LocationArn: string | undefined;
|
|
1613
|
+
}
|
|
1614
|
+
export declare namespace DescribeLocationHdfsRequest {
|
|
1615
|
+
/**
|
|
1616
|
+
* @internal
|
|
1617
|
+
*/
|
|
1618
|
+
const filterSensitiveLog: (obj: DescribeLocationHdfsRequest) => any;
|
|
1619
|
+
}
|
|
1620
|
+
export interface DescribeLocationHdfsResponse {
|
|
1621
|
+
/**
|
|
1622
|
+
* <p>The ARN of the HDFS cluster location.</p>
|
|
1623
|
+
*/
|
|
1624
|
+
LocationArn?: string;
|
|
1625
|
+
/**
|
|
1626
|
+
* <p>The URI of the HDFS cluster location.</p>
|
|
1627
|
+
*/
|
|
1628
|
+
LocationUri?: string;
|
|
1629
|
+
/**
|
|
1630
|
+
* <p>The NameNode that manage the HDFS namespace. </p>
|
|
1631
|
+
*/
|
|
1632
|
+
NameNodes?: HdfsNameNode[];
|
|
1633
|
+
/**
|
|
1634
|
+
* <p>The size of the data blocks to write into the HDFS cluster. </p>
|
|
1635
|
+
*/
|
|
1636
|
+
BlockSize?: number;
|
|
1637
|
+
/**
|
|
1638
|
+
* <p>The number of DataNodes to replicate the data to when writing to the HDFS cluster. </p>
|
|
1639
|
+
*/
|
|
1640
|
+
ReplicationFactor?: number;
|
|
1641
|
+
/**
|
|
1642
|
+
* <p> The URI of the HDFS cluster's Key Management Server (KMS). </p>
|
|
1643
|
+
*/
|
|
1644
|
+
KmsKeyProviderUri?: string;
|
|
1645
|
+
/**
|
|
1646
|
+
* <p>The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC)
|
|
1647
|
+
* and data transfer protection settings configured on the Hadoop Distributed File System (HDFS)
|
|
1648
|
+
* cluster. </p>
|
|
1649
|
+
*/
|
|
1650
|
+
QopConfiguration?: QopConfiguration;
|
|
1651
|
+
/**
|
|
1652
|
+
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
1653
|
+
*/
|
|
1654
|
+
AuthenticationType?: HdfsAuthenticationType | string;
|
|
1655
|
+
/**
|
|
1656
|
+
* <p>The user name used to identify the client on the host operating system. This parameter is
|
|
1657
|
+
* used if the <code>AuthenticationType</code> is defined as <code>SIMPLE</code>.</p>
|
|
1658
|
+
*/
|
|
1659
|
+
SimpleUser?: string;
|
|
1660
|
+
/**
|
|
1661
|
+
* <p>The Kerberos principal with access to the files and folders on the HDFS cluster. This
|
|
1662
|
+
* parameter is used if the <code>AuthenticationType</code> is defined as
|
|
1663
|
+
* <code>KERBEROS</code>.</p>
|
|
1664
|
+
*/
|
|
1665
|
+
KerberosPrincipal?: string;
|
|
1666
|
+
/**
|
|
1667
|
+
* <p>The ARNs of the agents that are used to connect to the HDFS cluster. </p>
|
|
1668
|
+
*/
|
|
1669
|
+
AgentArns?: string[];
|
|
1670
|
+
/**
|
|
1671
|
+
* <p>The time that the HDFS location was created.</p>
|
|
1672
|
+
*/
|
|
1673
|
+
CreationTime?: Date;
|
|
1674
|
+
}
|
|
1675
|
+
export declare namespace DescribeLocationHdfsResponse {
|
|
1676
|
+
/**
|
|
1677
|
+
* @internal
|
|
1678
|
+
*/
|
|
1679
|
+
const filterSensitiveLog: (obj: DescribeLocationHdfsResponse) => any;
|
|
1680
|
+
}
|
|
1437
1681
|
/**
|
|
1438
1682
|
* <p>DescribeLocationNfsRequest</p>
|
|
1439
1683
|
*/
|
|
@@ -1720,13 +1964,13 @@ export interface DescribeTaskResponse {
|
|
|
1720
1964
|
*/
|
|
1721
1965
|
CloudWatchLogGroupArn?: string;
|
|
1722
1966
|
/**
|
|
1723
|
-
* <p>The Amazon Resource
|
|
1967
|
+
* <p>The Amazon Resource Names (ARNs) of the source elastic network interfaces (ENIs) that were
|
|
1724
1968
|
* created for your subnet.</p>
|
|
1725
1969
|
*/
|
|
1726
1970
|
SourceNetworkInterfaceArns?: string[];
|
|
1727
1971
|
/**
|
|
1728
|
-
* <p>The Amazon Resource
|
|
1729
|
-
*
|
|
1972
|
+
* <p>The Amazon Resource Names (ARNs) of the destination elastic network interfaces (ENIs) that
|
|
1973
|
+
* were created for your subnet.</p>
|
|
1730
1974
|
*/
|
|
1731
1975
|
DestinationNetworkInterfaceArns?: string[];
|
|
1732
1976
|
/**
|
|
@@ -1741,8 +1985,7 @@ export interface DescribeTaskResponse {
|
|
|
1741
1985
|
/**
|
|
1742
1986
|
* <p>A list of filter rules that determines which files to exclude from a task. The list should
|
|
1743
1987
|
* contain a single filter string that consists of the patterns to exclude. The patterns are
|
|
1744
|
-
* delimited by "|" (that is, a pipe), for example
|
|
1745
|
-
* </p>
|
|
1988
|
+
* delimited by "|" (that is, a pipe), for example, <code>"/folder1|/folder2"</code>. </p>
|
|
1746
1989
|
* <p>
|
|
1747
1990
|
* </p>
|
|
1748
1991
|
*/
|
|
@@ -1767,9 +2010,8 @@ export interface DescribeTaskResponse {
|
|
|
1767
2010
|
CreationTime?: Date;
|
|
1768
2011
|
/**
|
|
1769
2012
|
* <p>A list of filter rules that determines which files to include when running a task. The
|
|
1770
|
-
* pattern
|
|
1771
|
-
*
|
|
1772
|
-
* <code>"/folder1|/folder2</code>"</p>
|
|
2013
|
+
* pattern contains a single filter string that consists of the patterns to include. The patterns
|
|
2014
|
+
* are delimited by "|" (that is, a pipe), for example, <code>"/folder1|/folder2</code>".</p>
|
|
1773
2015
|
*/
|
|
1774
2016
|
Includes?: FilterRule[];
|
|
1775
2017
|
}
|
|
@@ -2374,8 +2616,8 @@ export interface StartTaskExecutionRequest {
|
|
|
2374
2616
|
/**
|
|
2375
2617
|
* <p>A list of filter rules that determines which files to include when running a task. The
|
|
2376
2618
|
* pattern should contain a single filter string that consists of the patterns to include. The
|
|
2377
|
-
* patterns are delimited by "|" (that is, a pipe)
|
|
2378
|
-
*
|
|
2619
|
+
* patterns are delimited by "|" (that is, a pipe), for example,
|
|
2620
|
+
* <code>"/folder1|/folder2"</code>. </p>
|
|
2379
2621
|
*
|
|
2380
2622
|
* <p>
|
|
2381
2623
|
* </p>
|
|
@@ -2383,9 +2625,8 @@ export interface StartTaskExecutionRequest {
|
|
|
2383
2625
|
Includes?: FilterRule[];
|
|
2384
2626
|
/**
|
|
2385
2627
|
* <p>A list of filter rules that determines which files to exclude from a task. The list
|
|
2386
|
-
*
|
|
2387
|
-
*
|
|
2388
|
-
* <code>"/folder1|/folder2"</code>. </p>
|
|
2628
|
+
* contains a single filter string that consists of the patterns to exclude. The patterns are
|
|
2629
|
+
* delimited by "|" (that is, a pipe), for example, <code>"/folder1|/folder2"</code>. </p>
|
|
2389
2630
|
*/
|
|
2390
2631
|
Excludes?: FilterRule[];
|
|
2391
2632
|
}
|
|
@@ -2492,6 +2733,85 @@ export declare namespace UpdateAgentResponse {
|
|
|
2492
2733
|
*/
|
|
2493
2734
|
const filterSensitiveLog: (obj: UpdateAgentResponse) => any;
|
|
2494
2735
|
}
|
|
2736
|
+
export interface UpdateLocationHdfsRequest {
|
|
2737
|
+
/**
|
|
2738
|
+
* <p>The Amazon Resource Name (ARN) of the source HDFS cluster location.</p>
|
|
2739
|
+
*/
|
|
2740
|
+
LocationArn: string | undefined;
|
|
2741
|
+
/**
|
|
2742
|
+
* <p>A subdirectory in the HDFS cluster. This subdirectory is used to read data from or write
|
|
2743
|
+
* data to the HDFS cluster.</p>
|
|
2744
|
+
*/
|
|
2745
|
+
Subdirectory?: string;
|
|
2746
|
+
/**
|
|
2747
|
+
* <p>The NameNode that manages the HDFS namespace. The NameNode performs operations such as
|
|
2748
|
+
* opening, closing, and renaming files and directories. The NameNode contains the information to
|
|
2749
|
+
* map blocks of data to the DataNodes. You can use only one NameNode.</p>
|
|
2750
|
+
*/
|
|
2751
|
+
NameNodes?: HdfsNameNode[];
|
|
2752
|
+
/**
|
|
2753
|
+
* <p>The size of the data blocks to write into the HDFS cluster. </p>
|
|
2754
|
+
*/
|
|
2755
|
+
BlockSize?: number;
|
|
2756
|
+
/**
|
|
2757
|
+
* <p>The number of DataNodes to replicate the data to when writing to the HDFS cluster. </p>
|
|
2758
|
+
*/
|
|
2759
|
+
ReplicationFactor?: number;
|
|
2760
|
+
/**
|
|
2761
|
+
* <p>The URI of the HDFS cluster's Key Management Server (KMS). </p>
|
|
2762
|
+
*/
|
|
2763
|
+
KmsKeyProviderUri?: string;
|
|
2764
|
+
/**
|
|
2765
|
+
* <p>The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC)
|
|
2766
|
+
* and data transfer privacy settings configured on the Hadoop Distributed File System (HDFS)
|
|
2767
|
+
* cluster. </p>
|
|
2768
|
+
*/
|
|
2769
|
+
QopConfiguration?: QopConfiguration;
|
|
2770
|
+
/**
|
|
2771
|
+
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
2772
|
+
*/
|
|
2773
|
+
AuthenticationType?: HdfsAuthenticationType | string;
|
|
2774
|
+
/**
|
|
2775
|
+
* <p>The user name used to identify the client on the host operating system.</p>
|
|
2776
|
+
*/
|
|
2777
|
+
SimpleUser?: string;
|
|
2778
|
+
/**
|
|
2779
|
+
* <p>The Kerberos principal with access to the files and folders on the HDFS cluster. </p>
|
|
2780
|
+
*/
|
|
2781
|
+
KerberosPrincipal?: string;
|
|
2782
|
+
/**
|
|
2783
|
+
* <p>The Kerberos key table (keytab) that contains mappings between the defined Kerberos
|
|
2784
|
+
* principal and the encrypted keys. You can load the keytab from a file by providing the file's
|
|
2785
|
+
* address. If you use the AWS CLI, it performs base64 encoding for you. Otherwise, provide the
|
|
2786
|
+
* base64-encoded text.</p>
|
|
2787
|
+
*/
|
|
2788
|
+
KerberosKeytab?: Uint8Array;
|
|
2789
|
+
/**
|
|
2790
|
+
* <p>The <code>krb5.conf</code> file that contains the Kerberos configuration information. You
|
|
2791
|
+
* can load the <code>krb5.conf</code> file by providing the file's address. If you're using the
|
|
2792
|
+
* AWS CLI, it performs the base64 encoding for you. Otherwise, provide the base64-encoded
|
|
2793
|
+
* text.</p>
|
|
2794
|
+
*/
|
|
2795
|
+
KerberosKrb5Conf?: Uint8Array;
|
|
2796
|
+
/**
|
|
2797
|
+
* <p>The ARNs of the agents that are used to connect to the HDFS cluster. </p>
|
|
2798
|
+
*/
|
|
2799
|
+
AgentArns?: string[];
|
|
2800
|
+
}
|
|
2801
|
+
export declare namespace UpdateLocationHdfsRequest {
|
|
2802
|
+
/**
|
|
2803
|
+
* @internal
|
|
2804
|
+
*/
|
|
2805
|
+
const filterSensitiveLog: (obj: UpdateLocationHdfsRequest) => any;
|
|
2806
|
+
}
|
|
2807
|
+
export interface UpdateLocationHdfsResponse {
|
|
2808
|
+
}
|
|
2809
|
+
export declare namespace UpdateLocationHdfsResponse {
|
|
2810
|
+
/**
|
|
2811
|
+
* @internal
|
|
2812
|
+
*/
|
|
2813
|
+
const filterSensitiveLog: (obj: UpdateLocationHdfsResponse) => any;
|
|
2814
|
+
}
|
|
2495
2815
|
export interface UpdateLocationNfsRequest {
|
|
2496
2816
|
/**
|
|
2497
2817
|
* <p>The Amazon Resource Name (ARN) of the NFS location to update.</p>
|
|
@@ -2695,8 +3015,7 @@ export interface UpdateTaskRequest {
|
|
|
2695
3015
|
/**
|
|
2696
3016
|
* <p>A list of filter rules that determines which files to exclude from a task. The list should
|
|
2697
3017
|
* contain a single filter string that consists of the patterns to exclude. The patterns are
|
|
2698
|
-
* delimited by "|" (that is, a pipe), for example
|
|
2699
|
-
* </p>
|
|
3018
|
+
* delimited by "|" (that is, a pipe), for example, <code>"/folder1|/folder2"</code>.</p>
|
|
2700
3019
|
* <p>
|
|
2701
3020
|
* </p>
|
|
2702
3021
|
*/
|
|
@@ -2713,15 +3032,14 @@ export interface UpdateTaskRequest {
|
|
|
2713
3032
|
*/
|
|
2714
3033
|
Name?: string;
|
|
2715
3034
|
/**
|
|
2716
|
-
* <p>The Amazon Resource Name (ARN) of the resource name of the CloudWatch
|
|
2717
|
-
*
|
|
3035
|
+
* <p>The Amazon Resource Name (ARN) of the resource name of the Amazon CloudWatch log
|
|
3036
|
+
* group.</p>
|
|
2718
3037
|
*/
|
|
2719
3038
|
CloudWatchLogGroupArn?: string;
|
|
2720
3039
|
/**
|
|
2721
3040
|
* <p>A list of filter rules that determines which files to include when running a task. The
|
|
2722
|
-
* pattern
|
|
2723
|
-
*
|
|
2724
|
-
* <code>"/folder1|/folder2</code>"</p>
|
|
3041
|
+
* pattern contains a single filter string that consists of the patterns to include. The patterns
|
|
3042
|
+
* are delimited by "|" (that is, a pipe), for example, <code>"/folder1|/folder2"</code>.</p>
|
|
2725
3043
|
*/
|
|
2726
3044
|
Includes?: FilterRule[];
|
|
2727
3045
|
}
|
|
@@ -4,6 +4,7 @@ import { CancelTaskExecutionCommandInput, CancelTaskExecutionCommandOutput } fro
|
|
|
4
4
|
import { CreateAgentCommandInput, CreateAgentCommandOutput } from "../commands/CreateAgentCommand";
|
|
5
5
|
import { CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput } from "../commands/CreateLocationEfsCommand";
|
|
6
6
|
import { CreateLocationFsxWindowsCommandInput, CreateLocationFsxWindowsCommandOutput } from "../commands/CreateLocationFsxWindowsCommand";
|
|
7
|
+
import { CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput } from "../commands/CreateLocationHdfsCommand";
|
|
7
8
|
import { CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput } from "../commands/CreateLocationNfsCommand";
|
|
8
9
|
import { CreateLocationObjectStorageCommandInput, CreateLocationObjectStorageCommandOutput } from "../commands/CreateLocationObjectStorageCommand";
|
|
9
10
|
import { CreateLocationS3CommandInput, CreateLocationS3CommandOutput } from "../commands/CreateLocationS3Command";
|
|
@@ -15,6 +16,7 @@ import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "../commands/Del
|
|
|
15
16
|
import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "../commands/DescribeAgentCommand";
|
|
16
17
|
import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "../commands/DescribeLocationEfsCommand";
|
|
17
18
|
import { DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput } from "../commands/DescribeLocationFsxWindowsCommand";
|
|
19
|
+
import { DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput } from "../commands/DescribeLocationHdfsCommand";
|
|
18
20
|
import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } from "../commands/DescribeLocationNfsCommand";
|
|
19
21
|
import { DescribeLocationObjectStorageCommandInput, DescribeLocationObjectStorageCommandOutput } from "../commands/DescribeLocationObjectStorageCommand";
|
|
20
22
|
import { DescribeLocationS3CommandInput, DescribeLocationS3CommandOutput } from "../commands/DescribeLocationS3Command";
|
|
@@ -30,6 +32,7 @@ import { StartTaskExecutionCommandInput, StartTaskExecutionCommandOutput } from
|
|
|
30
32
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
31
33
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
32
34
|
import { UpdateAgentCommandInput, UpdateAgentCommandOutput } from "../commands/UpdateAgentCommand";
|
|
35
|
+
import { UpdateLocationHdfsCommandInput, UpdateLocationHdfsCommandOutput } from "../commands/UpdateLocationHdfsCommand";
|
|
33
36
|
import { UpdateLocationNfsCommandInput, UpdateLocationNfsCommandOutput } from "../commands/UpdateLocationNfsCommand";
|
|
34
37
|
import { UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCommandOutput } from "../commands/UpdateLocationObjectStorageCommand";
|
|
35
38
|
import { UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput } from "../commands/UpdateLocationSmbCommand";
|
|
@@ -39,6 +42,7 @@ export declare const serializeAws_json1_1CancelTaskExecutionCommand: (input: Can
|
|
|
39
42
|
export declare const serializeAws_json1_1CreateAgentCommand: (input: CreateAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
43
|
export declare const serializeAws_json1_1CreateLocationEfsCommand: (input: CreateLocationEfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
44
|
export declare const serializeAws_json1_1CreateLocationFsxWindowsCommand: (input: CreateLocationFsxWindowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
+
export declare const serializeAws_json1_1CreateLocationHdfsCommand: (input: CreateLocationHdfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
46
|
export declare const serializeAws_json1_1CreateLocationNfsCommand: (input: CreateLocationNfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
47
|
export declare const serializeAws_json1_1CreateLocationObjectStorageCommand: (input: CreateLocationObjectStorageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
48
|
export declare const serializeAws_json1_1CreateLocationS3Command: (input: CreateLocationS3CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -50,6 +54,7 @@ export declare const serializeAws_json1_1DeleteTaskCommand: (input: DeleteTaskCo
|
|
|
50
54
|
export declare const serializeAws_json1_1DescribeAgentCommand: (input: DescribeAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
55
|
export declare const serializeAws_json1_1DescribeLocationEfsCommand: (input: DescribeLocationEfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
56
|
export declare const serializeAws_json1_1DescribeLocationFsxWindowsCommand: (input: DescribeLocationFsxWindowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
export declare const serializeAws_json1_1DescribeLocationHdfsCommand: (input: DescribeLocationHdfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
58
|
export declare const serializeAws_json1_1DescribeLocationNfsCommand: (input: DescribeLocationNfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
59
|
export declare const serializeAws_json1_1DescribeLocationObjectStorageCommand: (input: DescribeLocationObjectStorageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
60
|
export declare const serializeAws_json1_1DescribeLocationS3Command: (input: DescribeLocationS3CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -65,6 +70,7 @@ export declare const serializeAws_json1_1StartTaskExecutionCommand: (input: Star
|
|
|
65
70
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
71
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
72
|
export declare const serializeAws_json1_1UpdateAgentCommand: (input: UpdateAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
+
export declare const serializeAws_json1_1UpdateLocationHdfsCommand: (input: UpdateLocationHdfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
74
|
export declare const serializeAws_json1_1UpdateLocationNfsCommand: (input: UpdateLocationNfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
75
|
export declare const serializeAws_json1_1UpdateLocationObjectStorageCommand: (input: UpdateLocationObjectStorageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
76
|
export declare const serializeAws_json1_1UpdateLocationSmbCommand: (input: UpdateLocationSmbCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -74,6 +80,7 @@ export declare const deserializeAws_json1_1CancelTaskExecutionCommand: (output:
|
|
|
74
80
|
export declare const deserializeAws_json1_1CreateAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAgentCommandOutput>;
|
|
75
81
|
export declare const deserializeAws_json1_1CreateLocationEfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationEfsCommandOutput>;
|
|
76
82
|
export declare const deserializeAws_json1_1CreateLocationFsxWindowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationFsxWindowsCommandOutput>;
|
|
83
|
+
export declare const deserializeAws_json1_1CreateLocationHdfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationHdfsCommandOutput>;
|
|
77
84
|
export declare const deserializeAws_json1_1CreateLocationNfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationNfsCommandOutput>;
|
|
78
85
|
export declare const deserializeAws_json1_1CreateLocationObjectStorageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationObjectStorageCommandOutput>;
|
|
79
86
|
export declare const deserializeAws_json1_1CreateLocationS3Command: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationS3CommandOutput>;
|
|
@@ -85,6 +92,7 @@ export declare const deserializeAws_json1_1DeleteTaskCommand: (output: __HttpRes
|
|
|
85
92
|
export declare const deserializeAws_json1_1DescribeAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAgentCommandOutput>;
|
|
86
93
|
export declare const deserializeAws_json1_1DescribeLocationEfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationEfsCommandOutput>;
|
|
87
94
|
export declare const deserializeAws_json1_1DescribeLocationFsxWindowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationFsxWindowsCommandOutput>;
|
|
95
|
+
export declare const deserializeAws_json1_1DescribeLocationHdfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationHdfsCommandOutput>;
|
|
88
96
|
export declare const deserializeAws_json1_1DescribeLocationNfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationNfsCommandOutput>;
|
|
89
97
|
export declare const deserializeAws_json1_1DescribeLocationObjectStorageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationObjectStorageCommandOutput>;
|
|
90
98
|
export declare const deserializeAws_json1_1DescribeLocationS3Command: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationS3CommandOutput>;
|
|
@@ -100,6 +108,7 @@ export declare const deserializeAws_json1_1StartTaskExecutionCommand: (output: _
|
|
|
100
108
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
101
109
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
102
110
|
export declare const deserializeAws_json1_1UpdateAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAgentCommandOutput>;
|
|
111
|
+
export declare const deserializeAws_json1_1UpdateLocationHdfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationHdfsCommandOutput>;
|
|
103
112
|
export declare const deserializeAws_json1_1UpdateLocationNfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationNfsCommandOutput>;
|
|
104
113
|
export declare const deserializeAws_json1_1UpdateLocationObjectStorageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationObjectStorageCommandOutput>;
|
|
105
114
|
export declare const deserializeAws_json1_1UpdateLocationSmbCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLocationSmbCommandOutput>;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: DataSyncClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: DataSyncClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -18,6 +18,8 @@ export declare const getRuntimeConfig: (config: DataSyncClientConfig) => {
|
|
|
18
18
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
19
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
20
|
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
23
|
serviceId: string;
|
|
22
24
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
@@ -3,6 +3,7 @@ import { CancelTaskExecutionCommandInput, CancelTaskExecutionCommandOutput } fro
|
|
|
3
3
|
import { CreateAgentCommandInput, CreateAgentCommandOutput } from "./commands/CreateAgentCommand";
|
|
4
4
|
import { CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput } from "./commands/CreateLocationEfsCommand";
|
|
5
5
|
import { CreateLocationFsxWindowsCommandInput, CreateLocationFsxWindowsCommandOutput } from "./commands/CreateLocationFsxWindowsCommand";
|
|
6
|
+
import { CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput } from "./commands/CreateLocationHdfsCommand";
|
|
6
7
|
import { CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput } from "./commands/CreateLocationNfsCommand";
|
|
7
8
|
import { CreateLocationObjectStorageCommandInput, CreateLocationObjectStorageCommandOutput } from "./commands/CreateLocationObjectStorageCommand";
|
|
8
9
|
import { CreateLocationS3CommandInput, CreateLocationS3CommandOutput } from "./commands/CreateLocationS3Command";
|
|
@@ -14,6 +15,7 @@ import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/Dele
|
|
|
14
15
|
import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "./commands/DescribeAgentCommand";
|
|
15
16
|
import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "./commands/DescribeLocationEfsCommand";
|
|
16
17
|
import { DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput } from "./commands/DescribeLocationFsxWindowsCommand";
|
|
18
|
+
import { DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput } from "./commands/DescribeLocationHdfsCommand";
|
|
17
19
|
import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } from "./commands/DescribeLocationNfsCommand";
|
|
18
20
|
import { DescribeLocationObjectStorageCommandInput, DescribeLocationObjectStorageCommandOutput } from "./commands/DescribeLocationObjectStorageCommand";
|
|
19
21
|
import { DescribeLocationS3CommandInput, DescribeLocationS3CommandOutput } from "./commands/DescribeLocationS3Command";
|
|
@@ -29,6 +31,7 @@ import { StartTaskExecutionCommandInput, StartTaskExecutionCommandOutput } from
|
|
|
29
31
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
30
32
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
31
33
|
import { UpdateAgentCommandInput, UpdateAgentCommandOutput } from "./commands/UpdateAgentCommand";
|
|
34
|
+
import { UpdateLocationHdfsCommandInput, UpdateLocationHdfsCommandOutput } from "./commands/UpdateLocationHdfsCommand";
|
|
32
35
|
import { UpdateLocationNfsCommandInput, UpdateLocationNfsCommandOutput } from "./commands/UpdateLocationNfsCommand";
|
|
33
36
|
import { UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCommandOutput } from "./commands/UpdateLocationObjectStorageCommand";
|
|
34
37
|
import { UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput } from "./commands/UpdateLocationSmbCommand";
|
|
@@ -54,6 +57,10 @@ export declare class DataSync extends DataSyncClient {
|
|
|
54
57
|
createLocationFsxWindows(args: CreateLocationFsxWindowsCommandInput, cb: (err: any, data?: CreateLocationFsxWindowsCommandOutput) => void): void;
|
|
55
58
|
createLocationFsxWindows(args: CreateLocationFsxWindowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationFsxWindowsCommandOutput) => void): void;
|
|
56
59
|
|
|
60
|
+
createLocationHdfs(args: CreateLocationHdfsCommandInput, options?: __HttpHandlerOptions): Promise<CreateLocationHdfsCommandOutput>;
|
|
61
|
+
createLocationHdfs(args: CreateLocationHdfsCommandInput, cb: (err: any, data?: CreateLocationHdfsCommandOutput) => void): void;
|
|
62
|
+
createLocationHdfs(args: CreateLocationHdfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationHdfsCommandOutput) => void): void;
|
|
63
|
+
|
|
57
64
|
createLocationNfs(args: CreateLocationNfsCommandInput, options?: __HttpHandlerOptions): Promise<CreateLocationNfsCommandOutput>;
|
|
58
65
|
createLocationNfs(args: CreateLocationNfsCommandInput, cb: (err: any, data?: CreateLocationNfsCommandOutput) => void): void;
|
|
59
66
|
createLocationNfs(args: CreateLocationNfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationNfsCommandOutput) => void): void;
|
|
@@ -98,6 +105,10 @@ export declare class DataSync extends DataSyncClient {
|
|
|
98
105
|
describeLocationFsxWindows(args: DescribeLocationFsxWindowsCommandInput, cb: (err: any, data?: DescribeLocationFsxWindowsCommandOutput) => void): void;
|
|
99
106
|
describeLocationFsxWindows(args: DescribeLocationFsxWindowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationFsxWindowsCommandOutput) => void): void;
|
|
100
107
|
|
|
108
|
+
describeLocationHdfs(args: DescribeLocationHdfsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocationHdfsCommandOutput>;
|
|
109
|
+
describeLocationHdfs(args: DescribeLocationHdfsCommandInput, cb: (err: any, data?: DescribeLocationHdfsCommandOutput) => void): void;
|
|
110
|
+
describeLocationHdfs(args: DescribeLocationHdfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationHdfsCommandOutput) => void): void;
|
|
111
|
+
|
|
101
112
|
describeLocationNfs(args: DescribeLocationNfsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocationNfsCommandOutput>;
|
|
102
113
|
describeLocationNfs(args: DescribeLocationNfsCommandInput, cb: (err: any, data?: DescribeLocationNfsCommandOutput) => void): void;
|
|
103
114
|
describeLocationNfs(args: DescribeLocationNfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationNfsCommandOutput) => void): void;
|
|
@@ -158,6 +169,10 @@ export declare class DataSync extends DataSyncClient {
|
|
|
158
169
|
updateAgent(args: UpdateAgentCommandInput, cb: (err: any, data?: UpdateAgentCommandOutput) => void): void;
|
|
159
170
|
updateAgent(args: UpdateAgentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentCommandOutput) => void): void;
|
|
160
171
|
|
|
172
|
+
updateLocationHdfs(args: UpdateLocationHdfsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLocationHdfsCommandOutput>;
|
|
173
|
+
updateLocationHdfs(args: UpdateLocationHdfsCommandInput, cb: (err: any, data?: UpdateLocationHdfsCommandOutput) => void): void;
|
|
174
|
+
updateLocationHdfs(args: UpdateLocationHdfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLocationHdfsCommandOutput) => void): void;
|
|
175
|
+
|
|
161
176
|
updateLocationNfs(args: UpdateLocationNfsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLocationNfsCommandOutput>;
|
|
162
177
|
updateLocationNfs(args: UpdateLocationNfsCommandInput, cb: (err: any, data?: UpdateLocationNfsCommandOutput) => void): void;
|
|
163
178
|
updateLocationNfs(args: UpdateLocationNfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLocationNfsCommandOutput) => void): void;
|