@aws-sdk/client-datasync 3.714.0 → 3.715.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/README.md +48 -0
- package/dist-cjs/index.js +246 -0
- package/dist-es/DataSync.js +12 -0
- package/dist-es/commands/UpdateLocationEfsCommand.js +22 -0
- package/dist-es/commands/UpdateLocationFsxLustreCommand.js +22 -0
- package/dist-es/commands/UpdateLocationFsxOntapCommand.js +23 -0
- package/dist-es/commands/UpdateLocationFsxOpenZfsCommand.js +23 -0
- package/dist-es/commands/UpdateLocationFsxWindowsCommand.js +23 -0
- package/dist-es/commands/UpdateLocationS3Command.js +22 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/protocols/Aws_json1_1.js +114 -0
- package/dist-types/DataSync.d.ts +42 -0
- package/dist-types/DataSyncClient.d.ts +8 -2
- package/dist-types/commands/CreateLocationNfsCommand.d.ts +0 -5
- package/dist-types/commands/UpdateLocationAzureBlobCommand.d.ts +2 -1
- package/dist-types/commands/UpdateLocationEfsCommand.d.ts +81 -0
- package/dist-types/commands/UpdateLocationFsxLustreCommand.d.ts +78 -0
- package/dist-types/commands/UpdateLocationFsxOntapCommand.d.ts +93 -0
- package/dist-types/commands/UpdateLocationFsxOpenZfsCommand.d.ts +97 -0
- package/dist-types/commands/UpdateLocationFsxWindowsCommand.d.ts +81 -0
- package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +3 -2
- package/dist-types/commands/UpdateLocationNfsCommand.d.ts +2 -3
- package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +2 -2
- package/dist-types/commands/UpdateLocationS3Command.d.ts +97 -0
- package/dist-types/commands/UpdateLocationSmbCommand.d.ts +3 -2
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +326 -26
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/ts3.4/DataSync.d.ts +102 -0
- package/dist-types/ts3.4/DataSyncClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateLocationEfsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationFsxLustreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationFsxOntapCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationFsxOpenZfsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationFsxWindowsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationS3Command.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +65 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +1 -1
|
@@ -215,6 +215,26 @@ import {
|
|
|
215
215
|
UpdateLocationAzureBlobCommandInput,
|
|
216
216
|
UpdateLocationAzureBlobCommandOutput,
|
|
217
217
|
} from "../commands/UpdateLocationAzureBlobCommand";
|
|
218
|
+
import {
|
|
219
|
+
UpdateLocationEfsCommandInput,
|
|
220
|
+
UpdateLocationEfsCommandOutput,
|
|
221
|
+
} from "../commands/UpdateLocationEfsCommand";
|
|
222
|
+
import {
|
|
223
|
+
UpdateLocationFsxLustreCommandInput,
|
|
224
|
+
UpdateLocationFsxLustreCommandOutput,
|
|
225
|
+
} from "../commands/UpdateLocationFsxLustreCommand";
|
|
226
|
+
import {
|
|
227
|
+
UpdateLocationFsxOntapCommandInput,
|
|
228
|
+
UpdateLocationFsxOntapCommandOutput,
|
|
229
|
+
} from "../commands/UpdateLocationFsxOntapCommand";
|
|
230
|
+
import {
|
|
231
|
+
UpdateLocationFsxOpenZfsCommandInput,
|
|
232
|
+
UpdateLocationFsxOpenZfsCommandOutput,
|
|
233
|
+
} from "../commands/UpdateLocationFsxOpenZfsCommand";
|
|
234
|
+
import {
|
|
235
|
+
UpdateLocationFsxWindowsCommandInput,
|
|
236
|
+
UpdateLocationFsxWindowsCommandOutput,
|
|
237
|
+
} from "../commands/UpdateLocationFsxWindowsCommand";
|
|
218
238
|
import {
|
|
219
239
|
UpdateLocationHdfsCommandInput,
|
|
220
240
|
UpdateLocationHdfsCommandOutput,
|
|
@@ -227,6 +247,10 @@ import {
|
|
|
227
247
|
UpdateLocationObjectStorageCommandInput,
|
|
228
248
|
UpdateLocationObjectStorageCommandOutput,
|
|
229
249
|
} from "../commands/UpdateLocationObjectStorageCommand";
|
|
250
|
+
import {
|
|
251
|
+
UpdateLocationS3CommandInput,
|
|
252
|
+
UpdateLocationS3CommandOutput,
|
|
253
|
+
} from "../commands/UpdateLocationS3Command";
|
|
230
254
|
import {
|
|
231
255
|
UpdateLocationSmbCommandInput,
|
|
232
256
|
UpdateLocationSmbCommandOutput,
|
|
@@ -455,6 +479,26 @@ export declare const se_UpdateLocationAzureBlobCommand: (
|
|
|
455
479
|
input: UpdateLocationAzureBlobCommandInput,
|
|
456
480
|
context: __SerdeContext
|
|
457
481
|
) => Promise<__HttpRequest>;
|
|
482
|
+
export declare const se_UpdateLocationEfsCommand: (
|
|
483
|
+
input: UpdateLocationEfsCommandInput,
|
|
484
|
+
context: __SerdeContext
|
|
485
|
+
) => Promise<__HttpRequest>;
|
|
486
|
+
export declare const se_UpdateLocationFsxLustreCommand: (
|
|
487
|
+
input: UpdateLocationFsxLustreCommandInput,
|
|
488
|
+
context: __SerdeContext
|
|
489
|
+
) => Promise<__HttpRequest>;
|
|
490
|
+
export declare const se_UpdateLocationFsxOntapCommand: (
|
|
491
|
+
input: UpdateLocationFsxOntapCommandInput,
|
|
492
|
+
context: __SerdeContext
|
|
493
|
+
) => Promise<__HttpRequest>;
|
|
494
|
+
export declare const se_UpdateLocationFsxOpenZfsCommand: (
|
|
495
|
+
input: UpdateLocationFsxOpenZfsCommandInput,
|
|
496
|
+
context: __SerdeContext
|
|
497
|
+
) => Promise<__HttpRequest>;
|
|
498
|
+
export declare const se_UpdateLocationFsxWindowsCommand: (
|
|
499
|
+
input: UpdateLocationFsxWindowsCommandInput,
|
|
500
|
+
context: __SerdeContext
|
|
501
|
+
) => Promise<__HttpRequest>;
|
|
458
502
|
export declare const se_UpdateLocationHdfsCommand: (
|
|
459
503
|
input: UpdateLocationHdfsCommandInput,
|
|
460
504
|
context: __SerdeContext
|
|
@@ -467,6 +511,10 @@ export declare const se_UpdateLocationObjectStorageCommand: (
|
|
|
467
511
|
input: UpdateLocationObjectStorageCommandInput,
|
|
468
512
|
context: __SerdeContext
|
|
469
513
|
) => Promise<__HttpRequest>;
|
|
514
|
+
export declare const se_UpdateLocationS3Command: (
|
|
515
|
+
input: UpdateLocationS3CommandInput,
|
|
516
|
+
context: __SerdeContext
|
|
517
|
+
) => Promise<__HttpRequest>;
|
|
470
518
|
export declare const se_UpdateLocationSmbCommand: (
|
|
471
519
|
input: UpdateLocationSmbCommandInput,
|
|
472
520
|
context: __SerdeContext
|
|
@@ -695,6 +743,26 @@ export declare const de_UpdateLocationAzureBlobCommand: (
|
|
|
695
743
|
output: __HttpResponse,
|
|
696
744
|
context: __SerdeContext
|
|
697
745
|
) => Promise<UpdateLocationAzureBlobCommandOutput>;
|
|
746
|
+
export declare const de_UpdateLocationEfsCommand: (
|
|
747
|
+
output: __HttpResponse,
|
|
748
|
+
context: __SerdeContext
|
|
749
|
+
) => Promise<UpdateLocationEfsCommandOutput>;
|
|
750
|
+
export declare const de_UpdateLocationFsxLustreCommand: (
|
|
751
|
+
output: __HttpResponse,
|
|
752
|
+
context: __SerdeContext
|
|
753
|
+
) => Promise<UpdateLocationFsxLustreCommandOutput>;
|
|
754
|
+
export declare const de_UpdateLocationFsxOntapCommand: (
|
|
755
|
+
output: __HttpResponse,
|
|
756
|
+
context: __SerdeContext
|
|
757
|
+
) => Promise<UpdateLocationFsxOntapCommandOutput>;
|
|
758
|
+
export declare const de_UpdateLocationFsxOpenZfsCommand: (
|
|
759
|
+
output: __HttpResponse,
|
|
760
|
+
context: __SerdeContext
|
|
761
|
+
) => Promise<UpdateLocationFsxOpenZfsCommandOutput>;
|
|
762
|
+
export declare const de_UpdateLocationFsxWindowsCommand: (
|
|
763
|
+
output: __HttpResponse,
|
|
764
|
+
context: __SerdeContext
|
|
765
|
+
) => Promise<UpdateLocationFsxWindowsCommandOutput>;
|
|
698
766
|
export declare const de_UpdateLocationHdfsCommand: (
|
|
699
767
|
output: __HttpResponse,
|
|
700
768
|
context: __SerdeContext
|
|
@@ -707,6 +775,10 @@ export declare const de_UpdateLocationObjectStorageCommand: (
|
|
|
707
775
|
output: __HttpResponse,
|
|
708
776
|
context: __SerdeContext
|
|
709
777
|
) => Promise<UpdateLocationObjectStorageCommandOutput>;
|
|
778
|
+
export declare const de_UpdateLocationS3Command: (
|
|
779
|
+
output: __HttpResponse,
|
|
780
|
+
context: __SerdeContext
|
|
781
|
+
) => Promise<UpdateLocationS3CommandOutput>;
|
|
710
782
|
export declare const de_UpdateLocationSmbCommand: (
|
|
711
783
|
output: __HttpResponse,
|
|
712
784
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datasync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datasync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.715.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-datasync",
|