@aws-sdk/client-datasync 3.716.0 → 3.723.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/dist-cjs/index.js +296 -218
- package/dist-es/DataSyncClient.js +1 -0
- package/dist-es/models/models_0.js +7 -4
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -271,7 +271,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
271
271
|
}, "resolveRuntimeExtensions");
|
|
272
272
|
|
|
273
273
|
// src/DataSyncClient.ts
|
|
274
|
-
var
|
|
274
|
+
var DataSyncClient = class extends import_smithy_client.Client {
|
|
275
|
+
static {
|
|
276
|
+
__name(this, "DataSyncClient");
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* The resolved configuration of DataSyncClient class. This is resolved and normalized from the {@link DataSyncClientConfig | constructor configuration interface}.
|
|
280
|
+
*/
|
|
281
|
+
config;
|
|
275
282
|
constructor(...[configuration]) {
|
|
276
283
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
277
284
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -281,7 +288,7 @@ var _DataSyncClient = class _DataSyncClient extends import_smithy_client.Client
|
|
|
281
288
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
282
289
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
283
290
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
284
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
291
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
285
292
|
super(_config_8);
|
|
286
293
|
this.config = _config_8;
|
|
287
294
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -309,8 +316,6 @@ var _DataSyncClient = class _DataSyncClient extends import_smithy_client.Client
|
|
|
309
316
|
super.destroy();
|
|
310
317
|
}
|
|
311
318
|
};
|
|
312
|
-
__name(_DataSyncClient, "DataSyncClient");
|
|
313
|
-
var DataSyncClient = _DataSyncClient;
|
|
314
319
|
|
|
315
320
|
// src/DataSync.ts
|
|
316
321
|
|
|
@@ -325,7 +330,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
325
330
|
|
|
326
331
|
// src/models/DataSyncServiceException.ts
|
|
327
332
|
|
|
328
|
-
var
|
|
333
|
+
var DataSyncServiceException = class _DataSyncServiceException extends import_smithy_client.ServiceException {
|
|
334
|
+
static {
|
|
335
|
+
__name(this, "DataSyncServiceException");
|
|
336
|
+
}
|
|
329
337
|
/**
|
|
330
338
|
* @internal
|
|
331
339
|
*/
|
|
@@ -334,14 +342,18 @@ var _DataSyncServiceException = class _DataSyncServiceException extends import_s
|
|
|
334
342
|
Object.setPrototypeOf(this, _DataSyncServiceException.prototype);
|
|
335
343
|
}
|
|
336
344
|
};
|
|
337
|
-
__name(_DataSyncServiceException, "DataSyncServiceException");
|
|
338
|
-
var DataSyncServiceException = _DataSyncServiceException;
|
|
339
345
|
|
|
340
346
|
// src/models/models_0.ts
|
|
341
347
|
var DiscoverySystemType = {
|
|
342
348
|
NetAppONTAP: "NetAppONTAP"
|
|
343
349
|
};
|
|
344
|
-
var
|
|
350
|
+
var InternalException = class _InternalException extends DataSyncServiceException {
|
|
351
|
+
static {
|
|
352
|
+
__name(this, "InternalException");
|
|
353
|
+
}
|
|
354
|
+
name = "InternalException";
|
|
355
|
+
$fault = "server";
|
|
356
|
+
errorCode;
|
|
345
357
|
/**
|
|
346
358
|
* @internal
|
|
347
359
|
*/
|
|
@@ -351,15 +363,18 @@ var _InternalException = class _InternalException extends DataSyncServiceExcepti
|
|
|
351
363
|
$fault: "server",
|
|
352
364
|
...opts
|
|
353
365
|
});
|
|
354
|
-
this.name = "InternalException";
|
|
355
|
-
this.$fault = "server";
|
|
356
366
|
Object.setPrototypeOf(this, _InternalException.prototype);
|
|
357
367
|
this.errorCode = opts.errorCode;
|
|
358
368
|
}
|
|
359
369
|
};
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
370
|
+
var InvalidRequestException = class _InvalidRequestException extends DataSyncServiceException {
|
|
371
|
+
static {
|
|
372
|
+
__name(this, "InvalidRequestException");
|
|
373
|
+
}
|
|
374
|
+
name = "InvalidRequestException";
|
|
375
|
+
$fault = "client";
|
|
376
|
+
errorCode;
|
|
377
|
+
datasyncErrorCode;
|
|
363
378
|
/**
|
|
364
379
|
* @internal
|
|
365
380
|
*/
|
|
@@ -369,15 +384,11 @@ var _InvalidRequestException = class _InvalidRequestException extends DataSyncSe
|
|
|
369
384
|
$fault: "client",
|
|
370
385
|
...opts
|
|
371
386
|
});
|
|
372
|
-
this.name = "InvalidRequestException";
|
|
373
|
-
this.$fault = "client";
|
|
374
387
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
375
388
|
this.errorCode = opts.errorCode;
|
|
376
389
|
this.datasyncErrorCode = opts.datasyncErrorCode;
|
|
377
390
|
}
|
|
378
391
|
};
|
|
379
|
-
__name(_InvalidRequestException, "InvalidRequestException");
|
|
380
|
-
var InvalidRequestException = _InvalidRequestException;
|
|
381
392
|
var AgentStatus = {
|
|
382
393
|
OFFLINE: "OFFLINE",
|
|
383
394
|
ONLINE: "ONLINE"
|
|
@@ -2580,925 +2591,991 @@ function sharedHeaders(operation) {
|
|
|
2580
2591
|
__name(sharedHeaders, "sharedHeaders");
|
|
2581
2592
|
|
|
2582
2593
|
// src/commands/AddStorageSystemCommand.ts
|
|
2583
|
-
var
|
|
2594
|
+
var AddStorageSystemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2584
2595
|
return [
|
|
2585
2596
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2586
2597
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2587
2598
|
];
|
|
2588
2599
|
}).s("FmrsService", "AddStorageSystem", {}).n("DataSyncClient", "AddStorageSystemCommand").f(AddStorageSystemRequestFilterSensitiveLog, void 0).ser(se_AddStorageSystemCommand).de(de_AddStorageSystemCommand).build() {
|
|
2600
|
+
static {
|
|
2601
|
+
__name(this, "AddStorageSystemCommand");
|
|
2602
|
+
}
|
|
2589
2603
|
};
|
|
2590
|
-
__name(_AddStorageSystemCommand, "AddStorageSystemCommand");
|
|
2591
|
-
var AddStorageSystemCommand = _AddStorageSystemCommand;
|
|
2592
2604
|
|
|
2593
2605
|
// src/commands/CancelTaskExecutionCommand.ts
|
|
2594
2606
|
|
|
2595
2607
|
|
|
2596
2608
|
|
|
2597
|
-
var
|
|
2609
|
+
var CancelTaskExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2598
2610
|
return [
|
|
2599
2611
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2600
2612
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2601
2613
|
];
|
|
2602
2614
|
}).s("FmrsService", "CancelTaskExecution", {}).n("DataSyncClient", "CancelTaskExecutionCommand").f(void 0, void 0).ser(se_CancelTaskExecutionCommand).de(de_CancelTaskExecutionCommand).build() {
|
|
2615
|
+
static {
|
|
2616
|
+
__name(this, "CancelTaskExecutionCommand");
|
|
2617
|
+
}
|
|
2603
2618
|
};
|
|
2604
|
-
__name(_CancelTaskExecutionCommand, "CancelTaskExecutionCommand");
|
|
2605
|
-
var CancelTaskExecutionCommand = _CancelTaskExecutionCommand;
|
|
2606
2619
|
|
|
2607
2620
|
// src/commands/CreateAgentCommand.ts
|
|
2608
2621
|
|
|
2609
2622
|
|
|
2610
2623
|
|
|
2611
|
-
var
|
|
2624
|
+
var CreateAgentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2612
2625
|
return [
|
|
2613
2626
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2614
2627
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2615
2628
|
];
|
|
2616
2629
|
}).s("FmrsService", "CreateAgent", {}).n("DataSyncClient", "CreateAgentCommand").f(void 0, void 0).ser(se_CreateAgentCommand).de(de_CreateAgentCommand).build() {
|
|
2630
|
+
static {
|
|
2631
|
+
__name(this, "CreateAgentCommand");
|
|
2632
|
+
}
|
|
2617
2633
|
};
|
|
2618
|
-
__name(_CreateAgentCommand, "CreateAgentCommand");
|
|
2619
|
-
var CreateAgentCommand = _CreateAgentCommand;
|
|
2620
2634
|
|
|
2621
2635
|
// src/commands/CreateLocationAzureBlobCommand.ts
|
|
2622
2636
|
|
|
2623
2637
|
|
|
2624
2638
|
|
|
2625
|
-
var
|
|
2639
|
+
var CreateLocationAzureBlobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2626
2640
|
return [
|
|
2627
2641
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2628
2642
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2629
2643
|
];
|
|
2630
2644
|
}).s("FmrsService", "CreateLocationAzureBlob", {}).n("DataSyncClient", "CreateLocationAzureBlobCommand").f(CreateLocationAzureBlobRequestFilterSensitiveLog, void 0).ser(se_CreateLocationAzureBlobCommand).de(de_CreateLocationAzureBlobCommand).build() {
|
|
2645
|
+
static {
|
|
2646
|
+
__name(this, "CreateLocationAzureBlobCommand");
|
|
2647
|
+
}
|
|
2631
2648
|
};
|
|
2632
|
-
__name(_CreateLocationAzureBlobCommand, "CreateLocationAzureBlobCommand");
|
|
2633
|
-
var CreateLocationAzureBlobCommand = _CreateLocationAzureBlobCommand;
|
|
2634
2649
|
|
|
2635
2650
|
// src/commands/CreateLocationEfsCommand.ts
|
|
2636
2651
|
|
|
2637
2652
|
|
|
2638
2653
|
|
|
2639
|
-
var
|
|
2654
|
+
var CreateLocationEfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2640
2655
|
return [
|
|
2641
2656
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2642
2657
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2643
2658
|
];
|
|
2644
2659
|
}).s("FmrsService", "CreateLocationEfs", {}).n("DataSyncClient", "CreateLocationEfsCommand").f(void 0, void 0).ser(se_CreateLocationEfsCommand).de(de_CreateLocationEfsCommand).build() {
|
|
2660
|
+
static {
|
|
2661
|
+
__name(this, "CreateLocationEfsCommand");
|
|
2662
|
+
}
|
|
2645
2663
|
};
|
|
2646
|
-
__name(_CreateLocationEfsCommand, "CreateLocationEfsCommand");
|
|
2647
|
-
var CreateLocationEfsCommand = _CreateLocationEfsCommand;
|
|
2648
2664
|
|
|
2649
2665
|
// src/commands/CreateLocationFsxLustreCommand.ts
|
|
2650
2666
|
|
|
2651
2667
|
|
|
2652
2668
|
|
|
2653
|
-
var
|
|
2669
|
+
var CreateLocationFsxLustreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2654
2670
|
return [
|
|
2655
2671
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2656
2672
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2657
2673
|
];
|
|
2658
2674
|
}).s("FmrsService", "CreateLocationFsxLustre", {}).n("DataSyncClient", "CreateLocationFsxLustreCommand").f(void 0, void 0).ser(se_CreateLocationFsxLustreCommand).de(de_CreateLocationFsxLustreCommand).build() {
|
|
2675
|
+
static {
|
|
2676
|
+
__name(this, "CreateLocationFsxLustreCommand");
|
|
2677
|
+
}
|
|
2659
2678
|
};
|
|
2660
|
-
__name(_CreateLocationFsxLustreCommand, "CreateLocationFsxLustreCommand");
|
|
2661
|
-
var CreateLocationFsxLustreCommand = _CreateLocationFsxLustreCommand;
|
|
2662
2679
|
|
|
2663
2680
|
// src/commands/CreateLocationFsxOntapCommand.ts
|
|
2664
2681
|
|
|
2665
2682
|
|
|
2666
2683
|
|
|
2667
|
-
var
|
|
2684
|
+
var CreateLocationFsxOntapCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2668
2685
|
return [
|
|
2669
2686
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2670
2687
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2671
2688
|
];
|
|
2672
2689
|
}).s("FmrsService", "CreateLocationFsxOntap", {}).n("DataSyncClient", "CreateLocationFsxOntapCommand").f(CreateLocationFsxOntapRequestFilterSensitiveLog, void 0).ser(se_CreateLocationFsxOntapCommand).de(de_CreateLocationFsxOntapCommand).build() {
|
|
2690
|
+
static {
|
|
2691
|
+
__name(this, "CreateLocationFsxOntapCommand");
|
|
2692
|
+
}
|
|
2673
2693
|
};
|
|
2674
|
-
__name(_CreateLocationFsxOntapCommand, "CreateLocationFsxOntapCommand");
|
|
2675
|
-
var CreateLocationFsxOntapCommand = _CreateLocationFsxOntapCommand;
|
|
2676
2694
|
|
|
2677
2695
|
// src/commands/CreateLocationFsxOpenZfsCommand.ts
|
|
2678
2696
|
|
|
2679
2697
|
|
|
2680
2698
|
|
|
2681
|
-
var
|
|
2699
|
+
var CreateLocationFsxOpenZfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2682
2700
|
return [
|
|
2683
2701
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2684
2702
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2685
2703
|
];
|
|
2686
2704
|
}).s("FmrsService", "CreateLocationFsxOpenZfs", {}).n("DataSyncClient", "CreateLocationFsxOpenZfsCommand").f(CreateLocationFsxOpenZfsRequestFilterSensitiveLog, void 0).ser(se_CreateLocationFsxOpenZfsCommand).de(de_CreateLocationFsxOpenZfsCommand).build() {
|
|
2705
|
+
static {
|
|
2706
|
+
__name(this, "CreateLocationFsxOpenZfsCommand");
|
|
2707
|
+
}
|
|
2687
2708
|
};
|
|
2688
|
-
__name(_CreateLocationFsxOpenZfsCommand, "CreateLocationFsxOpenZfsCommand");
|
|
2689
|
-
var CreateLocationFsxOpenZfsCommand = _CreateLocationFsxOpenZfsCommand;
|
|
2690
2709
|
|
|
2691
2710
|
// src/commands/CreateLocationFsxWindowsCommand.ts
|
|
2692
2711
|
|
|
2693
2712
|
|
|
2694
2713
|
|
|
2695
|
-
var
|
|
2714
|
+
var CreateLocationFsxWindowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2696
2715
|
return [
|
|
2697
2716
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2698
2717
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2699
2718
|
];
|
|
2700
2719
|
}).s("FmrsService", "CreateLocationFsxWindows", {}).n("DataSyncClient", "CreateLocationFsxWindowsCommand").f(CreateLocationFsxWindowsRequestFilterSensitiveLog, void 0).ser(se_CreateLocationFsxWindowsCommand).de(de_CreateLocationFsxWindowsCommand).build() {
|
|
2720
|
+
static {
|
|
2721
|
+
__name(this, "CreateLocationFsxWindowsCommand");
|
|
2722
|
+
}
|
|
2701
2723
|
};
|
|
2702
|
-
__name(_CreateLocationFsxWindowsCommand, "CreateLocationFsxWindowsCommand");
|
|
2703
|
-
var CreateLocationFsxWindowsCommand = _CreateLocationFsxWindowsCommand;
|
|
2704
2724
|
|
|
2705
2725
|
// src/commands/CreateLocationHdfsCommand.ts
|
|
2706
2726
|
|
|
2707
2727
|
|
|
2708
2728
|
|
|
2709
|
-
var
|
|
2729
|
+
var CreateLocationHdfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2710
2730
|
return [
|
|
2711
2731
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2712
2732
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2713
2733
|
];
|
|
2714
2734
|
}).s("FmrsService", "CreateLocationHdfs", {}).n("DataSyncClient", "CreateLocationHdfsCommand").f(void 0, void 0).ser(se_CreateLocationHdfsCommand).de(de_CreateLocationHdfsCommand).build() {
|
|
2735
|
+
static {
|
|
2736
|
+
__name(this, "CreateLocationHdfsCommand");
|
|
2737
|
+
}
|
|
2715
2738
|
};
|
|
2716
|
-
__name(_CreateLocationHdfsCommand, "CreateLocationHdfsCommand");
|
|
2717
|
-
var CreateLocationHdfsCommand = _CreateLocationHdfsCommand;
|
|
2718
2739
|
|
|
2719
2740
|
// src/commands/CreateLocationNfsCommand.ts
|
|
2720
2741
|
|
|
2721
2742
|
|
|
2722
2743
|
|
|
2723
|
-
var
|
|
2744
|
+
var CreateLocationNfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2724
2745
|
return [
|
|
2725
2746
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2726
2747
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2727
2748
|
];
|
|
2728
2749
|
}).s("FmrsService", "CreateLocationNfs", {}).n("DataSyncClient", "CreateLocationNfsCommand").f(void 0, void 0).ser(se_CreateLocationNfsCommand).de(de_CreateLocationNfsCommand).build() {
|
|
2750
|
+
static {
|
|
2751
|
+
__name(this, "CreateLocationNfsCommand");
|
|
2752
|
+
}
|
|
2729
2753
|
};
|
|
2730
|
-
__name(_CreateLocationNfsCommand, "CreateLocationNfsCommand");
|
|
2731
|
-
var CreateLocationNfsCommand = _CreateLocationNfsCommand;
|
|
2732
2754
|
|
|
2733
2755
|
// src/commands/CreateLocationObjectStorageCommand.ts
|
|
2734
2756
|
|
|
2735
2757
|
|
|
2736
2758
|
|
|
2737
|
-
var
|
|
2759
|
+
var CreateLocationObjectStorageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2738
2760
|
return [
|
|
2739
2761
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2740
2762
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2741
2763
|
];
|
|
2742
2764
|
}).s("FmrsService", "CreateLocationObjectStorage", {}).n("DataSyncClient", "CreateLocationObjectStorageCommand").f(CreateLocationObjectStorageRequestFilterSensitiveLog, void 0).ser(se_CreateLocationObjectStorageCommand).de(de_CreateLocationObjectStorageCommand).build() {
|
|
2765
|
+
static {
|
|
2766
|
+
__name(this, "CreateLocationObjectStorageCommand");
|
|
2767
|
+
}
|
|
2743
2768
|
};
|
|
2744
|
-
__name(_CreateLocationObjectStorageCommand, "CreateLocationObjectStorageCommand");
|
|
2745
|
-
var CreateLocationObjectStorageCommand = _CreateLocationObjectStorageCommand;
|
|
2746
2769
|
|
|
2747
2770
|
// src/commands/CreateLocationS3Command.ts
|
|
2748
2771
|
|
|
2749
2772
|
|
|
2750
2773
|
|
|
2751
|
-
var
|
|
2774
|
+
var CreateLocationS3Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2752
2775
|
return [
|
|
2753
2776
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2754
2777
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2755
2778
|
];
|
|
2756
2779
|
}).s("FmrsService", "CreateLocationS3", {}).n("DataSyncClient", "CreateLocationS3Command").f(void 0, void 0).ser(se_CreateLocationS3Command).de(de_CreateLocationS3Command).build() {
|
|
2780
|
+
static {
|
|
2781
|
+
__name(this, "CreateLocationS3Command");
|
|
2782
|
+
}
|
|
2757
2783
|
};
|
|
2758
|
-
__name(_CreateLocationS3Command, "CreateLocationS3Command");
|
|
2759
|
-
var CreateLocationS3Command = _CreateLocationS3Command;
|
|
2760
2784
|
|
|
2761
2785
|
// src/commands/CreateLocationSmbCommand.ts
|
|
2762
2786
|
|
|
2763
2787
|
|
|
2764
2788
|
|
|
2765
|
-
var
|
|
2789
|
+
var CreateLocationSmbCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2766
2790
|
return [
|
|
2767
2791
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2768
2792
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2769
2793
|
];
|
|
2770
2794
|
}).s("FmrsService", "CreateLocationSmb", {}).n("DataSyncClient", "CreateLocationSmbCommand").f(CreateLocationSmbRequestFilterSensitiveLog, void 0).ser(se_CreateLocationSmbCommand).de(de_CreateLocationSmbCommand).build() {
|
|
2795
|
+
static {
|
|
2796
|
+
__name(this, "CreateLocationSmbCommand");
|
|
2797
|
+
}
|
|
2771
2798
|
};
|
|
2772
|
-
__name(_CreateLocationSmbCommand, "CreateLocationSmbCommand");
|
|
2773
|
-
var CreateLocationSmbCommand = _CreateLocationSmbCommand;
|
|
2774
2799
|
|
|
2775
2800
|
// src/commands/CreateTaskCommand.ts
|
|
2776
2801
|
|
|
2777
2802
|
|
|
2778
2803
|
|
|
2779
|
-
var
|
|
2804
|
+
var CreateTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2780
2805
|
return [
|
|
2781
2806
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2782
2807
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2783
2808
|
];
|
|
2784
2809
|
}).s("FmrsService", "CreateTask", {}).n("DataSyncClient", "CreateTaskCommand").f(void 0, void 0).ser(se_CreateTaskCommand).de(de_CreateTaskCommand).build() {
|
|
2810
|
+
static {
|
|
2811
|
+
__name(this, "CreateTaskCommand");
|
|
2812
|
+
}
|
|
2785
2813
|
};
|
|
2786
|
-
__name(_CreateTaskCommand, "CreateTaskCommand");
|
|
2787
|
-
var CreateTaskCommand = _CreateTaskCommand;
|
|
2788
2814
|
|
|
2789
2815
|
// src/commands/DeleteAgentCommand.ts
|
|
2790
2816
|
|
|
2791
2817
|
|
|
2792
2818
|
|
|
2793
|
-
var
|
|
2819
|
+
var DeleteAgentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2794
2820
|
return [
|
|
2795
2821
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2796
2822
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2797
2823
|
];
|
|
2798
2824
|
}).s("FmrsService", "DeleteAgent", {}).n("DataSyncClient", "DeleteAgentCommand").f(void 0, void 0).ser(se_DeleteAgentCommand).de(de_DeleteAgentCommand).build() {
|
|
2825
|
+
static {
|
|
2826
|
+
__name(this, "DeleteAgentCommand");
|
|
2827
|
+
}
|
|
2799
2828
|
};
|
|
2800
|
-
__name(_DeleteAgentCommand, "DeleteAgentCommand");
|
|
2801
|
-
var DeleteAgentCommand = _DeleteAgentCommand;
|
|
2802
2829
|
|
|
2803
2830
|
// src/commands/DeleteLocationCommand.ts
|
|
2804
2831
|
|
|
2805
2832
|
|
|
2806
2833
|
|
|
2807
|
-
var
|
|
2834
|
+
var DeleteLocationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2808
2835
|
return [
|
|
2809
2836
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2810
2837
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2811
2838
|
];
|
|
2812
2839
|
}).s("FmrsService", "DeleteLocation", {}).n("DataSyncClient", "DeleteLocationCommand").f(void 0, void 0).ser(se_DeleteLocationCommand).de(de_DeleteLocationCommand).build() {
|
|
2840
|
+
static {
|
|
2841
|
+
__name(this, "DeleteLocationCommand");
|
|
2842
|
+
}
|
|
2813
2843
|
};
|
|
2814
|
-
__name(_DeleteLocationCommand, "DeleteLocationCommand");
|
|
2815
|
-
var DeleteLocationCommand = _DeleteLocationCommand;
|
|
2816
2844
|
|
|
2817
2845
|
// src/commands/DeleteTaskCommand.ts
|
|
2818
2846
|
|
|
2819
2847
|
|
|
2820
2848
|
|
|
2821
|
-
var
|
|
2849
|
+
var DeleteTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2822
2850
|
return [
|
|
2823
2851
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2824
2852
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2825
2853
|
];
|
|
2826
2854
|
}).s("FmrsService", "DeleteTask", {}).n("DataSyncClient", "DeleteTaskCommand").f(void 0, void 0).ser(se_DeleteTaskCommand).de(de_DeleteTaskCommand).build() {
|
|
2855
|
+
static {
|
|
2856
|
+
__name(this, "DeleteTaskCommand");
|
|
2857
|
+
}
|
|
2827
2858
|
};
|
|
2828
|
-
__name(_DeleteTaskCommand, "DeleteTaskCommand");
|
|
2829
|
-
var DeleteTaskCommand = _DeleteTaskCommand;
|
|
2830
2859
|
|
|
2831
2860
|
// src/commands/DescribeAgentCommand.ts
|
|
2832
2861
|
|
|
2833
2862
|
|
|
2834
2863
|
|
|
2835
|
-
var
|
|
2864
|
+
var DescribeAgentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2836
2865
|
return [
|
|
2837
2866
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2838
2867
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2839
2868
|
];
|
|
2840
2869
|
}).s("FmrsService", "DescribeAgent", {}).n("DataSyncClient", "DescribeAgentCommand").f(void 0, void 0).ser(se_DescribeAgentCommand).de(de_DescribeAgentCommand).build() {
|
|
2870
|
+
static {
|
|
2871
|
+
__name(this, "DescribeAgentCommand");
|
|
2872
|
+
}
|
|
2841
2873
|
};
|
|
2842
|
-
__name(_DescribeAgentCommand, "DescribeAgentCommand");
|
|
2843
|
-
var DescribeAgentCommand = _DescribeAgentCommand;
|
|
2844
2874
|
|
|
2845
2875
|
// src/commands/DescribeDiscoveryJobCommand.ts
|
|
2846
2876
|
|
|
2847
2877
|
|
|
2848
2878
|
|
|
2849
|
-
var
|
|
2879
|
+
var DescribeDiscoveryJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2850
2880
|
return [
|
|
2851
2881
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2852
2882
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2853
2883
|
];
|
|
2854
2884
|
}).s("FmrsService", "DescribeDiscoveryJob", {}).n("DataSyncClient", "DescribeDiscoveryJobCommand").f(void 0, void 0).ser(se_DescribeDiscoveryJobCommand).de(de_DescribeDiscoveryJobCommand).build() {
|
|
2885
|
+
static {
|
|
2886
|
+
__name(this, "DescribeDiscoveryJobCommand");
|
|
2887
|
+
}
|
|
2855
2888
|
};
|
|
2856
|
-
__name(_DescribeDiscoveryJobCommand, "DescribeDiscoveryJobCommand");
|
|
2857
|
-
var DescribeDiscoveryJobCommand = _DescribeDiscoveryJobCommand;
|
|
2858
2889
|
|
|
2859
2890
|
// src/commands/DescribeLocationAzureBlobCommand.ts
|
|
2860
2891
|
|
|
2861
2892
|
|
|
2862
2893
|
|
|
2863
|
-
var
|
|
2894
|
+
var DescribeLocationAzureBlobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2864
2895
|
return [
|
|
2865
2896
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2866
2897
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2867
2898
|
];
|
|
2868
2899
|
}).s("FmrsService", "DescribeLocationAzureBlob", {}).n("DataSyncClient", "DescribeLocationAzureBlobCommand").f(void 0, void 0).ser(se_DescribeLocationAzureBlobCommand).de(de_DescribeLocationAzureBlobCommand).build() {
|
|
2900
|
+
static {
|
|
2901
|
+
__name(this, "DescribeLocationAzureBlobCommand");
|
|
2902
|
+
}
|
|
2869
2903
|
};
|
|
2870
|
-
__name(_DescribeLocationAzureBlobCommand, "DescribeLocationAzureBlobCommand");
|
|
2871
|
-
var DescribeLocationAzureBlobCommand = _DescribeLocationAzureBlobCommand;
|
|
2872
2904
|
|
|
2873
2905
|
// src/commands/DescribeLocationEfsCommand.ts
|
|
2874
2906
|
|
|
2875
2907
|
|
|
2876
2908
|
|
|
2877
|
-
var
|
|
2909
|
+
var DescribeLocationEfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2878
2910
|
return [
|
|
2879
2911
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2880
2912
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2881
2913
|
];
|
|
2882
2914
|
}).s("FmrsService", "DescribeLocationEfs", {}).n("DataSyncClient", "DescribeLocationEfsCommand").f(void 0, void 0).ser(se_DescribeLocationEfsCommand).de(de_DescribeLocationEfsCommand).build() {
|
|
2915
|
+
static {
|
|
2916
|
+
__name(this, "DescribeLocationEfsCommand");
|
|
2917
|
+
}
|
|
2883
2918
|
};
|
|
2884
|
-
__name(_DescribeLocationEfsCommand, "DescribeLocationEfsCommand");
|
|
2885
|
-
var DescribeLocationEfsCommand = _DescribeLocationEfsCommand;
|
|
2886
2919
|
|
|
2887
2920
|
// src/commands/DescribeLocationFsxLustreCommand.ts
|
|
2888
2921
|
|
|
2889
2922
|
|
|
2890
2923
|
|
|
2891
|
-
var
|
|
2924
|
+
var DescribeLocationFsxLustreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2892
2925
|
return [
|
|
2893
2926
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2894
2927
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2895
2928
|
];
|
|
2896
2929
|
}).s("FmrsService", "DescribeLocationFsxLustre", {}).n("DataSyncClient", "DescribeLocationFsxLustreCommand").f(void 0, void 0).ser(se_DescribeLocationFsxLustreCommand).de(de_DescribeLocationFsxLustreCommand).build() {
|
|
2930
|
+
static {
|
|
2931
|
+
__name(this, "DescribeLocationFsxLustreCommand");
|
|
2932
|
+
}
|
|
2897
2933
|
};
|
|
2898
|
-
__name(_DescribeLocationFsxLustreCommand, "DescribeLocationFsxLustreCommand");
|
|
2899
|
-
var DescribeLocationFsxLustreCommand = _DescribeLocationFsxLustreCommand;
|
|
2900
2934
|
|
|
2901
2935
|
// src/commands/DescribeLocationFsxOntapCommand.ts
|
|
2902
2936
|
|
|
2903
2937
|
|
|
2904
2938
|
|
|
2905
|
-
var
|
|
2939
|
+
var DescribeLocationFsxOntapCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2906
2940
|
return [
|
|
2907
2941
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2908
2942
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2909
2943
|
];
|
|
2910
2944
|
}).s("FmrsService", "DescribeLocationFsxOntap", {}).n("DataSyncClient", "DescribeLocationFsxOntapCommand").f(void 0, DescribeLocationFsxOntapResponseFilterSensitiveLog).ser(se_DescribeLocationFsxOntapCommand).de(de_DescribeLocationFsxOntapCommand).build() {
|
|
2945
|
+
static {
|
|
2946
|
+
__name(this, "DescribeLocationFsxOntapCommand");
|
|
2947
|
+
}
|
|
2911
2948
|
};
|
|
2912
|
-
__name(_DescribeLocationFsxOntapCommand, "DescribeLocationFsxOntapCommand");
|
|
2913
|
-
var DescribeLocationFsxOntapCommand = _DescribeLocationFsxOntapCommand;
|
|
2914
2949
|
|
|
2915
2950
|
// src/commands/DescribeLocationFsxOpenZfsCommand.ts
|
|
2916
2951
|
|
|
2917
2952
|
|
|
2918
2953
|
|
|
2919
|
-
var
|
|
2954
|
+
var DescribeLocationFsxOpenZfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2920
2955
|
return [
|
|
2921
2956
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2922
2957
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2923
2958
|
];
|
|
2924
2959
|
}).s("FmrsService", "DescribeLocationFsxOpenZfs", {}).n("DataSyncClient", "DescribeLocationFsxOpenZfsCommand").f(void 0, DescribeLocationFsxOpenZfsResponseFilterSensitiveLog).ser(se_DescribeLocationFsxOpenZfsCommand).de(de_DescribeLocationFsxOpenZfsCommand).build() {
|
|
2960
|
+
static {
|
|
2961
|
+
__name(this, "DescribeLocationFsxOpenZfsCommand");
|
|
2962
|
+
}
|
|
2925
2963
|
};
|
|
2926
|
-
__name(_DescribeLocationFsxOpenZfsCommand, "DescribeLocationFsxOpenZfsCommand");
|
|
2927
|
-
var DescribeLocationFsxOpenZfsCommand = _DescribeLocationFsxOpenZfsCommand;
|
|
2928
2964
|
|
|
2929
2965
|
// src/commands/DescribeLocationFsxWindowsCommand.ts
|
|
2930
2966
|
|
|
2931
2967
|
|
|
2932
2968
|
|
|
2933
|
-
var
|
|
2969
|
+
var DescribeLocationFsxWindowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2934
2970
|
return [
|
|
2935
2971
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2936
2972
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2937
2973
|
];
|
|
2938
2974
|
}).s("FmrsService", "DescribeLocationFsxWindows", {}).n("DataSyncClient", "DescribeLocationFsxWindowsCommand").f(void 0, void 0).ser(se_DescribeLocationFsxWindowsCommand).de(de_DescribeLocationFsxWindowsCommand).build() {
|
|
2975
|
+
static {
|
|
2976
|
+
__name(this, "DescribeLocationFsxWindowsCommand");
|
|
2977
|
+
}
|
|
2939
2978
|
};
|
|
2940
|
-
__name(_DescribeLocationFsxWindowsCommand, "DescribeLocationFsxWindowsCommand");
|
|
2941
|
-
var DescribeLocationFsxWindowsCommand = _DescribeLocationFsxWindowsCommand;
|
|
2942
2979
|
|
|
2943
2980
|
// src/commands/DescribeLocationHdfsCommand.ts
|
|
2944
2981
|
|
|
2945
2982
|
|
|
2946
2983
|
|
|
2947
|
-
var
|
|
2984
|
+
var DescribeLocationHdfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2948
2985
|
return [
|
|
2949
2986
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2950
2987
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2951
2988
|
];
|
|
2952
2989
|
}).s("FmrsService", "DescribeLocationHdfs", {}).n("DataSyncClient", "DescribeLocationHdfsCommand").f(void 0, void 0).ser(se_DescribeLocationHdfsCommand).de(de_DescribeLocationHdfsCommand).build() {
|
|
2990
|
+
static {
|
|
2991
|
+
__name(this, "DescribeLocationHdfsCommand");
|
|
2992
|
+
}
|
|
2953
2993
|
};
|
|
2954
|
-
__name(_DescribeLocationHdfsCommand, "DescribeLocationHdfsCommand");
|
|
2955
|
-
var DescribeLocationHdfsCommand = _DescribeLocationHdfsCommand;
|
|
2956
2994
|
|
|
2957
2995
|
// src/commands/DescribeLocationNfsCommand.ts
|
|
2958
2996
|
|
|
2959
2997
|
|
|
2960
2998
|
|
|
2961
|
-
var
|
|
2999
|
+
var DescribeLocationNfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2962
3000
|
return [
|
|
2963
3001
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2964
3002
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2965
3003
|
];
|
|
2966
3004
|
}).s("FmrsService", "DescribeLocationNfs", {}).n("DataSyncClient", "DescribeLocationNfsCommand").f(void 0, void 0).ser(se_DescribeLocationNfsCommand).de(de_DescribeLocationNfsCommand).build() {
|
|
3005
|
+
static {
|
|
3006
|
+
__name(this, "DescribeLocationNfsCommand");
|
|
3007
|
+
}
|
|
2967
3008
|
};
|
|
2968
|
-
__name(_DescribeLocationNfsCommand, "DescribeLocationNfsCommand");
|
|
2969
|
-
var DescribeLocationNfsCommand = _DescribeLocationNfsCommand;
|
|
2970
3009
|
|
|
2971
3010
|
// src/commands/DescribeLocationObjectStorageCommand.ts
|
|
2972
3011
|
|
|
2973
3012
|
|
|
2974
3013
|
|
|
2975
|
-
var
|
|
3014
|
+
var DescribeLocationObjectStorageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2976
3015
|
return [
|
|
2977
3016
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2978
3017
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2979
3018
|
];
|
|
2980
3019
|
}).s("FmrsService", "DescribeLocationObjectStorage", {}).n("DataSyncClient", "DescribeLocationObjectStorageCommand").f(void 0, void 0).ser(se_DescribeLocationObjectStorageCommand).de(de_DescribeLocationObjectStorageCommand).build() {
|
|
3020
|
+
static {
|
|
3021
|
+
__name(this, "DescribeLocationObjectStorageCommand");
|
|
3022
|
+
}
|
|
2981
3023
|
};
|
|
2982
|
-
__name(_DescribeLocationObjectStorageCommand, "DescribeLocationObjectStorageCommand");
|
|
2983
|
-
var DescribeLocationObjectStorageCommand = _DescribeLocationObjectStorageCommand;
|
|
2984
3024
|
|
|
2985
3025
|
// src/commands/DescribeLocationS3Command.ts
|
|
2986
3026
|
|
|
2987
3027
|
|
|
2988
3028
|
|
|
2989
|
-
var
|
|
3029
|
+
var DescribeLocationS3Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2990
3030
|
return [
|
|
2991
3031
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2992
3032
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2993
3033
|
];
|
|
2994
3034
|
}).s("FmrsService", "DescribeLocationS3", {}).n("DataSyncClient", "DescribeLocationS3Command").f(void 0, void 0).ser(se_DescribeLocationS3Command).de(de_DescribeLocationS3Command).build() {
|
|
3035
|
+
static {
|
|
3036
|
+
__name(this, "DescribeLocationS3Command");
|
|
3037
|
+
}
|
|
2995
3038
|
};
|
|
2996
|
-
__name(_DescribeLocationS3Command, "DescribeLocationS3Command");
|
|
2997
|
-
var DescribeLocationS3Command = _DescribeLocationS3Command;
|
|
2998
3039
|
|
|
2999
3040
|
// src/commands/DescribeLocationSmbCommand.ts
|
|
3000
3041
|
|
|
3001
3042
|
|
|
3002
3043
|
|
|
3003
|
-
var
|
|
3044
|
+
var DescribeLocationSmbCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3004
3045
|
return [
|
|
3005
3046
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3006
3047
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3007
3048
|
];
|
|
3008
3049
|
}).s("FmrsService", "DescribeLocationSmb", {}).n("DataSyncClient", "DescribeLocationSmbCommand").f(void 0, void 0).ser(se_DescribeLocationSmbCommand).de(de_DescribeLocationSmbCommand).build() {
|
|
3050
|
+
static {
|
|
3051
|
+
__name(this, "DescribeLocationSmbCommand");
|
|
3052
|
+
}
|
|
3009
3053
|
};
|
|
3010
|
-
__name(_DescribeLocationSmbCommand, "DescribeLocationSmbCommand");
|
|
3011
|
-
var DescribeLocationSmbCommand = _DescribeLocationSmbCommand;
|
|
3012
3054
|
|
|
3013
3055
|
// src/commands/DescribeStorageSystemCommand.ts
|
|
3014
3056
|
|
|
3015
3057
|
|
|
3016
3058
|
|
|
3017
|
-
var
|
|
3059
|
+
var DescribeStorageSystemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3018
3060
|
return [
|
|
3019
3061
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3020
3062
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3021
3063
|
];
|
|
3022
3064
|
}).s("FmrsService", "DescribeStorageSystem", {}).n("DataSyncClient", "DescribeStorageSystemCommand").f(void 0, void 0).ser(se_DescribeStorageSystemCommand).de(de_DescribeStorageSystemCommand).build() {
|
|
3065
|
+
static {
|
|
3066
|
+
__name(this, "DescribeStorageSystemCommand");
|
|
3067
|
+
}
|
|
3023
3068
|
};
|
|
3024
|
-
__name(_DescribeStorageSystemCommand, "DescribeStorageSystemCommand");
|
|
3025
|
-
var DescribeStorageSystemCommand = _DescribeStorageSystemCommand;
|
|
3026
3069
|
|
|
3027
3070
|
// src/commands/DescribeStorageSystemResourceMetricsCommand.ts
|
|
3028
3071
|
|
|
3029
3072
|
|
|
3030
3073
|
|
|
3031
|
-
var
|
|
3074
|
+
var DescribeStorageSystemResourceMetricsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3032
3075
|
return [
|
|
3033
3076
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3034
3077
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3035
3078
|
];
|
|
3036
3079
|
}).s("FmrsService", "DescribeStorageSystemResourceMetrics", {}).n("DataSyncClient", "DescribeStorageSystemResourceMetricsCommand").f(void 0, void 0).ser(se_DescribeStorageSystemResourceMetricsCommand).de(de_DescribeStorageSystemResourceMetricsCommand).build() {
|
|
3080
|
+
static {
|
|
3081
|
+
__name(this, "DescribeStorageSystemResourceMetricsCommand");
|
|
3082
|
+
}
|
|
3037
3083
|
};
|
|
3038
|
-
__name(_DescribeStorageSystemResourceMetricsCommand, "DescribeStorageSystemResourceMetricsCommand");
|
|
3039
|
-
var DescribeStorageSystemResourceMetricsCommand = _DescribeStorageSystemResourceMetricsCommand;
|
|
3040
3084
|
|
|
3041
3085
|
// src/commands/DescribeStorageSystemResourcesCommand.ts
|
|
3042
3086
|
|
|
3043
3087
|
|
|
3044
3088
|
|
|
3045
|
-
var
|
|
3089
|
+
var DescribeStorageSystemResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3046
3090
|
return [
|
|
3047
3091
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3048
3092
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3049
3093
|
];
|
|
3050
3094
|
}).s("FmrsService", "DescribeStorageSystemResources", {}).n("DataSyncClient", "DescribeStorageSystemResourcesCommand").f(void 0, void 0).ser(se_DescribeStorageSystemResourcesCommand).de(de_DescribeStorageSystemResourcesCommand).build() {
|
|
3095
|
+
static {
|
|
3096
|
+
__name(this, "DescribeStorageSystemResourcesCommand");
|
|
3097
|
+
}
|
|
3051
3098
|
};
|
|
3052
|
-
__name(_DescribeStorageSystemResourcesCommand, "DescribeStorageSystemResourcesCommand");
|
|
3053
|
-
var DescribeStorageSystemResourcesCommand = _DescribeStorageSystemResourcesCommand;
|
|
3054
3099
|
|
|
3055
3100
|
// src/commands/DescribeTaskCommand.ts
|
|
3056
3101
|
|
|
3057
3102
|
|
|
3058
3103
|
|
|
3059
|
-
var
|
|
3104
|
+
var DescribeTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3060
3105
|
return [
|
|
3061
3106
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3062
3107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3063
3108
|
];
|
|
3064
3109
|
}).s("FmrsService", "DescribeTask", {}).n("DataSyncClient", "DescribeTaskCommand").f(void 0, void 0).ser(se_DescribeTaskCommand).de(de_DescribeTaskCommand).build() {
|
|
3110
|
+
static {
|
|
3111
|
+
__name(this, "DescribeTaskCommand");
|
|
3112
|
+
}
|
|
3065
3113
|
};
|
|
3066
|
-
__name(_DescribeTaskCommand, "DescribeTaskCommand");
|
|
3067
|
-
var DescribeTaskCommand = _DescribeTaskCommand;
|
|
3068
3114
|
|
|
3069
3115
|
// src/commands/DescribeTaskExecutionCommand.ts
|
|
3070
3116
|
|
|
3071
3117
|
|
|
3072
3118
|
|
|
3073
|
-
var
|
|
3119
|
+
var DescribeTaskExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3074
3120
|
return [
|
|
3075
3121
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3076
3122
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3077
3123
|
];
|
|
3078
3124
|
}).s("FmrsService", "DescribeTaskExecution", {}).n("DataSyncClient", "DescribeTaskExecutionCommand").f(void 0, void 0).ser(se_DescribeTaskExecutionCommand).de(de_DescribeTaskExecutionCommand).build() {
|
|
3125
|
+
static {
|
|
3126
|
+
__name(this, "DescribeTaskExecutionCommand");
|
|
3127
|
+
}
|
|
3079
3128
|
};
|
|
3080
|
-
__name(_DescribeTaskExecutionCommand, "DescribeTaskExecutionCommand");
|
|
3081
|
-
var DescribeTaskExecutionCommand = _DescribeTaskExecutionCommand;
|
|
3082
3129
|
|
|
3083
3130
|
// src/commands/GenerateRecommendationsCommand.ts
|
|
3084
3131
|
|
|
3085
3132
|
|
|
3086
3133
|
|
|
3087
|
-
var
|
|
3134
|
+
var GenerateRecommendationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3088
3135
|
return [
|
|
3089
3136
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3090
3137
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3091
3138
|
];
|
|
3092
3139
|
}).s("FmrsService", "GenerateRecommendations", {}).n("DataSyncClient", "GenerateRecommendationsCommand").f(void 0, void 0).ser(se_GenerateRecommendationsCommand).de(de_GenerateRecommendationsCommand).build() {
|
|
3140
|
+
static {
|
|
3141
|
+
__name(this, "GenerateRecommendationsCommand");
|
|
3142
|
+
}
|
|
3093
3143
|
};
|
|
3094
|
-
__name(_GenerateRecommendationsCommand, "GenerateRecommendationsCommand");
|
|
3095
|
-
var GenerateRecommendationsCommand = _GenerateRecommendationsCommand;
|
|
3096
3144
|
|
|
3097
3145
|
// src/commands/ListAgentsCommand.ts
|
|
3098
3146
|
|
|
3099
3147
|
|
|
3100
3148
|
|
|
3101
|
-
var
|
|
3149
|
+
var ListAgentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3102
3150
|
return [
|
|
3103
3151
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3104
3152
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3105
3153
|
];
|
|
3106
3154
|
}).s("FmrsService", "ListAgents", {}).n("DataSyncClient", "ListAgentsCommand").f(void 0, void 0).ser(se_ListAgentsCommand).de(de_ListAgentsCommand).build() {
|
|
3155
|
+
static {
|
|
3156
|
+
__name(this, "ListAgentsCommand");
|
|
3157
|
+
}
|
|
3107
3158
|
};
|
|
3108
|
-
__name(_ListAgentsCommand, "ListAgentsCommand");
|
|
3109
|
-
var ListAgentsCommand = _ListAgentsCommand;
|
|
3110
3159
|
|
|
3111
3160
|
// src/commands/ListDiscoveryJobsCommand.ts
|
|
3112
3161
|
|
|
3113
3162
|
|
|
3114
3163
|
|
|
3115
|
-
var
|
|
3164
|
+
var ListDiscoveryJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3116
3165
|
return [
|
|
3117
3166
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3118
3167
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3119
3168
|
];
|
|
3120
3169
|
}).s("FmrsService", "ListDiscoveryJobs", {}).n("DataSyncClient", "ListDiscoveryJobsCommand").f(void 0, void 0).ser(se_ListDiscoveryJobsCommand).de(de_ListDiscoveryJobsCommand).build() {
|
|
3170
|
+
static {
|
|
3171
|
+
__name(this, "ListDiscoveryJobsCommand");
|
|
3172
|
+
}
|
|
3121
3173
|
};
|
|
3122
|
-
__name(_ListDiscoveryJobsCommand, "ListDiscoveryJobsCommand");
|
|
3123
|
-
var ListDiscoveryJobsCommand = _ListDiscoveryJobsCommand;
|
|
3124
3174
|
|
|
3125
3175
|
// src/commands/ListLocationsCommand.ts
|
|
3126
3176
|
|
|
3127
3177
|
|
|
3128
3178
|
|
|
3129
|
-
var
|
|
3179
|
+
var ListLocationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3130
3180
|
return [
|
|
3131
3181
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3132
3182
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3133
3183
|
];
|
|
3134
3184
|
}).s("FmrsService", "ListLocations", {}).n("DataSyncClient", "ListLocationsCommand").f(void 0, void 0).ser(se_ListLocationsCommand).de(de_ListLocationsCommand).build() {
|
|
3185
|
+
static {
|
|
3186
|
+
__name(this, "ListLocationsCommand");
|
|
3187
|
+
}
|
|
3135
3188
|
};
|
|
3136
|
-
__name(_ListLocationsCommand, "ListLocationsCommand");
|
|
3137
|
-
var ListLocationsCommand = _ListLocationsCommand;
|
|
3138
3189
|
|
|
3139
3190
|
// src/commands/ListStorageSystemsCommand.ts
|
|
3140
3191
|
|
|
3141
3192
|
|
|
3142
3193
|
|
|
3143
|
-
var
|
|
3194
|
+
var ListStorageSystemsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3144
3195
|
return [
|
|
3145
3196
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3146
3197
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3147
3198
|
];
|
|
3148
3199
|
}).s("FmrsService", "ListStorageSystems", {}).n("DataSyncClient", "ListStorageSystemsCommand").f(void 0, void 0).ser(se_ListStorageSystemsCommand).de(de_ListStorageSystemsCommand).build() {
|
|
3200
|
+
static {
|
|
3201
|
+
__name(this, "ListStorageSystemsCommand");
|
|
3202
|
+
}
|
|
3149
3203
|
};
|
|
3150
|
-
__name(_ListStorageSystemsCommand, "ListStorageSystemsCommand");
|
|
3151
|
-
var ListStorageSystemsCommand = _ListStorageSystemsCommand;
|
|
3152
3204
|
|
|
3153
3205
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3154
3206
|
|
|
3155
3207
|
|
|
3156
3208
|
|
|
3157
|
-
var
|
|
3209
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3158
3210
|
return [
|
|
3159
3211
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3160
3212
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3161
3213
|
];
|
|
3162
3214
|
}).s("FmrsService", "ListTagsForResource", {}).n("DataSyncClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3215
|
+
static {
|
|
3216
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3217
|
+
}
|
|
3163
3218
|
};
|
|
3164
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3165
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3166
3219
|
|
|
3167
3220
|
// src/commands/ListTaskExecutionsCommand.ts
|
|
3168
3221
|
|
|
3169
3222
|
|
|
3170
3223
|
|
|
3171
|
-
var
|
|
3224
|
+
var ListTaskExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3172
3225
|
return [
|
|
3173
3226
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3174
3227
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3175
3228
|
];
|
|
3176
3229
|
}).s("FmrsService", "ListTaskExecutions", {}).n("DataSyncClient", "ListTaskExecutionsCommand").f(void 0, void 0).ser(se_ListTaskExecutionsCommand).de(de_ListTaskExecutionsCommand).build() {
|
|
3230
|
+
static {
|
|
3231
|
+
__name(this, "ListTaskExecutionsCommand");
|
|
3232
|
+
}
|
|
3177
3233
|
};
|
|
3178
|
-
__name(_ListTaskExecutionsCommand, "ListTaskExecutionsCommand");
|
|
3179
|
-
var ListTaskExecutionsCommand = _ListTaskExecutionsCommand;
|
|
3180
3234
|
|
|
3181
3235
|
// src/commands/ListTasksCommand.ts
|
|
3182
3236
|
|
|
3183
3237
|
|
|
3184
3238
|
|
|
3185
|
-
var
|
|
3239
|
+
var ListTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3186
3240
|
return [
|
|
3187
3241
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3188
3242
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3189
3243
|
];
|
|
3190
3244
|
}).s("FmrsService", "ListTasks", {}).n("DataSyncClient", "ListTasksCommand").f(void 0, void 0).ser(se_ListTasksCommand).de(de_ListTasksCommand).build() {
|
|
3245
|
+
static {
|
|
3246
|
+
__name(this, "ListTasksCommand");
|
|
3247
|
+
}
|
|
3191
3248
|
};
|
|
3192
|
-
__name(_ListTasksCommand, "ListTasksCommand");
|
|
3193
|
-
var ListTasksCommand = _ListTasksCommand;
|
|
3194
3249
|
|
|
3195
3250
|
// src/commands/RemoveStorageSystemCommand.ts
|
|
3196
3251
|
|
|
3197
3252
|
|
|
3198
3253
|
|
|
3199
|
-
var
|
|
3254
|
+
var RemoveStorageSystemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3200
3255
|
return [
|
|
3201
3256
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3202
3257
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3203
3258
|
];
|
|
3204
3259
|
}).s("FmrsService", "RemoveStorageSystem", {}).n("DataSyncClient", "RemoveStorageSystemCommand").f(void 0, void 0).ser(se_RemoveStorageSystemCommand).de(de_RemoveStorageSystemCommand).build() {
|
|
3260
|
+
static {
|
|
3261
|
+
__name(this, "RemoveStorageSystemCommand");
|
|
3262
|
+
}
|
|
3205
3263
|
};
|
|
3206
|
-
__name(_RemoveStorageSystemCommand, "RemoveStorageSystemCommand");
|
|
3207
|
-
var RemoveStorageSystemCommand = _RemoveStorageSystemCommand;
|
|
3208
3264
|
|
|
3209
3265
|
// src/commands/StartDiscoveryJobCommand.ts
|
|
3210
3266
|
|
|
3211
3267
|
|
|
3212
3268
|
|
|
3213
|
-
var
|
|
3269
|
+
var StartDiscoveryJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3214
3270
|
return [
|
|
3215
3271
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3216
3272
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3217
3273
|
];
|
|
3218
3274
|
}).s("FmrsService", "StartDiscoveryJob", {}).n("DataSyncClient", "StartDiscoveryJobCommand").f(void 0, void 0).ser(se_StartDiscoveryJobCommand).de(de_StartDiscoveryJobCommand).build() {
|
|
3275
|
+
static {
|
|
3276
|
+
__name(this, "StartDiscoveryJobCommand");
|
|
3277
|
+
}
|
|
3219
3278
|
};
|
|
3220
|
-
__name(_StartDiscoveryJobCommand, "StartDiscoveryJobCommand");
|
|
3221
|
-
var StartDiscoveryJobCommand = _StartDiscoveryJobCommand;
|
|
3222
3279
|
|
|
3223
3280
|
// src/commands/StartTaskExecutionCommand.ts
|
|
3224
3281
|
|
|
3225
3282
|
|
|
3226
3283
|
|
|
3227
|
-
var
|
|
3284
|
+
var StartTaskExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3228
3285
|
return [
|
|
3229
3286
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3230
3287
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3231
3288
|
];
|
|
3232
3289
|
}).s("FmrsService", "StartTaskExecution", {}).n("DataSyncClient", "StartTaskExecutionCommand").f(void 0, void 0).ser(se_StartTaskExecutionCommand).de(de_StartTaskExecutionCommand).build() {
|
|
3290
|
+
static {
|
|
3291
|
+
__name(this, "StartTaskExecutionCommand");
|
|
3292
|
+
}
|
|
3233
3293
|
};
|
|
3234
|
-
__name(_StartTaskExecutionCommand, "StartTaskExecutionCommand");
|
|
3235
|
-
var StartTaskExecutionCommand = _StartTaskExecutionCommand;
|
|
3236
3294
|
|
|
3237
3295
|
// src/commands/StopDiscoveryJobCommand.ts
|
|
3238
3296
|
|
|
3239
3297
|
|
|
3240
3298
|
|
|
3241
|
-
var
|
|
3299
|
+
var StopDiscoveryJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3242
3300
|
return [
|
|
3243
3301
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3244
3302
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3245
3303
|
];
|
|
3246
3304
|
}).s("FmrsService", "StopDiscoveryJob", {}).n("DataSyncClient", "StopDiscoveryJobCommand").f(void 0, void 0).ser(se_StopDiscoveryJobCommand).de(de_StopDiscoveryJobCommand).build() {
|
|
3305
|
+
static {
|
|
3306
|
+
__name(this, "StopDiscoveryJobCommand");
|
|
3307
|
+
}
|
|
3247
3308
|
};
|
|
3248
|
-
__name(_StopDiscoveryJobCommand, "StopDiscoveryJobCommand");
|
|
3249
|
-
var StopDiscoveryJobCommand = _StopDiscoveryJobCommand;
|
|
3250
3309
|
|
|
3251
3310
|
// src/commands/TagResourceCommand.ts
|
|
3252
3311
|
|
|
3253
3312
|
|
|
3254
3313
|
|
|
3255
|
-
var
|
|
3314
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3256
3315
|
return [
|
|
3257
3316
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3258
3317
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3259
3318
|
];
|
|
3260
3319
|
}).s("FmrsService", "TagResource", {}).n("DataSyncClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3320
|
+
static {
|
|
3321
|
+
__name(this, "TagResourceCommand");
|
|
3322
|
+
}
|
|
3261
3323
|
};
|
|
3262
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3263
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3264
3324
|
|
|
3265
3325
|
// src/commands/UntagResourceCommand.ts
|
|
3266
3326
|
|
|
3267
3327
|
|
|
3268
3328
|
|
|
3269
|
-
var
|
|
3329
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3270
3330
|
return [
|
|
3271
3331
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3272
3332
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3273
3333
|
];
|
|
3274
3334
|
}).s("FmrsService", "UntagResource", {}).n("DataSyncClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3335
|
+
static {
|
|
3336
|
+
__name(this, "UntagResourceCommand");
|
|
3337
|
+
}
|
|
3275
3338
|
};
|
|
3276
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3277
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3278
3339
|
|
|
3279
3340
|
// src/commands/UpdateAgentCommand.ts
|
|
3280
3341
|
|
|
3281
3342
|
|
|
3282
3343
|
|
|
3283
|
-
var
|
|
3344
|
+
var UpdateAgentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3284
3345
|
return [
|
|
3285
3346
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3286
3347
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3287
3348
|
];
|
|
3288
3349
|
}).s("FmrsService", "UpdateAgent", {}).n("DataSyncClient", "UpdateAgentCommand").f(void 0, void 0).ser(se_UpdateAgentCommand).de(de_UpdateAgentCommand).build() {
|
|
3350
|
+
static {
|
|
3351
|
+
__name(this, "UpdateAgentCommand");
|
|
3352
|
+
}
|
|
3289
3353
|
};
|
|
3290
|
-
__name(_UpdateAgentCommand, "UpdateAgentCommand");
|
|
3291
|
-
var UpdateAgentCommand = _UpdateAgentCommand;
|
|
3292
3354
|
|
|
3293
3355
|
// src/commands/UpdateDiscoveryJobCommand.ts
|
|
3294
3356
|
|
|
3295
3357
|
|
|
3296
3358
|
|
|
3297
|
-
var
|
|
3359
|
+
var UpdateDiscoveryJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3298
3360
|
return [
|
|
3299
3361
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3300
3362
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3301
3363
|
];
|
|
3302
3364
|
}).s("FmrsService", "UpdateDiscoveryJob", {}).n("DataSyncClient", "UpdateDiscoveryJobCommand").f(void 0, void 0).ser(se_UpdateDiscoveryJobCommand).de(de_UpdateDiscoveryJobCommand).build() {
|
|
3365
|
+
static {
|
|
3366
|
+
__name(this, "UpdateDiscoveryJobCommand");
|
|
3367
|
+
}
|
|
3303
3368
|
};
|
|
3304
|
-
__name(_UpdateDiscoveryJobCommand, "UpdateDiscoveryJobCommand");
|
|
3305
|
-
var UpdateDiscoveryJobCommand = _UpdateDiscoveryJobCommand;
|
|
3306
3369
|
|
|
3307
3370
|
// src/commands/UpdateLocationAzureBlobCommand.ts
|
|
3308
3371
|
|
|
3309
3372
|
|
|
3310
3373
|
|
|
3311
|
-
var
|
|
3374
|
+
var UpdateLocationAzureBlobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3312
3375
|
return [
|
|
3313
3376
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3314
3377
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3315
3378
|
];
|
|
3316
3379
|
}).s("FmrsService", "UpdateLocationAzureBlob", {}).n("DataSyncClient", "UpdateLocationAzureBlobCommand").f(UpdateLocationAzureBlobRequestFilterSensitiveLog, void 0).ser(se_UpdateLocationAzureBlobCommand).de(de_UpdateLocationAzureBlobCommand).build() {
|
|
3380
|
+
static {
|
|
3381
|
+
__name(this, "UpdateLocationAzureBlobCommand");
|
|
3382
|
+
}
|
|
3317
3383
|
};
|
|
3318
|
-
__name(_UpdateLocationAzureBlobCommand, "UpdateLocationAzureBlobCommand");
|
|
3319
|
-
var UpdateLocationAzureBlobCommand = _UpdateLocationAzureBlobCommand;
|
|
3320
3384
|
|
|
3321
3385
|
// src/commands/UpdateLocationEfsCommand.ts
|
|
3322
3386
|
|
|
3323
3387
|
|
|
3324
3388
|
|
|
3325
|
-
var
|
|
3389
|
+
var UpdateLocationEfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3326
3390
|
return [
|
|
3327
3391
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3328
3392
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3329
3393
|
];
|
|
3330
3394
|
}).s("FmrsService", "UpdateLocationEfs", {}).n("DataSyncClient", "UpdateLocationEfsCommand").f(void 0, void 0).ser(se_UpdateLocationEfsCommand).de(de_UpdateLocationEfsCommand).build() {
|
|
3395
|
+
static {
|
|
3396
|
+
__name(this, "UpdateLocationEfsCommand");
|
|
3397
|
+
}
|
|
3331
3398
|
};
|
|
3332
|
-
__name(_UpdateLocationEfsCommand, "UpdateLocationEfsCommand");
|
|
3333
|
-
var UpdateLocationEfsCommand = _UpdateLocationEfsCommand;
|
|
3334
3399
|
|
|
3335
3400
|
// src/commands/UpdateLocationFsxLustreCommand.ts
|
|
3336
3401
|
|
|
3337
3402
|
|
|
3338
3403
|
|
|
3339
|
-
var
|
|
3404
|
+
var UpdateLocationFsxLustreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3340
3405
|
return [
|
|
3341
3406
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3342
3407
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3343
3408
|
];
|
|
3344
3409
|
}).s("FmrsService", "UpdateLocationFsxLustre", {}).n("DataSyncClient", "UpdateLocationFsxLustreCommand").f(void 0, void 0).ser(se_UpdateLocationFsxLustreCommand).de(de_UpdateLocationFsxLustreCommand).build() {
|
|
3410
|
+
static {
|
|
3411
|
+
__name(this, "UpdateLocationFsxLustreCommand");
|
|
3412
|
+
}
|
|
3345
3413
|
};
|
|
3346
|
-
__name(_UpdateLocationFsxLustreCommand, "UpdateLocationFsxLustreCommand");
|
|
3347
|
-
var UpdateLocationFsxLustreCommand = _UpdateLocationFsxLustreCommand;
|
|
3348
3414
|
|
|
3349
3415
|
// src/commands/UpdateLocationFsxOntapCommand.ts
|
|
3350
3416
|
|
|
3351
3417
|
|
|
3352
3418
|
|
|
3353
|
-
var
|
|
3419
|
+
var UpdateLocationFsxOntapCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3354
3420
|
return [
|
|
3355
3421
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3356
3422
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3357
3423
|
];
|
|
3358
3424
|
}).s("FmrsService", "UpdateLocationFsxOntap", {}).n("DataSyncClient", "UpdateLocationFsxOntapCommand").f(UpdateLocationFsxOntapRequestFilterSensitiveLog, void 0).ser(se_UpdateLocationFsxOntapCommand).de(de_UpdateLocationFsxOntapCommand).build() {
|
|
3425
|
+
static {
|
|
3426
|
+
__name(this, "UpdateLocationFsxOntapCommand");
|
|
3427
|
+
}
|
|
3359
3428
|
};
|
|
3360
|
-
__name(_UpdateLocationFsxOntapCommand, "UpdateLocationFsxOntapCommand");
|
|
3361
|
-
var UpdateLocationFsxOntapCommand = _UpdateLocationFsxOntapCommand;
|
|
3362
3429
|
|
|
3363
3430
|
// src/commands/UpdateLocationFsxOpenZfsCommand.ts
|
|
3364
3431
|
|
|
3365
3432
|
|
|
3366
3433
|
|
|
3367
|
-
var
|
|
3434
|
+
var UpdateLocationFsxOpenZfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3368
3435
|
return [
|
|
3369
3436
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3370
3437
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3371
3438
|
];
|
|
3372
3439
|
}).s("FmrsService", "UpdateLocationFsxOpenZfs", {}).n("DataSyncClient", "UpdateLocationFsxOpenZfsCommand").f(UpdateLocationFsxOpenZfsRequestFilterSensitiveLog, void 0).ser(se_UpdateLocationFsxOpenZfsCommand).de(de_UpdateLocationFsxOpenZfsCommand).build() {
|
|
3440
|
+
static {
|
|
3441
|
+
__name(this, "UpdateLocationFsxOpenZfsCommand");
|
|
3442
|
+
}
|
|
3373
3443
|
};
|
|
3374
|
-
__name(_UpdateLocationFsxOpenZfsCommand, "UpdateLocationFsxOpenZfsCommand");
|
|
3375
|
-
var UpdateLocationFsxOpenZfsCommand = _UpdateLocationFsxOpenZfsCommand;
|
|
3376
3444
|
|
|
3377
3445
|
// src/commands/UpdateLocationFsxWindowsCommand.ts
|
|
3378
3446
|
|
|
3379
3447
|
|
|
3380
3448
|
|
|
3381
|
-
var
|
|
3449
|
+
var UpdateLocationFsxWindowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3382
3450
|
return [
|
|
3383
3451
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3384
3452
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3385
3453
|
];
|
|
3386
3454
|
}).s("FmrsService", "UpdateLocationFsxWindows", {}).n("DataSyncClient", "UpdateLocationFsxWindowsCommand").f(UpdateLocationFsxWindowsRequestFilterSensitiveLog, void 0).ser(se_UpdateLocationFsxWindowsCommand).de(de_UpdateLocationFsxWindowsCommand).build() {
|
|
3455
|
+
static {
|
|
3456
|
+
__name(this, "UpdateLocationFsxWindowsCommand");
|
|
3457
|
+
}
|
|
3387
3458
|
};
|
|
3388
|
-
__name(_UpdateLocationFsxWindowsCommand, "UpdateLocationFsxWindowsCommand");
|
|
3389
|
-
var UpdateLocationFsxWindowsCommand = _UpdateLocationFsxWindowsCommand;
|
|
3390
3459
|
|
|
3391
3460
|
// src/commands/UpdateLocationHdfsCommand.ts
|
|
3392
3461
|
|
|
3393
3462
|
|
|
3394
3463
|
|
|
3395
|
-
var
|
|
3464
|
+
var UpdateLocationHdfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3396
3465
|
return [
|
|
3397
3466
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3398
3467
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3399
3468
|
];
|
|
3400
3469
|
}).s("FmrsService", "UpdateLocationHdfs", {}).n("DataSyncClient", "UpdateLocationHdfsCommand").f(void 0, void 0).ser(se_UpdateLocationHdfsCommand).de(de_UpdateLocationHdfsCommand).build() {
|
|
3470
|
+
static {
|
|
3471
|
+
__name(this, "UpdateLocationHdfsCommand");
|
|
3472
|
+
}
|
|
3401
3473
|
};
|
|
3402
|
-
__name(_UpdateLocationHdfsCommand, "UpdateLocationHdfsCommand");
|
|
3403
|
-
var UpdateLocationHdfsCommand = _UpdateLocationHdfsCommand;
|
|
3404
3474
|
|
|
3405
3475
|
// src/commands/UpdateLocationNfsCommand.ts
|
|
3406
3476
|
|
|
3407
3477
|
|
|
3408
3478
|
|
|
3409
|
-
var
|
|
3479
|
+
var UpdateLocationNfsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3410
3480
|
return [
|
|
3411
3481
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3412
3482
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3413
3483
|
];
|
|
3414
3484
|
}).s("FmrsService", "UpdateLocationNfs", {}).n("DataSyncClient", "UpdateLocationNfsCommand").f(void 0, void 0).ser(se_UpdateLocationNfsCommand).de(de_UpdateLocationNfsCommand).build() {
|
|
3485
|
+
static {
|
|
3486
|
+
__name(this, "UpdateLocationNfsCommand");
|
|
3487
|
+
}
|
|
3415
3488
|
};
|
|
3416
|
-
__name(_UpdateLocationNfsCommand, "UpdateLocationNfsCommand");
|
|
3417
|
-
var UpdateLocationNfsCommand = _UpdateLocationNfsCommand;
|
|
3418
3489
|
|
|
3419
3490
|
// src/commands/UpdateLocationObjectStorageCommand.ts
|
|
3420
3491
|
|
|
3421
3492
|
|
|
3422
3493
|
|
|
3423
|
-
var
|
|
3494
|
+
var UpdateLocationObjectStorageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3424
3495
|
return [
|
|
3425
3496
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3426
3497
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3427
3498
|
];
|
|
3428
3499
|
}).s("FmrsService", "UpdateLocationObjectStorage", {}).n("DataSyncClient", "UpdateLocationObjectStorageCommand").f(UpdateLocationObjectStorageRequestFilterSensitiveLog, void 0).ser(se_UpdateLocationObjectStorageCommand).de(de_UpdateLocationObjectStorageCommand).build() {
|
|
3500
|
+
static {
|
|
3501
|
+
__name(this, "UpdateLocationObjectStorageCommand");
|
|
3502
|
+
}
|
|
3429
3503
|
};
|
|
3430
|
-
__name(_UpdateLocationObjectStorageCommand, "UpdateLocationObjectStorageCommand");
|
|
3431
|
-
var UpdateLocationObjectStorageCommand = _UpdateLocationObjectStorageCommand;
|
|
3432
3504
|
|
|
3433
3505
|
// src/commands/UpdateLocationS3Command.ts
|
|
3434
3506
|
|
|
3435
3507
|
|
|
3436
3508
|
|
|
3437
|
-
var
|
|
3509
|
+
var UpdateLocationS3Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3438
3510
|
return [
|
|
3439
3511
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3440
3512
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3441
3513
|
];
|
|
3442
3514
|
}).s("FmrsService", "UpdateLocationS3", {}).n("DataSyncClient", "UpdateLocationS3Command").f(void 0, void 0).ser(se_UpdateLocationS3Command).de(de_UpdateLocationS3Command).build() {
|
|
3515
|
+
static {
|
|
3516
|
+
__name(this, "UpdateLocationS3Command");
|
|
3517
|
+
}
|
|
3443
3518
|
};
|
|
3444
|
-
__name(_UpdateLocationS3Command, "UpdateLocationS3Command");
|
|
3445
|
-
var UpdateLocationS3Command = _UpdateLocationS3Command;
|
|
3446
3519
|
|
|
3447
3520
|
// src/commands/UpdateLocationSmbCommand.ts
|
|
3448
3521
|
|
|
3449
3522
|
|
|
3450
3523
|
|
|
3451
|
-
var
|
|
3524
|
+
var UpdateLocationSmbCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3452
3525
|
return [
|
|
3453
3526
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3454
3527
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3455
3528
|
];
|
|
3456
3529
|
}).s("FmrsService", "UpdateLocationSmb", {}).n("DataSyncClient", "UpdateLocationSmbCommand").f(UpdateLocationSmbRequestFilterSensitiveLog, void 0).ser(se_UpdateLocationSmbCommand).de(de_UpdateLocationSmbCommand).build() {
|
|
3530
|
+
static {
|
|
3531
|
+
__name(this, "UpdateLocationSmbCommand");
|
|
3532
|
+
}
|
|
3457
3533
|
};
|
|
3458
|
-
__name(_UpdateLocationSmbCommand, "UpdateLocationSmbCommand");
|
|
3459
|
-
var UpdateLocationSmbCommand = _UpdateLocationSmbCommand;
|
|
3460
3534
|
|
|
3461
3535
|
// src/commands/UpdateStorageSystemCommand.ts
|
|
3462
3536
|
|
|
3463
3537
|
|
|
3464
3538
|
|
|
3465
|
-
var
|
|
3539
|
+
var UpdateStorageSystemCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3466
3540
|
return [
|
|
3467
3541
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3468
3542
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3469
3543
|
];
|
|
3470
3544
|
}).s("FmrsService", "UpdateStorageSystem", {}).n("DataSyncClient", "UpdateStorageSystemCommand").f(UpdateStorageSystemRequestFilterSensitiveLog, void 0).ser(se_UpdateStorageSystemCommand).de(de_UpdateStorageSystemCommand).build() {
|
|
3545
|
+
static {
|
|
3546
|
+
__name(this, "UpdateStorageSystemCommand");
|
|
3547
|
+
}
|
|
3471
3548
|
};
|
|
3472
|
-
__name(_UpdateStorageSystemCommand, "UpdateStorageSystemCommand");
|
|
3473
|
-
var UpdateStorageSystemCommand = _UpdateStorageSystemCommand;
|
|
3474
3549
|
|
|
3475
3550
|
// src/commands/UpdateTaskCommand.ts
|
|
3476
3551
|
|
|
3477
3552
|
|
|
3478
3553
|
|
|
3479
|
-
var
|
|
3554
|
+
var UpdateTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3480
3555
|
return [
|
|
3481
3556
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3482
3557
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3483
3558
|
];
|
|
3484
3559
|
}).s("FmrsService", "UpdateTask", {}).n("DataSyncClient", "UpdateTaskCommand").f(void 0, void 0).ser(se_UpdateTaskCommand).de(de_UpdateTaskCommand).build() {
|
|
3560
|
+
static {
|
|
3561
|
+
__name(this, "UpdateTaskCommand");
|
|
3562
|
+
}
|
|
3485
3563
|
};
|
|
3486
|
-
__name(_UpdateTaskCommand, "UpdateTaskCommand");
|
|
3487
|
-
var UpdateTaskCommand = _UpdateTaskCommand;
|
|
3488
3564
|
|
|
3489
3565
|
// src/commands/UpdateTaskExecutionCommand.ts
|
|
3490
3566
|
|
|
3491
3567
|
|
|
3492
3568
|
|
|
3493
|
-
var
|
|
3569
|
+
var UpdateTaskExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3494
3570
|
return [
|
|
3495
3571
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3496
3572
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3497
3573
|
];
|
|
3498
3574
|
}).s("FmrsService", "UpdateTaskExecution", {}).n("DataSyncClient", "UpdateTaskExecutionCommand").f(void 0, void 0).ser(se_UpdateTaskExecutionCommand).de(de_UpdateTaskExecutionCommand).build() {
|
|
3575
|
+
static {
|
|
3576
|
+
__name(this, "UpdateTaskExecutionCommand");
|
|
3577
|
+
}
|
|
3499
3578
|
};
|
|
3500
|
-
__name(_UpdateTaskExecutionCommand, "UpdateTaskExecutionCommand");
|
|
3501
|
-
var UpdateTaskExecutionCommand = _UpdateTaskExecutionCommand;
|
|
3502
3579
|
|
|
3503
3580
|
// src/DataSync.ts
|
|
3504
3581
|
var commands = {
|
|
@@ -3569,10 +3646,11 @@ var commands = {
|
|
|
3569
3646
|
UpdateTaskCommand,
|
|
3570
3647
|
UpdateTaskExecutionCommand
|
|
3571
3648
|
};
|
|
3572
|
-
var
|
|
3649
|
+
var DataSync = class extends DataSyncClient {
|
|
3650
|
+
static {
|
|
3651
|
+
__name(this, "DataSync");
|
|
3652
|
+
}
|
|
3573
3653
|
};
|
|
3574
|
-
__name(_DataSync, "DataSync");
|
|
3575
|
-
var DataSync = _DataSync;
|
|
3576
3654
|
(0, import_smithy_client.createAggregatedClient)(commands, DataSync);
|
|
3577
3655
|
|
|
3578
3656
|
// src/pagination/DescribeStorageSystemResourceMetricsPaginator.ts
|