@aws-sdk/client-datasync 3.58.0 → 3.72.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 +27 -0
- package/README.md +2 -2
- package/dist-cjs/DataSync.js +30 -0
- package/dist-cjs/commands/CreateLocationFsxOpenZfsCommand.js +36 -0
- package/dist-cjs/commands/DescribeLocationFsxOpenZfsCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +52 -16
- package/dist-cjs/protocols/Aws_json1_1.js +168 -2
- package/dist-es/DataSync.js +30 -0
- package/dist-es/commands/CreateLocationFsxOpenZfsCommand.js +39 -0
- package/dist-es/commands/DescribeLocationFsxOpenZfsCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +35 -11
- package/dist-es/protocols/Aws_json1_1.js +186 -0
- package/dist-types/DataSync.d.ts +19 -4
- package/dist-types/DataSyncClient.d.ts +4 -2
- package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +35 -0
- package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +2 -2
- package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +36 -0
- package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +206 -87
- package/dist-types/protocols/Aws_json1_1.d.ts +6 -0
- package/dist-types/ts3.4/DataSync.d.ts +10 -0
- package/dist-types/ts3.4/DataSyncClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateLocationFsxOpenZfsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLocationFsxOpenZfsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +81 -15
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +6 -0
- package/package.json +6 -6
|
@@ -181,15 +181,15 @@ export declare namespace CreateAgentResponse {
|
|
|
181
181
|
const filterSensitiveLog: (obj: CreateAgentResponse) => any;
|
|
182
182
|
}
|
|
183
183
|
/**
|
|
184
|
-
* <p>The subnet
|
|
185
|
-
*
|
|
186
|
-
*
|
|
184
|
+
* <p>The subnet that DataSync uses to access target EFS file system. The
|
|
185
|
+
* subnet must have at least one mount target for that file system. The security group that you
|
|
186
|
+
* provide needs to be able to communicate with the security group on the mount target in the
|
|
187
187
|
* subnet specified. </p>
|
|
188
188
|
*/
|
|
189
189
|
export interface Ec2Config {
|
|
190
190
|
/**
|
|
191
|
-
* <p>The ARN of the subnet
|
|
192
|
-
*
|
|
191
|
+
* <p>The ARN of the subnet that DataSync uses to access the target EFS file
|
|
192
|
+
* system.</p>
|
|
193
193
|
*/
|
|
194
194
|
SubnetArn: string | undefined;
|
|
195
195
|
/**
|
|
@@ -316,6 +316,132 @@ export declare namespace CreateLocationFsxLustreResponse {
|
|
|
316
316
|
*/
|
|
317
317
|
const filterSensitiveLog: (obj: CreateLocationFsxLustreResponse) => any;
|
|
318
318
|
}
|
|
319
|
+
export declare enum NfsVersion {
|
|
320
|
+
AUTOMATIC = "AUTOMATIC",
|
|
321
|
+
NFS3 = "NFS3",
|
|
322
|
+
NFS4_0 = "NFS4_0",
|
|
323
|
+
NFS4_1 = "NFS4_1"
|
|
324
|
+
}
|
|
325
|
+
/**
|
|
326
|
+
* <p>Represents the mount options that are available for DataSync to access an NFS
|
|
327
|
+
* location.</p>
|
|
328
|
+
*/
|
|
329
|
+
export interface NfsMountOptions {
|
|
330
|
+
/**
|
|
331
|
+
* <p>The specific NFS version that you want DataSync to use to mount your NFS share. If the
|
|
332
|
+
* server refuses to use the version specified, the sync will fail. If you don't specify a
|
|
333
|
+
* version, DataSync defaults to <code>AUTOMATIC</code>. That is, DataSync automatically
|
|
334
|
+
* selects a version based on negotiation with the NFS server.</p>
|
|
335
|
+
*
|
|
336
|
+
* <p>You can specify the following NFS versions:</p>
|
|
337
|
+
* <ul>
|
|
338
|
+
* <li>
|
|
339
|
+
* <p>
|
|
340
|
+
* <b>
|
|
341
|
+
* <a href="https://tools.ietf.org/html/rfc1813">NFSv3</a>
|
|
342
|
+
* </b> - stateless protocol version that allows for asynchronous
|
|
343
|
+
* writes on the server.</p>
|
|
344
|
+
* </li>
|
|
345
|
+
* <li>
|
|
346
|
+
* <p>
|
|
347
|
+
* <b>
|
|
348
|
+
* <a href="https://tools.ietf.org/html/rfc3530">NFSv4.0</a>
|
|
349
|
+
* </b> - stateful, firewall-friendly protocol version that supports
|
|
350
|
+
* delegations and pseudo file systems.</p>
|
|
351
|
+
* </li>
|
|
352
|
+
* <li>
|
|
353
|
+
* <p>
|
|
354
|
+
* <b>
|
|
355
|
+
* <a href="https://tools.ietf.org/html/rfc5661">NFSv4.1</a>
|
|
356
|
+
* </b> - stateful protocol version that supports sessions,
|
|
357
|
+
* directory delegations, and parallel data processing. Version 4.1 also includes all
|
|
358
|
+
* features available in version 4.0.</p>
|
|
359
|
+
* </li>
|
|
360
|
+
* </ul>
|
|
361
|
+
*/
|
|
362
|
+
Version?: NfsVersion | string;
|
|
363
|
+
}
|
|
364
|
+
export declare namespace NfsMountOptions {
|
|
365
|
+
/**
|
|
366
|
+
* @internal
|
|
367
|
+
*/
|
|
368
|
+
const filterSensitiveLog: (obj: NfsMountOptions) => any;
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* <p>Represents the Network File System (NFS) protocol that DataSync uses to access your Amazon FSx for OpenZFS file system.</p>
|
|
372
|
+
*/
|
|
373
|
+
export interface FsxProtocolNfs {
|
|
374
|
+
/**
|
|
375
|
+
* <p>Represents the mount options that are available for DataSync to access an NFS
|
|
376
|
+
* location.</p>
|
|
377
|
+
*/
|
|
378
|
+
MountOptions?: NfsMountOptions;
|
|
379
|
+
}
|
|
380
|
+
export declare namespace FsxProtocolNfs {
|
|
381
|
+
/**
|
|
382
|
+
* @internal
|
|
383
|
+
*/
|
|
384
|
+
const filterSensitiveLog: (obj: FsxProtocolNfs) => any;
|
|
385
|
+
}
|
|
386
|
+
/**
|
|
387
|
+
* <p>Represents the protocol that DataSync uses to access your Amazon FSx for OpenZFS file system.</p>
|
|
388
|
+
*/
|
|
389
|
+
export interface FsxProtocol {
|
|
390
|
+
/**
|
|
391
|
+
* <p>Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system.</p>
|
|
392
|
+
*/
|
|
393
|
+
NFS?: FsxProtocolNfs;
|
|
394
|
+
}
|
|
395
|
+
export declare namespace FsxProtocol {
|
|
396
|
+
/**
|
|
397
|
+
* @internal
|
|
398
|
+
*/
|
|
399
|
+
const filterSensitiveLog: (obj: FsxProtocol) => any;
|
|
400
|
+
}
|
|
401
|
+
export interface CreateLocationFsxOpenZfsRequest {
|
|
402
|
+
/**
|
|
403
|
+
* <p>The Amazon Resource Name (ARN) of the FSx for OpenZFS file system.</p>
|
|
404
|
+
*/
|
|
405
|
+
FsxFilesystemArn: string | undefined;
|
|
406
|
+
/**
|
|
407
|
+
* <p>The type of protocol that DataSync uses to
|
|
408
|
+
* access your file system.</p>
|
|
409
|
+
*/
|
|
410
|
+
Protocol: FsxProtocol | undefined;
|
|
411
|
+
/**
|
|
412
|
+
* <p>The ARNs of the security groups that are used to configure the
|
|
413
|
+
* FSx for OpenZFS file system.</p>
|
|
414
|
+
*/
|
|
415
|
+
SecurityGroupArns: string[] | undefined;
|
|
416
|
+
/**
|
|
417
|
+
* <p>A subdirectory in the location's path that must begin with <code>/fsx</code>. DataSync uses this subdirectory to read
|
|
418
|
+
* or write data (depending on whether the file system is a source or destination
|
|
419
|
+
* location).</p>
|
|
420
|
+
*/
|
|
421
|
+
Subdirectory?: string;
|
|
422
|
+
/**
|
|
423
|
+
* <p>The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.</p>
|
|
424
|
+
*/
|
|
425
|
+
Tags?: TagListEntry[];
|
|
426
|
+
}
|
|
427
|
+
export declare namespace CreateLocationFsxOpenZfsRequest {
|
|
428
|
+
/**
|
|
429
|
+
* @internal
|
|
430
|
+
*/
|
|
431
|
+
const filterSensitiveLog: (obj: CreateLocationFsxOpenZfsRequest) => any;
|
|
432
|
+
}
|
|
433
|
+
export interface CreateLocationFsxOpenZfsResponse {
|
|
434
|
+
/**
|
|
435
|
+
* <p>The ARN of the FSx for OpenZFS file system location that you created.</p>
|
|
436
|
+
*/
|
|
437
|
+
LocationArn?: string;
|
|
438
|
+
}
|
|
439
|
+
export declare namespace CreateLocationFsxOpenZfsResponse {
|
|
440
|
+
/**
|
|
441
|
+
* @internal
|
|
442
|
+
*/
|
|
443
|
+
const filterSensitiveLog: (obj: CreateLocationFsxOpenZfsResponse) => any;
|
|
444
|
+
}
|
|
319
445
|
export interface CreateLocationFsxWindowsRequest {
|
|
320
446
|
/**
|
|
321
447
|
* <p>A subdirectory in the location's path. This subdirectory in the Amazon FSx for Windows
|
|
@@ -328,7 +454,7 @@ export interface CreateLocationFsxWindowsRequest {
|
|
|
328
454
|
*/
|
|
329
455
|
FsxFilesystemArn: string | undefined;
|
|
330
456
|
/**
|
|
331
|
-
* <p>The
|
|
457
|
+
* <p>The ARNs of the security groups that are used to configure the
|
|
332
458
|
* FSx for Windows File Server file system.</p>
|
|
333
459
|
*/
|
|
334
460
|
SecurityGroupArns: string[] | undefined;
|
|
@@ -364,7 +490,7 @@ export declare namespace CreateLocationFsxWindowsRequest {
|
|
|
364
490
|
export interface CreateLocationFsxWindowsResponse {
|
|
365
491
|
/**
|
|
366
492
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows File Server file system location
|
|
367
|
-
*
|
|
493
|
+
* you created.</p>
|
|
368
494
|
*/
|
|
369
495
|
LocationArn?: string;
|
|
370
496
|
}
|
|
@@ -546,57 +672,6 @@ export declare namespace CreateLocationHdfsResponse {
|
|
|
546
672
|
*/
|
|
547
673
|
const filterSensitiveLog: (obj: CreateLocationHdfsResponse) => any;
|
|
548
674
|
}
|
|
549
|
-
export declare enum NfsVersion {
|
|
550
|
-
AUTOMATIC = "AUTOMATIC",
|
|
551
|
-
NFS3 = "NFS3",
|
|
552
|
-
NFS4_0 = "NFS4_0",
|
|
553
|
-
NFS4_1 = "NFS4_1"
|
|
554
|
-
}
|
|
555
|
-
/**
|
|
556
|
-
* <p>Represents the mount options that are available for DataSync to access an NFS
|
|
557
|
-
* location.</p>
|
|
558
|
-
*/
|
|
559
|
-
export interface NfsMountOptions {
|
|
560
|
-
/**
|
|
561
|
-
* <p>The specific NFS version that you want DataSync to use to mount your NFS share. If the
|
|
562
|
-
* server refuses to use the version specified, the sync will fail. If you don't specify a
|
|
563
|
-
* version, DataSync defaults to <code>AUTOMATIC</code>. That is, DataSync automatically
|
|
564
|
-
* selects a version based on negotiation with the NFS server.</p>
|
|
565
|
-
*
|
|
566
|
-
* <p>You can specify the following NFS versions:</p>
|
|
567
|
-
* <ul>
|
|
568
|
-
* <li>
|
|
569
|
-
* <p>
|
|
570
|
-
* <b>
|
|
571
|
-
* <a href="https://tools.ietf.org/html/rfc1813">NFSv3</a>
|
|
572
|
-
* </b> - stateless protocol version that allows for asynchronous
|
|
573
|
-
* writes on the server.</p>
|
|
574
|
-
* </li>
|
|
575
|
-
* <li>
|
|
576
|
-
* <p>
|
|
577
|
-
* <b>
|
|
578
|
-
* <a href="https://tools.ietf.org/html/rfc3530">NFSv4.0</a>
|
|
579
|
-
* </b> - stateful, firewall-friendly protocol version that supports
|
|
580
|
-
* delegations and pseudo file systems.</p>
|
|
581
|
-
* </li>
|
|
582
|
-
* <li>
|
|
583
|
-
* <p>
|
|
584
|
-
* <b>
|
|
585
|
-
* <a href="https://tools.ietf.org/html/rfc5661">NFSv4.1</a>
|
|
586
|
-
* </b> - stateful protocol version that supports sessions,
|
|
587
|
-
* directory delegations, and parallel data processing. Version 4.1 also includes all
|
|
588
|
-
* features available in version 4.0.</p>
|
|
589
|
-
* </li>
|
|
590
|
-
* </ul>
|
|
591
|
-
*/
|
|
592
|
-
Version?: NfsVersion | string;
|
|
593
|
-
}
|
|
594
|
-
export declare namespace NfsMountOptions {
|
|
595
|
-
/**
|
|
596
|
-
* @internal
|
|
597
|
-
*/
|
|
598
|
-
const filterSensitiveLog: (obj: NfsMountOptions) => any;
|
|
599
|
-
}
|
|
600
675
|
/**
|
|
601
676
|
* <p>A list of Amazon Resource Names (ARNs) of agents to use for a Network File System (NFS)
|
|
602
677
|
* location.</p>
|
|
@@ -640,8 +715,8 @@ export interface CreateLocationNfsRequest {
|
|
|
640
715
|
Subdirectory: string | undefined;
|
|
641
716
|
/**
|
|
642
717
|
* <p>The name of the NFS server. This value is the IP address or Domain Name Service (DNS)
|
|
643
|
-
* name of the NFS server. An agent that is installed on-premises uses this
|
|
644
|
-
*
|
|
718
|
+
* name of the NFS server. An agent that is installed on-premises uses this hostname to mount the
|
|
719
|
+
* NFS server in a network. </p>
|
|
645
720
|
* <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 Snowcone</a> for more information.</p>
|
|
646
721
|
* <note>
|
|
647
722
|
* <p>This name must either be DNS-compliant or must be an IP version 4 (IPv4)
|
|
@@ -696,9 +771,9 @@ export declare enum ObjectStorageServerProtocol {
|
|
|
696
771
|
*/
|
|
697
772
|
export interface CreateLocationObjectStorageRequest {
|
|
698
773
|
/**
|
|
699
|
-
* <p>The name of the self-managed object storage server. This value is the
|
|
700
|
-
*
|
|
701
|
-
*
|
|
774
|
+
* <p>The name of the self-managed object storage server. This value is the IP address or Domain
|
|
775
|
+
* Name Service (DNS) name of the object storage server. An agent uses this hostname to mount the
|
|
776
|
+
* object storage server in a network. </p>
|
|
702
777
|
*/
|
|
703
778
|
ServerHostname: string | undefined;
|
|
704
779
|
/**
|
|
@@ -770,17 +845,15 @@ export declare namespace CreateLocationObjectStorageResponse {
|
|
|
770
845
|
const filterSensitiveLog: (obj: CreateLocationObjectStorageResponse) => any;
|
|
771
846
|
}
|
|
772
847
|
/**
|
|
773
|
-
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role
|
|
774
|
-
*
|
|
848
|
+
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role used to access
|
|
849
|
+
* an Amazon S3 bucket.</p>
|
|
775
850
|
*
|
|
776
851
|
* <p>For detailed information about using such a role, see Creating a Location for
|
|
777
852
|
* Amazon S3 in the <i>DataSync User Guide</i>.</p>
|
|
778
853
|
*/
|
|
779
854
|
export interface S3Config {
|
|
780
855
|
/**
|
|
781
|
-
* <p>The
|
|
782
|
-
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_CreateLocationS3.html">CreateLocationS3</a>
|
|
783
|
-
* operation. </p>
|
|
856
|
+
* <p>The ARN of the IAM role for accessing the S3 bucket. </p>
|
|
784
857
|
*/
|
|
785
858
|
BucketAccessRoleArn: string | undefined;
|
|
786
859
|
}
|
|
@@ -823,17 +896,18 @@ export interface CreateLocationS3Request {
|
|
|
823
896
|
*/
|
|
824
897
|
S3StorageClass?: S3StorageClass | string;
|
|
825
898
|
/**
|
|
826
|
-
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role
|
|
827
|
-
*
|
|
899
|
+
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role used to access
|
|
900
|
+
* an Amazon S3 bucket.</p>
|
|
828
901
|
*
|
|
829
902
|
* <p>For detailed information about using such a role, see Creating a Location for
|
|
830
903
|
* Amazon S3 in the <i>DataSync User Guide</i>.</p>
|
|
831
904
|
*/
|
|
832
905
|
S3Config: S3Config | undefined;
|
|
833
906
|
/**
|
|
834
|
-
* <p>If you
|
|
835
|
-
* the DataSync agents deployed on your Outpost. For more information about
|
|
836
|
-
* agent on an Amazon Web Services Outpost, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/deploy-agents.html#outposts-agent">Deploy your DataSync agent
|
|
907
|
+
* <p>If you're using DataSync on an Amazon Web Services Outpost, specify the Amazon Resource
|
|
908
|
+
* Names (ARNs) of the DataSync agents deployed on your Outpost. For more information about
|
|
909
|
+
* launching a DataSync agent on an Amazon Web Services Outpost, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/deploy-agents.html#outposts-agent">Deploy your DataSync agent
|
|
910
|
+
* on Outposts</a>.</p>
|
|
837
911
|
*/
|
|
838
912
|
AgentArns?: string[];
|
|
839
913
|
/**
|
|
@@ -1083,8 +1157,7 @@ export interface Options {
|
|
|
1083
1157
|
* <p>POINT_IN_TIME_CONSISTENT: Scan the entire source and entire destination
|
|
1084
1158
|
* at the end of the transfer
|
|
1085
1159
|
* to verify that source and destination are fully
|
|
1086
|
-
* synchronized. This option isn't supported when transferring to S3 Glacier or S3 Glacier
|
|
1087
|
-
* Deep Archive storage classes.</p>
|
|
1160
|
+
* synchronized. This option isn't supported when transferring to S3 Glacier or S3 Glacier Deep Archive storage classes.</p>
|
|
1088
1161
|
* <p>NONE: No additional verification is done at the end of the
|
|
1089
1162
|
* transfer, but all data transmissions are integrity-checked with
|
|
1090
1163
|
* checksum verification during the transfer.</p>
|
|
@@ -1572,9 +1645,9 @@ export interface DescribeLocationEfsResponse {
|
|
|
1572
1645
|
*/
|
|
1573
1646
|
LocationUri?: string;
|
|
1574
1647
|
/**
|
|
1575
|
-
* <p>The subnet
|
|
1576
|
-
*
|
|
1577
|
-
*
|
|
1648
|
+
* <p>The subnet that DataSync uses to access target EFS file system. The
|
|
1649
|
+
* subnet must have at least one mount target for that file system. The security group that you
|
|
1650
|
+
* provide needs to be able to communicate with the security group on the mount target in the
|
|
1578
1651
|
* subnet specified. </p>
|
|
1579
1652
|
*/
|
|
1580
1653
|
Ec2Config?: Ec2Config;
|
|
@@ -1625,6 +1698,51 @@ export declare namespace DescribeLocationFsxLustreResponse {
|
|
|
1625
1698
|
*/
|
|
1626
1699
|
const filterSensitiveLog: (obj: DescribeLocationFsxLustreResponse) => any;
|
|
1627
1700
|
}
|
|
1701
|
+
export interface DescribeLocationFsxOpenZfsRequest {
|
|
1702
|
+
/**
|
|
1703
|
+
* <p>The Amazon Resource Name (ARN) of the FSx for OpenZFS location to describe.</p>
|
|
1704
|
+
*/
|
|
1705
|
+
LocationArn: string | undefined;
|
|
1706
|
+
}
|
|
1707
|
+
export declare namespace DescribeLocationFsxOpenZfsRequest {
|
|
1708
|
+
/**
|
|
1709
|
+
* @internal
|
|
1710
|
+
*/
|
|
1711
|
+
const filterSensitiveLog: (obj: DescribeLocationFsxOpenZfsRequest) => any;
|
|
1712
|
+
}
|
|
1713
|
+
export interface DescribeLocationFsxOpenZfsResponse {
|
|
1714
|
+
/**
|
|
1715
|
+
* <p>The ARN of the FSx for OpenZFS location that was described.</p>
|
|
1716
|
+
*/
|
|
1717
|
+
LocationArn?: string;
|
|
1718
|
+
/**
|
|
1719
|
+
* <p>The uniform resource identifier (URI) of the FSx for OpenZFS location that was
|
|
1720
|
+
* described.</p>
|
|
1721
|
+
* <p>Example: <code>fsxz://us-west-2.fs-1234567890abcdef02/fsx/folderA/folder</code>
|
|
1722
|
+
* </p>
|
|
1723
|
+
*/
|
|
1724
|
+
LocationUri?: string;
|
|
1725
|
+
/**
|
|
1726
|
+
* <p>The ARNs of the security groups that are configured for the FSx for OpenZFS file
|
|
1727
|
+
* system.</p>
|
|
1728
|
+
*/
|
|
1729
|
+
SecurityGroupArns?: string[];
|
|
1730
|
+
/**
|
|
1731
|
+
* <p>The type of protocol that DataSync uses to
|
|
1732
|
+
* access your file system.</p>
|
|
1733
|
+
*/
|
|
1734
|
+
Protocol?: FsxProtocol;
|
|
1735
|
+
/**
|
|
1736
|
+
* <p>The time that the FSx for OpenZFS location was created.</p>
|
|
1737
|
+
*/
|
|
1738
|
+
CreationTime?: Date;
|
|
1739
|
+
}
|
|
1740
|
+
export declare namespace DescribeLocationFsxOpenZfsResponse {
|
|
1741
|
+
/**
|
|
1742
|
+
* @internal
|
|
1743
|
+
*/
|
|
1744
|
+
const filterSensitiveLog: (obj: DescribeLocationFsxOpenZfsResponse) => any;
|
|
1745
|
+
}
|
|
1628
1746
|
export interface DescribeLocationFsxWindowsRequest {
|
|
1629
1747
|
/**
|
|
1630
1748
|
* <p>The Amazon Resource Name (ARN) of the FSx for Windows File Server location to
|
|
@@ -1888,8 +2006,8 @@ export interface DescribeLocationS3Response {
|
|
|
1888
2006
|
*/
|
|
1889
2007
|
S3StorageClass?: S3StorageClass | string;
|
|
1890
2008
|
/**
|
|
1891
|
-
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role
|
|
1892
|
-
*
|
|
2009
|
+
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role used to access
|
|
2010
|
+
* an Amazon S3 bucket.</p>
|
|
1893
2011
|
*
|
|
1894
2012
|
* <p>For detailed information about using such a role, see Creating a Location for
|
|
1895
2013
|
* Amazon S3 in the <i>DataSync User Guide</i>.</p>
|
|
@@ -2403,11 +2521,12 @@ export interface LocationListEntry {
|
|
|
2403
2521
|
* contains a list of locations when the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_ListLocations.html">ListLocations</a> operation is
|
|
2404
2522
|
* called.</p>
|
|
2405
2523
|
* <p>Format: <code>TYPE://GLOBAL_ID/SUBDIR</code>.</p>
|
|
2406
|
-
* <p>TYPE designates the type of location
|
|
2524
|
+
* <p>TYPE designates the type of location (for example, <code>nfs</code> or
|
|
2525
|
+
* <code>s3</code>).</p>
|
|
2407
2526
|
* <p>GLOBAL_ID is the globally unique identifier of the resource that backs the location. An
|
|
2408
2527
|
* example for EFS is <code>us-east-2.fs-abcd1234</code>. An example for Amazon S3 is the bucket
|
|
2409
|
-
* name, such as <code>myBucket</code>. An example for NFS is a valid IPv4 address or a
|
|
2410
|
-
* compliant with Domain Name Service (DNS).</p>
|
|
2528
|
+
* name, such as <code>myBucket</code>. An example for NFS is a valid IPv4 address or a hostname
|
|
2529
|
+
* that is compliant with Domain Name Service (DNS).</p>
|
|
2411
2530
|
* <p>SUBDIR is a valid file system path, delimited by forward slashes as is the *nix
|
|
2412
2531
|
* convention. For NFS and Amazon EFS, it's the export path to mount the location. For
|
|
2413
2532
|
* Amazon S3, it's the prefix path that you mount to and treat as the root of the
|
|
@@ -2850,15 +2969,15 @@ export interface UpdateLocationHdfsRequest {
|
|
|
2850
2969
|
/**
|
|
2851
2970
|
* <p>The Kerberos key table (keytab) that contains mappings between the defined Kerberos
|
|
2852
2971
|
* principal and the encrypted keys. You can load the keytab from a file by providing the file's
|
|
2853
|
-
* address. If you use the
|
|
2854
|
-
* base64-encoded text.</p>
|
|
2972
|
+
* address. If you use the CLI, it performs base64 encoding for you. Otherwise,
|
|
2973
|
+
* provide the base64-encoded text.</p>
|
|
2855
2974
|
*/
|
|
2856
2975
|
KerberosKeytab?: Uint8Array;
|
|
2857
2976
|
/**
|
|
2858
2977
|
* <p>The <code>krb5.conf</code> file that contains the Kerberos configuration information. You
|
|
2859
2978
|
* can load the <code>krb5.conf</code> file by providing the file's address. If you're using the
|
|
2860
|
-
*
|
|
2861
|
-
* text.</p>
|
|
2979
|
+
* CLI, it performs the base64 encoding for you. Otherwise, provide the
|
|
2980
|
+
* base64-encoded text.</p>
|
|
2862
2981
|
*/
|
|
2863
2982
|
KerberosKrb5Conf?: Uint8Array;
|
|
2864
2983
|
/**
|
|
@@ -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 { CreateLocationFsxLustreCommandInput, CreateLocationFsxLustreCommandOutput } from "../commands/CreateLocationFsxLustreCommand";
|
|
7
|
+
import { CreateLocationFsxOpenZfsCommandInput, CreateLocationFsxOpenZfsCommandOutput } from "../commands/CreateLocationFsxOpenZfsCommand";
|
|
7
8
|
import { CreateLocationFsxWindowsCommandInput, CreateLocationFsxWindowsCommandOutput } from "../commands/CreateLocationFsxWindowsCommand";
|
|
8
9
|
import { CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput } from "../commands/CreateLocationHdfsCommand";
|
|
9
10
|
import { CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput } from "../commands/CreateLocationNfsCommand";
|
|
@@ -17,6 +18,7 @@ import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "../commands/Del
|
|
|
17
18
|
import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "../commands/DescribeAgentCommand";
|
|
18
19
|
import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "../commands/DescribeLocationEfsCommand";
|
|
19
20
|
import { DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput } from "../commands/DescribeLocationFsxLustreCommand";
|
|
21
|
+
import { DescribeLocationFsxOpenZfsCommandInput, DescribeLocationFsxOpenZfsCommandOutput } from "../commands/DescribeLocationFsxOpenZfsCommand";
|
|
20
22
|
import { DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput } from "../commands/DescribeLocationFsxWindowsCommand";
|
|
21
23
|
import { DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput } from "../commands/DescribeLocationHdfsCommand";
|
|
22
24
|
import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } from "../commands/DescribeLocationNfsCommand";
|
|
@@ -44,6 +46,7 @@ export declare const serializeAws_json1_1CancelTaskExecutionCommand: (input: Can
|
|
|
44
46
|
export declare const serializeAws_json1_1CreateAgentCommand: (input: CreateAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
47
|
export declare const serializeAws_json1_1CreateLocationEfsCommand: (input: CreateLocationEfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
48
|
export declare const serializeAws_json1_1CreateLocationFsxLustreCommand: (input: CreateLocationFsxLustreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
+
export declare const serializeAws_json1_1CreateLocationFsxOpenZfsCommand: (input: CreateLocationFsxOpenZfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
50
|
export declare const serializeAws_json1_1CreateLocationFsxWindowsCommand: (input: CreateLocationFsxWindowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
51
|
export declare const serializeAws_json1_1CreateLocationHdfsCommand: (input: CreateLocationHdfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
52
|
export declare const serializeAws_json1_1CreateLocationNfsCommand: (input: CreateLocationNfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -57,6 +60,7 @@ export declare const serializeAws_json1_1DeleteTaskCommand: (input: DeleteTaskCo
|
|
|
57
60
|
export declare const serializeAws_json1_1DescribeAgentCommand: (input: DescribeAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
61
|
export declare const serializeAws_json1_1DescribeLocationEfsCommand: (input: DescribeLocationEfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
62
|
export declare const serializeAws_json1_1DescribeLocationFsxLustreCommand: (input: DescribeLocationFsxLustreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
export declare const serializeAws_json1_1DescribeLocationFsxOpenZfsCommand: (input: DescribeLocationFsxOpenZfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
64
|
export declare const serializeAws_json1_1DescribeLocationFsxWindowsCommand: (input: DescribeLocationFsxWindowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
65
|
export declare const serializeAws_json1_1DescribeLocationHdfsCommand: (input: DescribeLocationHdfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
66
|
export declare const serializeAws_json1_1DescribeLocationNfsCommand: (input: DescribeLocationNfsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -84,6 +88,7 @@ export declare const deserializeAws_json1_1CancelTaskExecutionCommand: (output:
|
|
|
84
88
|
export declare const deserializeAws_json1_1CreateAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAgentCommandOutput>;
|
|
85
89
|
export declare const deserializeAws_json1_1CreateLocationEfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationEfsCommandOutput>;
|
|
86
90
|
export declare const deserializeAws_json1_1CreateLocationFsxLustreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationFsxLustreCommandOutput>;
|
|
91
|
+
export declare const deserializeAws_json1_1CreateLocationFsxOpenZfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationFsxOpenZfsCommandOutput>;
|
|
87
92
|
export declare const deserializeAws_json1_1CreateLocationFsxWindowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationFsxWindowsCommandOutput>;
|
|
88
93
|
export declare const deserializeAws_json1_1CreateLocationHdfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationHdfsCommandOutput>;
|
|
89
94
|
export declare const deserializeAws_json1_1CreateLocationNfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLocationNfsCommandOutput>;
|
|
@@ -97,6 +102,7 @@ export declare const deserializeAws_json1_1DeleteTaskCommand: (output: __HttpRes
|
|
|
97
102
|
export declare const deserializeAws_json1_1DescribeAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAgentCommandOutput>;
|
|
98
103
|
export declare const deserializeAws_json1_1DescribeLocationEfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationEfsCommandOutput>;
|
|
99
104
|
export declare const deserializeAws_json1_1DescribeLocationFsxLustreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationFsxLustreCommandOutput>;
|
|
105
|
+
export declare const deserializeAws_json1_1DescribeLocationFsxOpenZfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationFsxOpenZfsCommandOutput>;
|
|
100
106
|
export declare const deserializeAws_json1_1DescribeLocationFsxWindowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationFsxWindowsCommandOutput>;
|
|
101
107
|
export declare const deserializeAws_json1_1DescribeLocationHdfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationHdfsCommandOutput>;
|
|
102
108
|
export declare const deserializeAws_json1_1DescribeLocationNfsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLocationNfsCommandOutput>;
|
|
@@ -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 { CreateLocationFsxLustreCommandInput, CreateLocationFsxLustreCommandOutput } from "./commands/CreateLocationFsxLustreCommand";
|
|
6
|
+
import { CreateLocationFsxOpenZfsCommandInput, CreateLocationFsxOpenZfsCommandOutput } from "./commands/CreateLocationFsxOpenZfsCommand";
|
|
6
7
|
import { CreateLocationFsxWindowsCommandInput, CreateLocationFsxWindowsCommandOutput } from "./commands/CreateLocationFsxWindowsCommand";
|
|
7
8
|
import { CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput } from "./commands/CreateLocationHdfsCommand";
|
|
8
9
|
import { CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput } from "./commands/CreateLocationNfsCommand";
|
|
@@ -16,6 +17,7 @@ import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/Dele
|
|
|
16
17
|
import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "./commands/DescribeAgentCommand";
|
|
17
18
|
import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "./commands/DescribeLocationEfsCommand";
|
|
18
19
|
import { DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput } from "./commands/DescribeLocationFsxLustreCommand";
|
|
20
|
+
import { DescribeLocationFsxOpenZfsCommandInput, DescribeLocationFsxOpenZfsCommandOutput } from "./commands/DescribeLocationFsxOpenZfsCommand";
|
|
19
21
|
import { DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput } from "./commands/DescribeLocationFsxWindowsCommand";
|
|
20
22
|
import { DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput } from "./commands/DescribeLocationHdfsCommand";
|
|
21
23
|
import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } from "./commands/DescribeLocationNfsCommand";
|
|
@@ -59,6 +61,10 @@ export declare class DataSync extends DataSyncClient {
|
|
|
59
61
|
createLocationFsxLustre(args: CreateLocationFsxLustreCommandInput, cb: (err: any, data?: CreateLocationFsxLustreCommandOutput) => void): void;
|
|
60
62
|
createLocationFsxLustre(args: CreateLocationFsxLustreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationFsxLustreCommandOutput) => void): void;
|
|
61
63
|
|
|
64
|
+
createLocationFsxOpenZfs(args: CreateLocationFsxOpenZfsCommandInput, options?: __HttpHandlerOptions): Promise<CreateLocationFsxOpenZfsCommandOutput>;
|
|
65
|
+
createLocationFsxOpenZfs(args: CreateLocationFsxOpenZfsCommandInput, cb: (err: any, data?: CreateLocationFsxOpenZfsCommandOutput) => void): void;
|
|
66
|
+
createLocationFsxOpenZfs(args: CreateLocationFsxOpenZfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationFsxOpenZfsCommandOutput) => void): void;
|
|
67
|
+
|
|
62
68
|
createLocationFsxWindows(args: CreateLocationFsxWindowsCommandInput, options?: __HttpHandlerOptions): Promise<CreateLocationFsxWindowsCommandOutput>;
|
|
63
69
|
createLocationFsxWindows(args: CreateLocationFsxWindowsCommandInput, cb: (err: any, data?: CreateLocationFsxWindowsCommandOutput) => void): void;
|
|
64
70
|
createLocationFsxWindows(args: CreateLocationFsxWindowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLocationFsxWindowsCommandOutput) => void): void;
|
|
@@ -111,6 +117,10 @@ export declare class DataSync extends DataSyncClient {
|
|
|
111
117
|
describeLocationFsxLustre(args: DescribeLocationFsxLustreCommandInput, cb: (err: any, data?: DescribeLocationFsxLustreCommandOutput) => void): void;
|
|
112
118
|
describeLocationFsxLustre(args: DescribeLocationFsxLustreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationFsxLustreCommandOutput) => void): void;
|
|
113
119
|
|
|
120
|
+
describeLocationFsxOpenZfs(args: DescribeLocationFsxOpenZfsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocationFsxOpenZfsCommandOutput>;
|
|
121
|
+
describeLocationFsxOpenZfs(args: DescribeLocationFsxOpenZfsCommandInput, cb: (err: any, data?: DescribeLocationFsxOpenZfsCommandOutput) => void): void;
|
|
122
|
+
describeLocationFsxOpenZfs(args: DescribeLocationFsxOpenZfsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationFsxOpenZfsCommandOutput) => void): void;
|
|
123
|
+
|
|
114
124
|
describeLocationFsxWindows(args: DescribeLocationFsxWindowsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLocationFsxWindowsCommandOutput>;
|
|
115
125
|
describeLocationFsxWindows(args: DescribeLocationFsxWindowsCommandInput, cb: (err: any, data?: DescribeLocationFsxWindowsCommandOutput) => void): void;
|
|
116
126
|
describeLocationFsxWindows(args: DescribeLocationFsxWindowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLocationFsxWindowsCommandOutput) => void): void;
|
|
@@ -10,6 +10,7 @@ import { CancelTaskExecutionCommandInput, CancelTaskExecutionCommandOutput } fro
|
|
|
10
10
|
import { CreateAgentCommandInput, CreateAgentCommandOutput } from "./commands/CreateAgentCommand";
|
|
11
11
|
import { CreateLocationEfsCommandInput, CreateLocationEfsCommandOutput } from "./commands/CreateLocationEfsCommand";
|
|
12
12
|
import { CreateLocationFsxLustreCommandInput, CreateLocationFsxLustreCommandOutput } from "./commands/CreateLocationFsxLustreCommand";
|
|
13
|
+
import { CreateLocationFsxOpenZfsCommandInput, CreateLocationFsxOpenZfsCommandOutput } from "./commands/CreateLocationFsxOpenZfsCommand";
|
|
13
14
|
import { CreateLocationFsxWindowsCommandInput, CreateLocationFsxWindowsCommandOutput } from "./commands/CreateLocationFsxWindowsCommand";
|
|
14
15
|
import { CreateLocationHdfsCommandInput, CreateLocationHdfsCommandOutput } from "./commands/CreateLocationHdfsCommand";
|
|
15
16
|
import { CreateLocationNfsCommandInput, CreateLocationNfsCommandOutput } from "./commands/CreateLocationNfsCommand";
|
|
@@ -23,6 +24,7 @@ import { DeleteTaskCommandInput, DeleteTaskCommandOutput } from "./commands/Dele
|
|
|
23
24
|
import { DescribeAgentCommandInput, DescribeAgentCommandOutput } from "./commands/DescribeAgentCommand";
|
|
24
25
|
import { DescribeLocationEfsCommandInput, DescribeLocationEfsCommandOutput } from "./commands/DescribeLocationEfsCommand";
|
|
25
26
|
import { DescribeLocationFsxLustreCommandInput, DescribeLocationFsxLustreCommandOutput } from "./commands/DescribeLocationFsxLustreCommand";
|
|
27
|
+
import { DescribeLocationFsxOpenZfsCommandInput, DescribeLocationFsxOpenZfsCommandOutput } from "./commands/DescribeLocationFsxOpenZfsCommand";
|
|
26
28
|
import { DescribeLocationFsxWindowsCommandInput, DescribeLocationFsxWindowsCommandOutput } from "./commands/DescribeLocationFsxWindowsCommand";
|
|
27
29
|
import { DescribeLocationHdfsCommandInput, DescribeLocationHdfsCommandOutput } from "./commands/DescribeLocationHdfsCommand";
|
|
28
30
|
import { DescribeLocationNfsCommandInput, DescribeLocationNfsCommandOutput } from "./commands/DescribeLocationNfsCommand";
|
|
@@ -46,8 +48,8 @@ import { UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCom
|
|
|
46
48
|
import { UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput } from "./commands/UpdateLocationSmbCommand";
|
|
47
49
|
import { UpdateTaskCommandInput, UpdateTaskCommandOutput } from "./commands/UpdateTaskCommand";
|
|
48
50
|
import { UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput } from "./commands/UpdateTaskExecutionCommand";
|
|
49
|
-
export declare type ServiceInputTypes = CancelTaskExecutionCommandInput | CreateAgentCommandInput | CreateLocationEfsCommandInput | CreateLocationFsxLustreCommandInput | CreateLocationFsxWindowsCommandInput | CreateLocationHdfsCommandInput | CreateLocationNfsCommandInput | CreateLocationObjectStorageCommandInput | CreateLocationS3CommandInput | CreateLocationSmbCommandInput | CreateTaskCommandInput | DeleteAgentCommandInput | DeleteLocationCommandInput | DeleteTaskCommandInput | DescribeAgentCommandInput | DescribeLocationEfsCommandInput | DescribeLocationFsxLustreCommandInput | DescribeLocationFsxWindowsCommandInput | DescribeLocationHdfsCommandInput | DescribeLocationNfsCommandInput | DescribeLocationObjectStorageCommandInput | DescribeLocationS3CommandInput | DescribeLocationSmbCommandInput | DescribeTaskCommandInput | DescribeTaskExecutionCommandInput | ListAgentsCommandInput | ListLocationsCommandInput | ListTagsForResourceCommandInput | ListTaskExecutionsCommandInput | ListTasksCommandInput | StartTaskExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentCommandInput | UpdateLocationHdfsCommandInput | UpdateLocationNfsCommandInput | UpdateLocationObjectStorageCommandInput | UpdateLocationSmbCommandInput | UpdateTaskCommandInput | UpdateTaskExecutionCommandInput;
|
|
50
|
-
export declare type ServiceOutputTypes = CancelTaskExecutionCommandOutput | CreateAgentCommandOutput | CreateLocationEfsCommandOutput | CreateLocationFsxLustreCommandOutput | CreateLocationFsxWindowsCommandOutput | CreateLocationHdfsCommandOutput | CreateLocationNfsCommandOutput | CreateLocationObjectStorageCommandOutput | CreateLocationS3CommandOutput | CreateLocationSmbCommandOutput | CreateTaskCommandOutput | DeleteAgentCommandOutput | DeleteLocationCommandOutput | DeleteTaskCommandOutput | DescribeAgentCommandOutput | DescribeLocationEfsCommandOutput | DescribeLocationFsxLustreCommandOutput | DescribeLocationFsxWindowsCommandOutput | DescribeLocationHdfsCommandOutput | DescribeLocationNfsCommandOutput | DescribeLocationObjectStorageCommandOutput | DescribeLocationS3CommandOutput | DescribeLocationSmbCommandOutput | DescribeTaskCommandOutput | DescribeTaskExecutionCommandOutput | ListAgentsCommandOutput | ListLocationsCommandOutput | ListTagsForResourceCommandOutput | ListTaskExecutionsCommandOutput | ListTasksCommandOutput | StartTaskExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentCommandOutput | UpdateLocationHdfsCommandOutput | UpdateLocationNfsCommandOutput | UpdateLocationObjectStorageCommandOutput | UpdateLocationSmbCommandOutput | UpdateTaskCommandOutput | UpdateTaskExecutionCommandOutput;
|
|
51
|
+
export declare type ServiceInputTypes = CancelTaskExecutionCommandInput | CreateAgentCommandInput | CreateLocationEfsCommandInput | CreateLocationFsxLustreCommandInput | CreateLocationFsxOpenZfsCommandInput | CreateLocationFsxWindowsCommandInput | CreateLocationHdfsCommandInput | CreateLocationNfsCommandInput | CreateLocationObjectStorageCommandInput | CreateLocationS3CommandInput | CreateLocationSmbCommandInput | CreateTaskCommandInput | DeleteAgentCommandInput | DeleteLocationCommandInput | DeleteTaskCommandInput | DescribeAgentCommandInput | DescribeLocationEfsCommandInput | DescribeLocationFsxLustreCommandInput | DescribeLocationFsxOpenZfsCommandInput | DescribeLocationFsxWindowsCommandInput | DescribeLocationHdfsCommandInput | DescribeLocationNfsCommandInput | DescribeLocationObjectStorageCommandInput | DescribeLocationS3CommandInput | DescribeLocationSmbCommandInput | DescribeTaskCommandInput | DescribeTaskExecutionCommandInput | ListAgentsCommandInput | ListLocationsCommandInput | ListTagsForResourceCommandInput | ListTaskExecutionsCommandInput | ListTasksCommandInput | StartTaskExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentCommandInput | UpdateLocationHdfsCommandInput | UpdateLocationNfsCommandInput | UpdateLocationObjectStorageCommandInput | UpdateLocationSmbCommandInput | UpdateTaskCommandInput | UpdateTaskExecutionCommandInput;
|
|
52
|
+
export declare type ServiceOutputTypes = CancelTaskExecutionCommandOutput | CreateAgentCommandOutput | CreateLocationEfsCommandOutput | CreateLocationFsxLustreCommandOutput | CreateLocationFsxOpenZfsCommandOutput | CreateLocationFsxWindowsCommandOutput | CreateLocationHdfsCommandOutput | CreateLocationNfsCommandOutput | CreateLocationObjectStorageCommandOutput | CreateLocationS3CommandOutput | CreateLocationSmbCommandOutput | CreateTaskCommandOutput | DeleteAgentCommandOutput | DeleteLocationCommandOutput | DeleteTaskCommandOutput | DescribeAgentCommandOutput | DescribeLocationEfsCommandOutput | DescribeLocationFsxLustreCommandOutput | DescribeLocationFsxOpenZfsCommandOutput | DescribeLocationFsxWindowsCommandOutput | DescribeLocationHdfsCommandOutput | DescribeLocationNfsCommandOutput | DescribeLocationObjectStorageCommandOutput | DescribeLocationS3CommandOutput | DescribeLocationSmbCommandOutput | DescribeTaskCommandOutput | DescribeTaskExecutionCommandOutput | ListAgentsCommandOutput | ListLocationsCommandOutput | ListTagsForResourceCommandOutput | ListTaskExecutionsCommandOutput | ListTasksCommandOutput | StartTaskExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentCommandOutput | UpdateLocationHdfsCommandOutput | UpdateLocationNfsCommandOutput | UpdateLocationObjectStorageCommandOutput | UpdateLocationSmbCommandOutput | UpdateTaskCommandOutput | UpdateTaskExecutionCommandOutput;
|
|
51
53
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
52
54
|
|
|
53
55
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient";
|
|
4
|
+
import { CreateLocationFsxOpenZfsRequest, CreateLocationFsxOpenZfsResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateLocationFsxOpenZfsCommandInput extends CreateLocationFsxOpenZfsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateLocationFsxOpenZfsCommandOutput extends CreateLocationFsxOpenZfsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateLocationFsxOpenZfsCommand extends $Command<CreateLocationFsxOpenZfsCommandInput, CreateLocationFsxOpenZfsCommandOutput, DataSyncClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateLocationFsxOpenZfsCommandInput;
|
|
12
|
+
constructor(input: CreateLocationFsxOpenZfsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLocationFsxOpenZfsCommandInput, CreateLocationFsxOpenZfsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient";
|
|
4
|
+
import { DescribeLocationFsxOpenZfsRequest, DescribeLocationFsxOpenZfsResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeLocationFsxOpenZfsCommandInput extends DescribeLocationFsxOpenZfsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeLocationFsxOpenZfsCommandOutput extends DescribeLocationFsxOpenZfsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeLocationFsxOpenZfsCommand extends $Command<DescribeLocationFsxOpenZfsCommandInput, DescribeLocationFsxOpenZfsCommandOutput, DataSyncClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeLocationFsxOpenZfsCommandInput;
|
|
12
|
+
constructor(input: DescribeLocationFsxOpenZfsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLocationFsxOpenZfsCommandInput, DescribeLocationFsxOpenZfsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -2,6 +2,7 @@ export * from "./CancelTaskExecutionCommand";
|
|
|
2
2
|
export * from "./CreateAgentCommand";
|
|
3
3
|
export * from "./CreateLocationEfsCommand";
|
|
4
4
|
export * from "./CreateLocationFsxLustreCommand";
|
|
5
|
+
export * from "./CreateLocationFsxOpenZfsCommand";
|
|
5
6
|
export * from "./CreateLocationFsxWindowsCommand";
|
|
6
7
|
export * from "./CreateLocationHdfsCommand";
|
|
7
8
|
export * from "./CreateLocationNfsCommand";
|
|
@@ -15,6 +16,7 @@ export * from "./DeleteTaskCommand";
|
|
|
15
16
|
export * from "./DescribeAgentCommand";
|
|
16
17
|
export * from "./DescribeLocationEfsCommand";
|
|
17
18
|
export * from "./DescribeLocationFsxLustreCommand";
|
|
19
|
+
export * from "./DescribeLocationFsxOpenZfsCommand";
|
|
18
20
|
export * from "./DescribeLocationFsxWindowsCommand";
|
|
19
21
|
export * from "./DescribeLocationHdfsCommand";
|
|
20
22
|
export * from "./DescribeLocationNfsCommand";
|