@aws-sdk/client-forecast 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 +311 -229
- package/dist-es/ForecastClient.js +1 -0
- package/dist-es/models/models_0.js +18 -12
- 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
|
@@ -242,7 +242,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
242
242
|
}, "resolveRuntimeExtensions");
|
|
243
243
|
|
|
244
244
|
// src/ForecastClient.ts
|
|
245
|
-
var
|
|
245
|
+
var ForecastClient = class extends import_smithy_client.Client {
|
|
246
|
+
static {
|
|
247
|
+
__name(this, "ForecastClient");
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* The resolved configuration of ForecastClient class. This is resolved and normalized from the {@link ForecastClientConfig | constructor configuration interface}.
|
|
251
|
+
*/
|
|
252
|
+
config;
|
|
246
253
|
constructor(...[configuration]) {
|
|
247
254
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
248
255
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -252,7 +259,7 @@ var _ForecastClient = class _ForecastClient extends import_smithy_client.Client
|
|
|
252
259
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
253
260
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
254
261
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
255
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
262
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
256
263
|
super(_config_8);
|
|
257
264
|
this.config = _config_8;
|
|
258
265
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -280,8 +287,6 @@ var _ForecastClient = class _ForecastClient extends import_smithy_client.Client
|
|
|
280
287
|
super.destroy();
|
|
281
288
|
}
|
|
282
289
|
};
|
|
283
|
-
__name(_ForecastClient, "ForecastClient");
|
|
284
|
-
var ForecastClient = _ForecastClient;
|
|
285
290
|
|
|
286
291
|
// src/Forecast.ts
|
|
287
292
|
|
|
@@ -296,7 +301,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
296
301
|
|
|
297
302
|
// src/models/ForecastServiceException.ts
|
|
298
303
|
|
|
299
|
-
var
|
|
304
|
+
var ForecastServiceException = class _ForecastServiceException extends import_smithy_client.ServiceException {
|
|
305
|
+
static {
|
|
306
|
+
__name(this, "ForecastServiceException");
|
|
307
|
+
}
|
|
300
308
|
/**
|
|
301
309
|
* @internal
|
|
302
310
|
*/
|
|
@@ -305,8 +313,6 @@ var _ForecastServiceException = class _ForecastServiceException extends import_s
|
|
|
305
313
|
Object.setPrototypeOf(this, _ForecastServiceException.prototype);
|
|
306
314
|
}
|
|
307
315
|
};
|
|
308
|
-
__name(_ForecastServiceException, "ForecastServiceException");
|
|
309
|
-
var ForecastServiceException = _ForecastServiceException;
|
|
310
316
|
|
|
311
317
|
// src/models/models_0.ts
|
|
312
318
|
var Operation = {
|
|
@@ -345,7 +351,13 @@ var Month = {
|
|
|
345
351
|
OCTOBER: "OCTOBER",
|
|
346
352
|
SEPTEMBER: "SEPTEMBER"
|
|
347
353
|
};
|
|
348
|
-
var
|
|
354
|
+
var InvalidInputException = class _InvalidInputException extends ForecastServiceException {
|
|
355
|
+
static {
|
|
356
|
+
__name(this, "InvalidInputException");
|
|
357
|
+
}
|
|
358
|
+
name = "InvalidInputException";
|
|
359
|
+
$fault = "client";
|
|
360
|
+
Message;
|
|
349
361
|
/**
|
|
350
362
|
* @internal
|
|
351
363
|
*/
|
|
@@ -355,15 +367,17 @@ var _InvalidInputException = class _InvalidInputException extends ForecastServic
|
|
|
355
367
|
$fault: "client",
|
|
356
368
|
...opts
|
|
357
369
|
});
|
|
358
|
-
this.name = "InvalidInputException";
|
|
359
|
-
this.$fault = "client";
|
|
360
370
|
Object.setPrototypeOf(this, _InvalidInputException.prototype);
|
|
361
371
|
this.Message = opts.Message;
|
|
362
372
|
}
|
|
363
373
|
};
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
374
|
+
var LimitExceededException = class _LimitExceededException extends ForecastServiceException {
|
|
375
|
+
static {
|
|
376
|
+
__name(this, "LimitExceededException");
|
|
377
|
+
}
|
|
378
|
+
name = "LimitExceededException";
|
|
379
|
+
$fault = "client";
|
|
380
|
+
Message;
|
|
367
381
|
/**
|
|
368
382
|
* @internal
|
|
369
383
|
*/
|
|
@@ -373,15 +387,17 @@ var _LimitExceededException = class _LimitExceededException extends ForecastServ
|
|
|
373
387
|
$fault: "client",
|
|
374
388
|
...opts
|
|
375
389
|
});
|
|
376
|
-
this.name = "LimitExceededException";
|
|
377
|
-
this.$fault = "client";
|
|
378
390
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
379
391
|
this.Message = opts.Message;
|
|
380
392
|
}
|
|
381
393
|
};
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
394
|
+
var ResourceAlreadyExistsException = class _ResourceAlreadyExistsException extends ForecastServiceException {
|
|
395
|
+
static {
|
|
396
|
+
__name(this, "ResourceAlreadyExistsException");
|
|
397
|
+
}
|
|
398
|
+
name = "ResourceAlreadyExistsException";
|
|
399
|
+
$fault = "client";
|
|
400
|
+
Message;
|
|
385
401
|
/**
|
|
386
402
|
* @internal
|
|
387
403
|
*/
|
|
@@ -391,15 +407,17 @@ var _ResourceAlreadyExistsException = class _ResourceAlreadyExistsException exte
|
|
|
391
407
|
$fault: "client",
|
|
392
408
|
...opts
|
|
393
409
|
});
|
|
394
|
-
this.name = "ResourceAlreadyExistsException";
|
|
395
|
-
this.$fault = "client";
|
|
396
410
|
Object.setPrototypeOf(this, _ResourceAlreadyExistsException.prototype);
|
|
397
411
|
this.Message = opts.Message;
|
|
398
412
|
}
|
|
399
413
|
};
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
414
|
+
var ResourceInUseException = class _ResourceInUseException extends ForecastServiceException {
|
|
415
|
+
static {
|
|
416
|
+
__name(this, "ResourceInUseException");
|
|
417
|
+
}
|
|
418
|
+
name = "ResourceInUseException";
|
|
419
|
+
$fault = "client";
|
|
420
|
+
Message;
|
|
403
421
|
/**
|
|
404
422
|
* @internal
|
|
405
423
|
*/
|
|
@@ -409,15 +427,17 @@ var _ResourceInUseException = class _ResourceInUseException extends ForecastServ
|
|
|
409
427
|
$fault: "client",
|
|
410
428
|
...opts
|
|
411
429
|
});
|
|
412
|
-
this.name = "ResourceInUseException";
|
|
413
|
-
this.$fault = "client";
|
|
414
430
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
415
431
|
this.Message = opts.Message;
|
|
416
432
|
}
|
|
417
433
|
};
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
434
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends ForecastServiceException {
|
|
435
|
+
static {
|
|
436
|
+
__name(this, "ResourceNotFoundException");
|
|
437
|
+
}
|
|
438
|
+
name = "ResourceNotFoundException";
|
|
439
|
+
$fault = "client";
|
|
440
|
+
Message;
|
|
421
441
|
/**
|
|
422
442
|
* @internal
|
|
423
443
|
*/
|
|
@@ -427,14 +447,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Foreca
|
|
|
427
447
|
$fault: "client",
|
|
428
448
|
...opts
|
|
429
449
|
});
|
|
430
|
-
this.name = "ResourceNotFoundException";
|
|
431
|
-
this.$fault = "client";
|
|
432
450
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
433
451
|
this.Message = opts.Message;
|
|
434
452
|
}
|
|
435
453
|
};
|
|
436
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
437
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
438
454
|
var DatasetType = {
|
|
439
455
|
ITEM_METADATA: "ITEM_METADATA",
|
|
440
456
|
RELATED_TIME_SERIES: "RELATED_TIME_SERIES",
|
|
@@ -495,7 +511,13 @@ var EvaluationType = {
|
|
|
495
511
|
COMPUTED: "COMPUTED",
|
|
496
512
|
SUMMARY: "SUMMARY"
|
|
497
513
|
};
|
|
498
|
-
var
|
|
514
|
+
var InvalidNextTokenException = class _InvalidNextTokenException extends ForecastServiceException {
|
|
515
|
+
static {
|
|
516
|
+
__name(this, "InvalidNextTokenException");
|
|
517
|
+
}
|
|
518
|
+
name = "InvalidNextTokenException";
|
|
519
|
+
$fault = "client";
|
|
520
|
+
Message;
|
|
499
521
|
/**
|
|
500
522
|
* @internal
|
|
501
523
|
*/
|
|
@@ -505,14 +527,10 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends Foreca
|
|
|
505
527
|
$fault: "client",
|
|
506
528
|
...opts
|
|
507
529
|
});
|
|
508
|
-
this.name = "InvalidNextTokenException";
|
|
509
|
-
this.$fault = "client";
|
|
510
530
|
Object.setPrototypeOf(this, _InvalidNextTokenException.prototype);
|
|
511
531
|
this.Message = opts.Message;
|
|
512
532
|
}
|
|
513
533
|
};
|
|
514
|
-
__name(_InvalidNextTokenException, "InvalidNextTokenException");
|
|
515
|
-
var InvalidNextTokenException = _InvalidNextTokenException;
|
|
516
534
|
var FilterConditionString = {
|
|
517
535
|
IS: "IS",
|
|
518
536
|
IS_NOT: "IS_NOT"
|
|
@@ -2702,883 +2720,946 @@ function sharedHeaders(operation) {
|
|
|
2702
2720
|
__name(sharedHeaders, "sharedHeaders");
|
|
2703
2721
|
|
|
2704
2722
|
// src/commands/CreateAutoPredictorCommand.ts
|
|
2705
|
-
var
|
|
2723
|
+
var CreateAutoPredictorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2706
2724
|
return [
|
|
2707
2725
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2708
2726
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2709
2727
|
];
|
|
2710
2728
|
}).s("AmazonForecast", "CreateAutoPredictor", {}).n("ForecastClient", "CreateAutoPredictorCommand").f(CreateAutoPredictorRequestFilterSensitiveLog, void 0).ser(se_CreateAutoPredictorCommand).de(de_CreateAutoPredictorCommand).build() {
|
|
2729
|
+
static {
|
|
2730
|
+
__name(this, "CreateAutoPredictorCommand");
|
|
2731
|
+
}
|
|
2711
2732
|
};
|
|
2712
|
-
__name(_CreateAutoPredictorCommand, "CreateAutoPredictorCommand");
|
|
2713
|
-
var CreateAutoPredictorCommand = _CreateAutoPredictorCommand;
|
|
2714
2733
|
|
|
2715
2734
|
// src/commands/CreateDatasetCommand.ts
|
|
2716
2735
|
|
|
2717
2736
|
|
|
2718
2737
|
|
|
2719
|
-
var
|
|
2738
|
+
var CreateDatasetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2720
2739
|
return [
|
|
2721
2740
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2722
2741
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2723
2742
|
];
|
|
2724
2743
|
}).s("AmazonForecast", "CreateDataset", {}).n("ForecastClient", "CreateDatasetCommand").f(CreateDatasetRequestFilterSensitiveLog, void 0).ser(se_CreateDatasetCommand).de(de_CreateDatasetCommand).build() {
|
|
2744
|
+
static {
|
|
2745
|
+
__name(this, "CreateDatasetCommand");
|
|
2746
|
+
}
|
|
2725
2747
|
};
|
|
2726
|
-
__name(_CreateDatasetCommand, "CreateDatasetCommand");
|
|
2727
|
-
var CreateDatasetCommand = _CreateDatasetCommand;
|
|
2728
2748
|
|
|
2729
2749
|
// src/commands/CreateDatasetGroupCommand.ts
|
|
2730
2750
|
|
|
2731
2751
|
|
|
2732
2752
|
|
|
2733
|
-
var
|
|
2753
|
+
var CreateDatasetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2734
2754
|
return [
|
|
2735
2755
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2736
2756
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2737
2757
|
];
|
|
2738
2758
|
}).s("AmazonForecast", "CreateDatasetGroup", {}).n("ForecastClient", "CreateDatasetGroupCommand").f(CreateDatasetGroupRequestFilterSensitiveLog, void 0).ser(se_CreateDatasetGroupCommand).de(de_CreateDatasetGroupCommand).build() {
|
|
2759
|
+
static {
|
|
2760
|
+
__name(this, "CreateDatasetGroupCommand");
|
|
2761
|
+
}
|
|
2739
2762
|
};
|
|
2740
|
-
__name(_CreateDatasetGroupCommand, "CreateDatasetGroupCommand");
|
|
2741
|
-
var CreateDatasetGroupCommand = _CreateDatasetGroupCommand;
|
|
2742
2763
|
|
|
2743
2764
|
// src/commands/CreateDatasetImportJobCommand.ts
|
|
2744
2765
|
|
|
2745
2766
|
|
|
2746
2767
|
|
|
2747
|
-
var
|
|
2768
|
+
var CreateDatasetImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2748
2769
|
return [
|
|
2749
2770
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2750
2771
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2751
2772
|
];
|
|
2752
2773
|
}).s("AmazonForecast", "CreateDatasetImportJob", {}).n("ForecastClient", "CreateDatasetImportJobCommand").f(CreateDatasetImportJobRequestFilterSensitiveLog, void 0).ser(se_CreateDatasetImportJobCommand).de(de_CreateDatasetImportJobCommand).build() {
|
|
2774
|
+
static {
|
|
2775
|
+
__name(this, "CreateDatasetImportJobCommand");
|
|
2776
|
+
}
|
|
2753
2777
|
};
|
|
2754
|
-
__name(_CreateDatasetImportJobCommand, "CreateDatasetImportJobCommand");
|
|
2755
|
-
var CreateDatasetImportJobCommand = _CreateDatasetImportJobCommand;
|
|
2756
2778
|
|
|
2757
2779
|
// src/commands/CreateExplainabilityCommand.ts
|
|
2758
2780
|
|
|
2759
2781
|
|
|
2760
2782
|
|
|
2761
|
-
var
|
|
2783
|
+
var CreateExplainabilityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2762
2784
|
return [
|
|
2763
2785
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2764
2786
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2765
2787
|
];
|
|
2766
2788
|
}).s("AmazonForecast", "CreateExplainability", {}).n("ForecastClient", "CreateExplainabilityCommand").f(CreateExplainabilityRequestFilterSensitiveLog, void 0).ser(se_CreateExplainabilityCommand).de(de_CreateExplainabilityCommand).build() {
|
|
2789
|
+
static {
|
|
2790
|
+
__name(this, "CreateExplainabilityCommand");
|
|
2791
|
+
}
|
|
2767
2792
|
};
|
|
2768
|
-
__name(_CreateExplainabilityCommand, "CreateExplainabilityCommand");
|
|
2769
|
-
var CreateExplainabilityCommand = _CreateExplainabilityCommand;
|
|
2770
2793
|
|
|
2771
2794
|
// src/commands/CreateExplainabilityExportCommand.ts
|
|
2772
2795
|
|
|
2773
2796
|
|
|
2774
2797
|
|
|
2775
|
-
var
|
|
2798
|
+
var CreateExplainabilityExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2776
2799
|
return [
|
|
2777
2800
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2778
2801
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2779
2802
|
];
|
|
2780
2803
|
}).s("AmazonForecast", "CreateExplainabilityExport", {}).n("ForecastClient", "CreateExplainabilityExportCommand").f(CreateExplainabilityExportRequestFilterSensitiveLog, void 0).ser(se_CreateExplainabilityExportCommand).de(de_CreateExplainabilityExportCommand).build() {
|
|
2804
|
+
static {
|
|
2805
|
+
__name(this, "CreateExplainabilityExportCommand");
|
|
2806
|
+
}
|
|
2781
2807
|
};
|
|
2782
|
-
__name(_CreateExplainabilityExportCommand, "CreateExplainabilityExportCommand");
|
|
2783
|
-
var CreateExplainabilityExportCommand = _CreateExplainabilityExportCommand;
|
|
2784
2808
|
|
|
2785
2809
|
// src/commands/CreateForecastCommand.ts
|
|
2786
2810
|
|
|
2787
2811
|
|
|
2788
2812
|
|
|
2789
|
-
var
|
|
2813
|
+
var CreateForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2790
2814
|
return [
|
|
2791
2815
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2792
2816
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2793
2817
|
];
|
|
2794
2818
|
}).s("AmazonForecast", "CreateForecast", {}).n("ForecastClient", "CreateForecastCommand").f(CreateForecastRequestFilterSensitiveLog, void 0).ser(se_CreateForecastCommand).de(de_CreateForecastCommand).build() {
|
|
2819
|
+
static {
|
|
2820
|
+
__name(this, "CreateForecastCommand");
|
|
2821
|
+
}
|
|
2795
2822
|
};
|
|
2796
|
-
__name(_CreateForecastCommand, "CreateForecastCommand");
|
|
2797
|
-
var CreateForecastCommand = _CreateForecastCommand;
|
|
2798
2823
|
|
|
2799
2824
|
// src/commands/CreateForecastExportJobCommand.ts
|
|
2800
2825
|
|
|
2801
2826
|
|
|
2802
2827
|
|
|
2803
|
-
var
|
|
2828
|
+
var CreateForecastExportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2804
2829
|
return [
|
|
2805
2830
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2806
2831
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2807
2832
|
];
|
|
2808
2833
|
}).s("AmazonForecast", "CreateForecastExportJob", {}).n("ForecastClient", "CreateForecastExportJobCommand").f(CreateForecastExportJobRequestFilterSensitiveLog, void 0).ser(se_CreateForecastExportJobCommand).de(de_CreateForecastExportJobCommand).build() {
|
|
2834
|
+
static {
|
|
2835
|
+
__name(this, "CreateForecastExportJobCommand");
|
|
2836
|
+
}
|
|
2809
2837
|
};
|
|
2810
|
-
__name(_CreateForecastExportJobCommand, "CreateForecastExportJobCommand");
|
|
2811
|
-
var CreateForecastExportJobCommand = _CreateForecastExportJobCommand;
|
|
2812
2838
|
|
|
2813
2839
|
// src/commands/CreateMonitorCommand.ts
|
|
2814
2840
|
|
|
2815
2841
|
|
|
2816
2842
|
|
|
2817
|
-
var
|
|
2843
|
+
var CreateMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2818
2844
|
return [
|
|
2819
2845
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2820
2846
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2821
2847
|
];
|
|
2822
2848
|
}).s("AmazonForecast", "CreateMonitor", {}).n("ForecastClient", "CreateMonitorCommand").f(CreateMonitorRequestFilterSensitiveLog, void 0).ser(se_CreateMonitorCommand).de(de_CreateMonitorCommand).build() {
|
|
2849
|
+
static {
|
|
2850
|
+
__name(this, "CreateMonitorCommand");
|
|
2851
|
+
}
|
|
2823
2852
|
};
|
|
2824
|
-
__name(_CreateMonitorCommand, "CreateMonitorCommand");
|
|
2825
|
-
var CreateMonitorCommand = _CreateMonitorCommand;
|
|
2826
2853
|
|
|
2827
2854
|
// src/commands/CreatePredictorBacktestExportJobCommand.ts
|
|
2828
2855
|
|
|
2829
2856
|
|
|
2830
2857
|
|
|
2831
|
-
var
|
|
2858
|
+
var CreatePredictorBacktestExportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2832
2859
|
return [
|
|
2833
2860
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2834
2861
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2835
2862
|
];
|
|
2836
2863
|
}).s("AmazonForecast", "CreatePredictorBacktestExportJob", {}).n("ForecastClient", "CreatePredictorBacktestExportJobCommand").f(CreatePredictorBacktestExportJobRequestFilterSensitiveLog, void 0).ser(se_CreatePredictorBacktestExportJobCommand).de(de_CreatePredictorBacktestExportJobCommand).build() {
|
|
2864
|
+
static {
|
|
2865
|
+
__name(this, "CreatePredictorBacktestExportJobCommand");
|
|
2866
|
+
}
|
|
2837
2867
|
};
|
|
2838
|
-
__name(_CreatePredictorBacktestExportJobCommand, "CreatePredictorBacktestExportJobCommand");
|
|
2839
|
-
var CreatePredictorBacktestExportJobCommand = _CreatePredictorBacktestExportJobCommand;
|
|
2840
2868
|
|
|
2841
2869
|
// src/commands/CreatePredictorCommand.ts
|
|
2842
2870
|
|
|
2843
2871
|
|
|
2844
2872
|
|
|
2845
|
-
var
|
|
2873
|
+
var CreatePredictorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2846
2874
|
return [
|
|
2847
2875
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2848
2876
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2849
2877
|
];
|
|
2850
2878
|
}).s("AmazonForecast", "CreatePredictor", {}).n("ForecastClient", "CreatePredictorCommand").f(CreatePredictorRequestFilterSensitiveLog, void 0).ser(se_CreatePredictorCommand).de(de_CreatePredictorCommand).build() {
|
|
2879
|
+
static {
|
|
2880
|
+
__name(this, "CreatePredictorCommand");
|
|
2881
|
+
}
|
|
2851
2882
|
};
|
|
2852
|
-
__name(_CreatePredictorCommand, "CreatePredictorCommand");
|
|
2853
|
-
var CreatePredictorCommand = _CreatePredictorCommand;
|
|
2854
2883
|
|
|
2855
2884
|
// src/commands/CreateWhatIfAnalysisCommand.ts
|
|
2856
2885
|
|
|
2857
2886
|
|
|
2858
2887
|
|
|
2859
|
-
var
|
|
2888
|
+
var CreateWhatIfAnalysisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2860
2889
|
return [
|
|
2861
2890
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2862
2891
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2863
2892
|
];
|
|
2864
2893
|
}).s("AmazonForecast", "CreateWhatIfAnalysis", {}).n("ForecastClient", "CreateWhatIfAnalysisCommand").f(CreateWhatIfAnalysisRequestFilterSensitiveLog, void 0).ser(se_CreateWhatIfAnalysisCommand).de(de_CreateWhatIfAnalysisCommand).build() {
|
|
2894
|
+
static {
|
|
2895
|
+
__name(this, "CreateWhatIfAnalysisCommand");
|
|
2896
|
+
}
|
|
2865
2897
|
};
|
|
2866
|
-
__name(_CreateWhatIfAnalysisCommand, "CreateWhatIfAnalysisCommand");
|
|
2867
|
-
var CreateWhatIfAnalysisCommand = _CreateWhatIfAnalysisCommand;
|
|
2868
2898
|
|
|
2869
2899
|
// src/commands/CreateWhatIfForecastCommand.ts
|
|
2870
2900
|
|
|
2871
2901
|
|
|
2872
2902
|
|
|
2873
|
-
var
|
|
2903
|
+
var CreateWhatIfForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2874
2904
|
return [
|
|
2875
2905
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2876
2906
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2877
2907
|
];
|
|
2878
2908
|
}).s("AmazonForecast", "CreateWhatIfForecast", {}).n("ForecastClient", "CreateWhatIfForecastCommand").f(CreateWhatIfForecastRequestFilterSensitiveLog, void 0).ser(se_CreateWhatIfForecastCommand).de(de_CreateWhatIfForecastCommand).build() {
|
|
2909
|
+
static {
|
|
2910
|
+
__name(this, "CreateWhatIfForecastCommand");
|
|
2911
|
+
}
|
|
2879
2912
|
};
|
|
2880
|
-
__name(_CreateWhatIfForecastCommand, "CreateWhatIfForecastCommand");
|
|
2881
|
-
var CreateWhatIfForecastCommand = _CreateWhatIfForecastCommand;
|
|
2882
2913
|
|
|
2883
2914
|
// src/commands/CreateWhatIfForecastExportCommand.ts
|
|
2884
2915
|
|
|
2885
2916
|
|
|
2886
2917
|
|
|
2887
|
-
var
|
|
2918
|
+
var CreateWhatIfForecastExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2888
2919
|
return [
|
|
2889
2920
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2890
2921
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2891
2922
|
];
|
|
2892
2923
|
}).s("AmazonForecast", "CreateWhatIfForecastExport", {}).n("ForecastClient", "CreateWhatIfForecastExportCommand").f(CreateWhatIfForecastExportRequestFilterSensitiveLog, void 0).ser(se_CreateWhatIfForecastExportCommand).de(de_CreateWhatIfForecastExportCommand).build() {
|
|
2924
|
+
static {
|
|
2925
|
+
__name(this, "CreateWhatIfForecastExportCommand");
|
|
2926
|
+
}
|
|
2893
2927
|
};
|
|
2894
|
-
__name(_CreateWhatIfForecastExportCommand, "CreateWhatIfForecastExportCommand");
|
|
2895
|
-
var CreateWhatIfForecastExportCommand = _CreateWhatIfForecastExportCommand;
|
|
2896
2928
|
|
|
2897
2929
|
// src/commands/DeleteDatasetCommand.ts
|
|
2898
2930
|
|
|
2899
2931
|
|
|
2900
2932
|
|
|
2901
|
-
var
|
|
2933
|
+
var DeleteDatasetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2902
2934
|
return [
|
|
2903
2935
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2904
2936
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2905
2937
|
];
|
|
2906
2938
|
}).s("AmazonForecast", "DeleteDataset", {}).n("ForecastClient", "DeleteDatasetCommand").f(void 0, void 0).ser(se_DeleteDatasetCommand).de(de_DeleteDatasetCommand).build() {
|
|
2939
|
+
static {
|
|
2940
|
+
__name(this, "DeleteDatasetCommand");
|
|
2941
|
+
}
|
|
2907
2942
|
};
|
|
2908
|
-
__name(_DeleteDatasetCommand, "DeleteDatasetCommand");
|
|
2909
|
-
var DeleteDatasetCommand = _DeleteDatasetCommand;
|
|
2910
2943
|
|
|
2911
2944
|
// src/commands/DeleteDatasetGroupCommand.ts
|
|
2912
2945
|
|
|
2913
2946
|
|
|
2914
2947
|
|
|
2915
|
-
var
|
|
2948
|
+
var DeleteDatasetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2916
2949
|
return [
|
|
2917
2950
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2918
2951
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2919
2952
|
];
|
|
2920
2953
|
}).s("AmazonForecast", "DeleteDatasetGroup", {}).n("ForecastClient", "DeleteDatasetGroupCommand").f(void 0, void 0).ser(se_DeleteDatasetGroupCommand).de(de_DeleteDatasetGroupCommand).build() {
|
|
2954
|
+
static {
|
|
2955
|
+
__name(this, "DeleteDatasetGroupCommand");
|
|
2956
|
+
}
|
|
2921
2957
|
};
|
|
2922
|
-
__name(_DeleteDatasetGroupCommand, "DeleteDatasetGroupCommand");
|
|
2923
|
-
var DeleteDatasetGroupCommand = _DeleteDatasetGroupCommand;
|
|
2924
2958
|
|
|
2925
2959
|
// src/commands/DeleteDatasetImportJobCommand.ts
|
|
2926
2960
|
|
|
2927
2961
|
|
|
2928
2962
|
|
|
2929
|
-
var
|
|
2963
|
+
var DeleteDatasetImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2930
2964
|
return [
|
|
2931
2965
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2932
2966
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2933
2967
|
];
|
|
2934
2968
|
}).s("AmazonForecast", "DeleteDatasetImportJob", {}).n("ForecastClient", "DeleteDatasetImportJobCommand").f(void 0, void 0).ser(se_DeleteDatasetImportJobCommand).de(de_DeleteDatasetImportJobCommand).build() {
|
|
2969
|
+
static {
|
|
2970
|
+
__name(this, "DeleteDatasetImportJobCommand");
|
|
2971
|
+
}
|
|
2935
2972
|
};
|
|
2936
|
-
__name(_DeleteDatasetImportJobCommand, "DeleteDatasetImportJobCommand");
|
|
2937
|
-
var DeleteDatasetImportJobCommand = _DeleteDatasetImportJobCommand;
|
|
2938
2973
|
|
|
2939
2974
|
// src/commands/DeleteExplainabilityCommand.ts
|
|
2940
2975
|
|
|
2941
2976
|
|
|
2942
2977
|
|
|
2943
|
-
var
|
|
2978
|
+
var DeleteExplainabilityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2944
2979
|
return [
|
|
2945
2980
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2946
2981
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2947
2982
|
];
|
|
2948
2983
|
}).s("AmazonForecast", "DeleteExplainability", {}).n("ForecastClient", "DeleteExplainabilityCommand").f(void 0, void 0).ser(se_DeleteExplainabilityCommand).de(de_DeleteExplainabilityCommand).build() {
|
|
2984
|
+
static {
|
|
2985
|
+
__name(this, "DeleteExplainabilityCommand");
|
|
2986
|
+
}
|
|
2949
2987
|
};
|
|
2950
|
-
__name(_DeleteExplainabilityCommand, "DeleteExplainabilityCommand");
|
|
2951
|
-
var DeleteExplainabilityCommand = _DeleteExplainabilityCommand;
|
|
2952
2988
|
|
|
2953
2989
|
// src/commands/DeleteExplainabilityExportCommand.ts
|
|
2954
2990
|
|
|
2955
2991
|
|
|
2956
2992
|
|
|
2957
|
-
var
|
|
2993
|
+
var DeleteExplainabilityExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2958
2994
|
return [
|
|
2959
2995
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2960
2996
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2961
2997
|
];
|
|
2962
2998
|
}).s("AmazonForecast", "DeleteExplainabilityExport", {}).n("ForecastClient", "DeleteExplainabilityExportCommand").f(void 0, void 0).ser(se_DeleteExplainabilityExportCommand).de(de_DeleteExplainabilityExportCommand).build() {
|
|
2999
|
+
static {
|
|
3000
|
+
__name(this, "DeleteExplainabilityExportCommand");
|
|
3001
|
+
}
|
|
2963
3002
|
};
|
|
2964
|
-
__name(_DeleteExplainabilityExportCommand, "DeleteExplainabilityExportCommand");
|
|
2965
|
-
var DeleteExplainabilityExportCommand = _DeleteExplainabilityExportCommand;
|
|
2966
3003
|
|
|
2967
3004
|
// src/commands/DeleteForecastCommand.ts
|
|
2968
3005
|
|
|
2969
3006
|
|
|
2970
3007
|
|
|
2971
|
-
var
|
|
3008
|
+
var DeleteForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2972
3009
|
return [
|
|
2973
3010
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2974
3011
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2975
3012
|
];
|
|
2976
3013
|
}).s("AmazonForecast", "DeleteForecast", {}).n("ForecastClient", "DeleteForecastCommand").f(void 0, void 0).ser(se_DeleteForecastCommand).de(de_DeleteForecastCommand).build() {
|
|
3014
|
+
static {
|
|
3015
|
+
__name(this, "DeleteForecastCommand");
|
|
3016
|
+
}
|
|
2977
3017
|
};
|
|
2978
|
-
__name(_DeleteForecastCommand, "DeleteForecastCommand");
|
|
2979
|
-
var DeleteForecastCommand = _DeleteForecastCommand;
|
|
2980
3018
|
|
|
2981
3019
|
// src/commands/DeleteForecastExportJobCommand.ts
|
|
2982
3020
|
|
|
2983
3021
|
|
|
2984
3022
|
|
|
2985
|
-
var
|
|
3023
|
+
var DeleteForecastExportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2986
3024
|
return [
|
|
2987
3025
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2988
3026
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2989
3027
|
];
|
|
2990
3028
|
}).s("AmazonForecast", "DeleteForecastExportJob", {}).n("ForecastClient", "DeleteForecastExportJobCommand").f(void 0, void 0).ser(se_DeleteForecastExportJobCommand).de(de_DeleteForecastExportJobCommand).build() {
|
|
3029
|
+
static {
|
|
3030
|
+
__name(this, "DeleteForecastExportJobCommand");
|
|
3031
|
+
}
|
|
2991
3032
|
};
|
|
2992
|
-
__name(_DeleteForecastExportJobCommand, "DeleteForecastExportJobCommand");
|
|
2993
|
-
var DeleteForecastExportJobCommand = _DeleteForecastExportJobCommand;
|
|
2994
3033
|
|
|
2995
3034
|
// src/commands/DeleteMonitorCommand.ts
|
|
2996
3035
|
|
|
2997
3036
|
|
|
2998
3037
|
|
|
2999
|
-
var
|
|
3038
|
+
var DeleteMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3000
3039
|
return [
|
|
3001
3040
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3002
3041
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3003
3042
|
];
|
|
3004
3043
|
}).s("AmazonForecast", "DeleteMonitor", {}).n("ForecastClient", "DeleteMonitorCommand").f(void 0, void 0).ser(se_DeleteMonitorCommand).de(de_DeleteMonitorCommand).build() {
|
|
3044
|
+
static {
|
|
3045
|
+
__name(this, "DeleteMonitorCommand");
|
|
3046
|
+
}
|
|
3005
3047
|
};
|
|
3006
|
-
__name(_DeleteMonitorCommand, "DeleteMonitorCommand");
|
|
3007
|
-
var DeleteMonitorCommand = _DeleteMonitorCommand;
|
|
3008
3048
|
|
|
3009
3049
|
// src/commands/DeletePredictorBacktestExportJobCommand.ts
|
|
3010
3050
|
|
|
3011
3051
|
|
|
3012
3052
|
|
|
3013
|
-
var
|
|
3053
|
+
var DeletePredictorBacktestExportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3014
3054
|
return [
|
|
3015
3055
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3016
3056
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3017
3057
|
];
|
|
3018
3058
|
}).s("AmazonForecast", "DeletePredictorBacktestExportJob", {}).n("ForecastClient", "DeletePredictorBacktestExportJobCommand").f(void 0, void 0).ser(se_DeletePredictorBacktestExportJobCommand).de(de_DeletePredictorBacktestExportJobCommand).build() {
|
|
3059
|
+
static {
|
|
3060
|
+
__name(this, "DeletePredictorBacktestExportJobCommand");
|
|
3061
|
+
}
|
|
3019
3062
|
};
|
|
3020
|
-
__name(_DeletePredictorBacktestExportJobCommand, "DeletePredictorBacktestExportJobCommand");
|
|
3021
|
-
var DeletePredictorBacktestExportJobCommand = _DeletePredictorBacktestExportJobCommand;
|
|
3022
3063
|
|
|
3023
3064
|
// src/commands/DeletePredictorCommand.ts
|
|
3024
3065
|
|
|
3025
3066
|
|
|
3026
3067
|
|
|
3027
|
-
var
|
|
3068
|
+
var DeletePredictorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3028
3069
|
return [
|
|
3029
3070
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3030
3071
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3031
3072
|
];
|
|
3032
3073
|
}).s("AmazonForecast", "DeletePredictor", {}).n("ForecastClient", "DeletePredictorCommand").f(void 0, void 0).ser(se_DeletePredictorCommand).de(de_DeletePredictorCommand).build() {
|
|
3074
|
+
static {
|
|
3075
|
+
__name(this, "DeletePredictorCommand");
|
|
3076
|
+
}
|
|
3033
3077
|
};
|
|
3034
|
-
__name(_DeletePredictorCommand, "DeletePredictorCommand");
|
|
3035
|
-
var DeletePredictorCommand = _DeletePredictorCommand;
|
|
3036
3078
|
|
|
3037
3079
|
// src/commands/DeleteResourceTreeCommand.ts
|
|
3038
3080
|
|
|
3039
3081
|
|
|
3040
3082
|
|
|
3041
|
-
var
|
|
3083
|
+
var DeleteResourceTreeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3042
3084
|
return [
|
|
3043
3085
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3044
3086
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3045
3087
|
];
|
|
3046
3088
|
}).s("AmazonForecast", "DeleteResourceTree", {}).n("ForecastClient", "DeleteResourceTreeCommand").f(void 0, void 0).ser(se_DeleteResourceTreeCommand).de(de_DeleteResourceTreeCommand).build() {
|
|
3089
|
+
static {
|
|
3090
|
+
__name(this, "DeleteResourceTreeCommand");
|
|
3091
|
+
}
|
|
3047
3092
|
};
|
|
3048
|
-
__name(_DeleteResourceTreeCommand, "DeleteResourceTreeCommand");
|
|
3049
|
-
var DeleteResourceTreeCommand = _DeleteResourceTreeCommand;
|
|
3050
3093
|
|
|
3051
3094
|
// src/commands/DeleteWhatIfAnalysisCommand.ts
|
|
3052
3095
|
|
|
3053
3096
|
|
|
3054
3097
|
|
|
3055
|
-
var
|
|
3098
|
+
var DeleteWhatIfAnalysisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3056
3099
|
return [
|
|
3057
3100
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3058
3101
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3059
3102
|
];
|
|
3060
3103
|
}).s("AmazonForecast", "DeleteWhatIfAnalysis", {}).n("ForecastClient", "DeleteWhatIfAnalysisCommand").f(void 0, void 0).ser(se_DeleteWhatIfAnalysisCommand).de(de_DeleteWhatIfAnalysisCommand).build() {
|
|
3104
|
+
static {
|
|
3105
|
+
__name(this, "DeleteWhatIfAnalysisCommand");
|
|
3106
|
+
}
|
|
3061
3107
|
};
|
|
3062
|
-
__name(_DeleteWhatIfAnalysisCommand, "DeleteWhatIfAnalysisCommand");
|
|
3063
|
-
var DeleteWhatIfAnalysisCommand = _DeleteWhatIfAnalysisCommand;
|
|
3064
3108
|
|
|
3065
3109
|
// src/commands/DeleteWhatIfForecastCommand.ts
|
|
3066
3110
|
|
|
3067
3111
|
|
|
3068
3112
|
|
|
3069
|
-
var
|
|
3113
|
+
var DeleteWhatIfForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3070
3114
|
return [
|
|
3071
3115
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3072
3116
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3073
3117
|
];
|
|
3074
3118
|
}).s("AmazonForecast", "DeleteWhatIfForecast", {}).n("ForecastClient", "DeleteWhatIfForecastCommand").f(void 0, void 0).ser(se_DeleteWhatIfForecastCommand).de(de_DeleteWhatIfForecastCommand).build() {
|
|
3119
|
+
static {
|
|
3120
|
+
__name(this, "DeleteWhatIfForecastCommand");
|
|
3121
|
+
}
|
|
3075
3122
|
};
|
|
3076
|
-
__name(_DeleteWhatIfForecastCommand, "DeleteWhatIfForecastCommand");
|
|
3077
|
-
var DeleteWhatIfForecastCommand = _DeleteWhatIfForecastCommand;
|
|
3078
3123
|
|
|
3079
3124
|
// src/commands/DeleteWhatIfForecastExportCommand.ts
|
|
3080
3125
|
|
|
3081
3126
|
|
|
3082
3127
|
|
|
3083
|
-
var
|
|
3128
|
+
var DeleteWhatIfForecastExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3084
3129
|
return [
|
|
3085
3130
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3086
3131
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3087
3132
|
];
|
|
3088
3133
|
}).s("AmazonForecast", "DeleteWhatIfForecastExport", {}).n("ForecastClient", "DeleteWhatIfForecastExportCommand").f(void 0, void 0).ser(se_DeleteWhatIfForecastExportCommand).de(de_DeleteWhatIfForecastExportCommand).build() {
|
|
3134
|
+
static {
|
|
3135
|
+
__name(this, "DeleteWhatIfForecastExportCommand");
|
|
3136
|
+
}
|
|
3089
3137
|
};
|
|
3090
|
-
__name(_DeleteWhatIfForecastExportCommand, "DeleteWhatIfForecastExportCommand");
|
|
3091
|
-
var DeleteWhatIfForecastExportCommand = _DeleteWhatIfForecastExportCommand;
|
|
3092
3138
|
|
|
3093
3139
|
// src/commands/DescribeAutoPredictorCommand.ts
|
|
3094
3140
|
|
|
3095
3141
|
|
|
3096
3142
|
|
|
3097
|
-
var
|
|
3143
|
+
var DescribeAutoPredictorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3098
3144
|
return [
|
|
3099
3145
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3100
3146
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3101
3147
|
];
|
|
3102
3148
|
}).s("AmazonForecast", "DescribeAutoPredictor", {}).n("ForecastClient", "DescribeAutoPredictorCommand").f(void 0, void 0).ser(se_DescribeAutoPredictorCommand).de(de_DescribeAutoPredictorCommand).build() {
|
|
3149
|
+
static {
|
|
3150
|
+
__name(this, "DescribeAutoPredictorCommand");
|
|
3151
|
+
}
|
|
3103
3152
|
};
|
|
3104
|
-
__name(_DescribeAutoPredictorCommand, "DescribeAutoPredictorCommand");
|
|
3105
|
-
var DescribeAutoPredictorCommand = _DescribeAutoPredictorCommand;
|
|
3106
3153
|
|
|
3107
3154
|
// src/commands/DescribeDatasetCommand.ts
|
|
3108
3155
|
|
|
3109
3156
|
|
|
3110
3157
|
|
|
3111
|
-
var
|
|
3158
|
+
var DescribeDatasetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3112
3159
|
return [
|
|
3113
3160
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3114
3161
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3115
3162
|
];
|
|
3116
3163
|
}).s("AmazonForecast", "DescribeDataset", {}).n("ForecastClient", "DescribeDatasetCommand").f(void 0, void 0).ser(se_DescribeDatasetCommand).de(de_DescribeDatasetCommand).build() {
|
|
3164
|
+
static {
|
|
3165
|
+
__name(this, "DescribeDatasetCommand");
|
|
3166
|
+
}
|
|
3117
3167
|
};
|
|
3118
|
-
__name(_DescribeDatasetCommand, "DescribeDatasetCommand");
|
|
3119
|
-
var DescribeDatasetCommand = _DescribeDatasetCommand;
|
|
3120
3168
|
|
|
3121
3169
|
// src/commands/DescribeDatasetGroupCommand.ts
|
|
3122
3170
|
|
|
3123
3171
|
|
|
3124
3172
|
|
|
3125
|
-
var
|
|
3173
|
+
var DescribeDatasetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3126
3174
|
return [
|
|
3127
3175
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3128
3176
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3129
3177
|
];
|
|
3130
3178
|
}).s("AmazonForecast", "DescribeDatasetGroup", {}).n("ForecastClient", "DescribeDatasetGroupCommand").f(void 0, void 0).ser(se_DescribeDatasetGroupCommand).de(de_DescribeDatasetGroupCommand).build() {
|
|
3179
|
+
static {
|
|
3180
|
+
__name(this, "DescribeDatasetGroupCommand");
|
|
3181
|
+
}
|
|
3131
3182
|
};
|
|
3132
|
-
__name(_DescribeDatasetGroupCommand, "DescribeDatasetGroupCommand");
|
|
3133
|
-
var DescribeDatasetGroupCommand = _DescribeDatasetGroupCommand;
|
|
3134
3183
|
|
|
3135
3184
|
// src/commands/DescribeDatasetImportJobCommand.ts
|
|
3136
3185
|
|
|
3137
3186
|
|
|
3138
3187
|
|
|
3139
|
-
var
|
|
3188
|
+
var DescribeDatasetImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3140
3189
|
return [
|
|
3141
3190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3142
3191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3143
3192
|
];
|
|
3144
3193
|
}).s("AmazonForecast", "DescribeDatasetImportJob", {}).n("ForecastClient", "DescribeDatasetImportJobCommand").f(void 0, void 0).ser(se_DescribeDatasetImportJobCommand).de(de_DescribeDatasetImportJobCommand).build() {
|
|
3194
|
+
static {
|
|
3195
|
+
__name(this, "DescribeDatasetImportJobCommand");
|
|
3196
|
+
}
|
|
3145
3197
|
};
|
|
3146
|
-
__name(_DescribeDatasetImportJobCommand, "DescribeDatasetImportJobCommand");
|
|
3147
|
-
var DescribeDatasetImportJobCommand = _DescribeDatasetImportJobCommand;
|
|
3148
3198
|
|
|
3149
3199
|
// src/commands/DescribeExplainabilityCommand.ts
|
|
3150
3200
|
|
|
3151
3201
|
|
|
3152
3202
|
|
|
3153
|
-
var
|
|
3203
|
+
var DescribeExplainabilityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3154
3204
|
return [
|
|
3155
3205
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3156
3206
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3157
3207
|
];
|
|
3158
3208
|
}).s("AmazonForecast", "DescribeExplainability", {}).n("ForecastClient", "DescribeExplainabilityCommand").f(void 0, void 0).ser(se_DescribeExplainabilityCommand).de(de_DescribeExplainabilityCommand).build() {
|
|
3209
|
+
static {
|
|
3210
|
+
__name(this, "DescribeExplainabilityCommand");
|
|
3211
|
+
}
|
|
3159
3212
|
};
|
|
3160
|
-
__name(_DescribeExplainabilityCommand, "DescribeExplainabilityCommand");
|
|
3161
|
-
var DescribeExplainabilityCommand = _DescribeExplainabilityCommand;
|
|
3162
3213
|
|
|
3163
3214
|
// src/commands/DescribeExplainabilityExportCommand.ts
|
|
3164
3215
|
|
|
3165
3216
|
|
|
3166
3217
|
|
|
3167
|
-
var
|
|
3218
|
+
var DescribeExplainabilityExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3168
3219
|
return [
|
|
3169
3220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3170
3221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3171
3222
|
];
|
|
3172
3223
|
}).s("AmazonForecast", "DescribeExplainabilityExport", {}).n("ForecastClient", "DescribeExplainabilityExportCommand").f(void 0, void 0).ser(se_DescribeExplainabilityExportCommand).de(de_DescribeExplainabilityExportCommand).build() {
|
|
3224
|
+
static {
|
|
3225
|
+
__name(this, "DescribeExplainabilityExportCommand");
|
|
3226
|
+
}
|
|
3173
3227
|
};
|
|
3174
|
-
__name(_DescribeExplainabilityExportCommand, "DescribeExplainabilityExportCommand");
|
|
3175
|
-
var DescribeExplainabilityExportCommand = _DescribeExplainabilityExportCommand;
|
|
3176
3228
|
|
|
3177
3229
|
// src/commands/DescribeForecastCommand.ts
|
|
3178
3230
|
|
|
3179
3231
|
|
|
3180
3232
|
|
|
3181
|
-
var
|
|
3233
|
+
var DescribeForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3182
3234
|
return [
|
|
3183
3235
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3184
3236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3185
3237
|
];
|
|
3186
3238
|
}).s("AmazonForecast", "DescribeForecast", {}).n("ForecastClient", "DescribeForecastCommand").f(void 0, void 0).ser(se_DescribeForecastCommand).de(de_DescribeForecastCommand).build() {
|
|
3239
|
+
static {
|
|
3240
|
+
__name(this, "DescribeForecastCommand");
|
|
3241
|
+
}
|
|
3187
3242
|
};
|
|
3188
|
-
__name(_DescribeForecastCommand, "DescribeForecastCommand");
|
|
3189
|
-
var DescribeForecastCommand = _DescribeForecastCommand;
|
|
3190
3243
|
|
|
3191
3244
|
// src/commands/DescribeForecastExportJobCommand.ts
|
|
3192
3245
|
|
|
3193
3246
|
|
|
3194
3247
|
|
|
3195
|
-
var
|
|
3248
|
+
var DescribeForecastExportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3196
3249
|
return [
|
|
3197
3250
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3198
3251
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3199
3252
|
];
|
|
3200
3253
|
}).s("AmazonForecast", "DescribeForecastExportJob", {}).n("ForecastClient", "DescribeForecastExportJobCommand").f(void 0, void 0).ser(se_DescribeForecastExportJobCommand).de(de_DescribeForecastExportJobCommand).build() {
|
|
3254
|
+
static {
|
|
3255
|
+
__name(this, "DescribeForecastExportJobCommand");
|
|
3256
|
+
}
|
|
3201
3257
|
};
|
|
3202
|
-
__name(_DescribeForecastExportJobCommand, "DescribeForecastExportJobCommand");
|
|
3203
|
-
var DescribeForecastExportJobCommand = _DescribeForecastExportJobCommand;
|
|
3204
3258
|
|
|
3205
3259
|
// src/commands/DescribeMonitorCommand.ts
|
|
3206
3260
|
|
|
3207
3261
|
|
|
3208
3262
|
|
|
3209
|
-
var
|
|
3263
|
+
var DescribeMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3210
3264
|
return [
|
|
3211
3265
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3212
3266
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3213
3267
|
];
|
|
3214
3268
|
}).s("AmazonForecast", "DescribeMonitor", {}).n("ForecastClient", "DescribeMonitorCommand").f(void 0, void 0).ser(se_DescribeMonitorCommand).de(de_DescribeMonitorCommand).build() {
|
|
3269
|
+
static {
|
|
3270
|
+
__name(this, "DescribeMonitorCommand");
|
|
3271
|
+
}
|
|
3215
3272
|
};
|
|
3216
|
-
__name(_DescribeMonitorCommand, "DescribeMonitorCommand");
|
|
3217
|
-
var DescribeMonitorCommand = _DescribeMonitorCommand;
|
|
3218
3273
|
|
|
3219
3274
|
// src/commands/DescribePredictorBacktestExportJobCommand.ts
|
|
3220
3275
|
|
|
3221
3276
|
|
|
3222
3277
|
|
|
3223
|
-
var
|
|
3278
|
+
var DescribePredictorBacktestExportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3224
3279
|
return [
|
|
3225
3280
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3226
3281
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3227
3282
|
];
|
|
3228
3283
|
}).s("AmazonForecast", "DescribePredictorBacktestExportJob", {}).n("ForecastClient", "DescribePredictorBacktestExportJobCommand").f(void 0, void 0).ser(se_DescribePredictorBacktestExportJobCommand).de(de_DescribePredictorBacktestExportJobCommand).build() {
|
|
3284
|
+
static {
|
|
3285
|
+
__name(this, "DescribePredictorBacktestExportJobCommand");
|
|
3286
|
+
}
|
|
3229
3287
|
};
|
|
3230
|
-
__name(_DescribePredictorBacktestExportJobCommand, "DescribePredictorBacktestExportJobCommand");
|
|
3231
|
-
var DescribePredictorBacktestExportJobCommand = _DescribePredictorBacktestExportJobCommand;
|
|
3232
3288
|
|
|
3233
3289
|
// src/commands/DescribePredictorCommand.ts
|
|
3234
3290
|
|
|
3235
3291
|
|
|
3236
3292
|
|
|
3237
|
-
var
|
|
3293
|
+
var DescribePredictorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3238
3294
|
return [
|
|
3239
3295
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3240
3296
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3241
3297
|
];
|
|
3242
3298
|
}).s("AmazonForecast", "DescribePredictor", {}).n("ForecastClient", "DescribePredictorCommand").f(void 0, void 0).ser(se_DescribePredictorCommand).de(de_DescribePredictorCommand).build() {
|
|
3299
|
+
static {
|
|
3300
|
+
__name(this, "DescribePredictorCommand");
|
|
3301
|
+
}
|
|
3243
3302
|
};
|
|
3244
|
-
__name(_DescribePredictorCommand, "DescribePredictorCommand");
|
|
3245
|
-
var DescribePredictorCommand = _DescribePredictorCommand;
|
|
3246
3303
|
|
|
3247
3304
|
// src/commands/DescribeWhatIfAnalysisCommand.ts
|
|
3248
3305
|
|
|
3249
3306
|
|
|
3250
3307
|
|
|
3251
|
-
var
|
|
3308
|
+
var DescribeWhatIfAnalysisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3252
3309
|
return [
|
|
3253
3310
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3254
3311
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3255
3312
|
];
|
|
3256
3313
|
}).s("AmazonForecast", "DescribeWhatIfAnalysis", {}).n("ForecastClient", "DescribeWhatIfAnalysisCommand").f(void 0, void 0).ser(se_DescribeWhatIfAnalysisCommand).de(de_DescribeWhatIfAnalysisCommand).build() {
|
|
3314
|
+
static {
|
|
3315
|
+
__name(this, "DescribeWhatIfAnalysisCommand");
|
|
3316
|
+
}
|
|
3257
3317
|
};
|
|
3258
|
-
__name(_DescribeWhatIfAnalysisCommand, "DescribeWhatIfAnalysisCommand");
|
|
3259
|
-
var DescribeWhatIfAnalysisCommand = _DescribeWhatIfAnalysisCommand;
|
|
3260
3318
|
|
|
3261
3319
|
// src/commands/DescribeWhatIfForecastCommand.ts
|
|
3262
3320
|
|
|
3263
3321
|
|
|
3264
3322
|
|
|
3265
|
-
var
|
|
3323
|
+
var DescribeWhatIfForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3266
3324
|
return [
|
|
3267
3325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3268
3326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3269
3327
|
];
|
|
3270
3328
|
}).s("AmazonForecast", "DescribeWhatIfForecast", {}).n("ForecastClient", "DescribeWhatIfForecastCommand").f(void 0, void 0).ser(se_DescribeWhatIfForecastCommand).de(de_DescribeWhatIfForecastCommand).build() {
|
|
3329
|
+
static {
|
|
3330
|
+
__name(this, "DescribeWhatIfForecastCommand");
|
|
3331
|
+
}
|
|
3271
3332
|
};
|
|
3272
|
-
__name(_DescribeWhatIfForecastCommand, "DescribeWhatIfForecastCommand");
|
|
3273
|
-
var DescribeWhatIfForecastCommand = _DescribeWhatIfForecastCommand;
|
|
3274
3333
|
|
|
3275
3334
|
// src/commands/DescribeWhatIfForecastExportCommand.ts
|
|
3276
3335
|
|
|
3277
3336
|
|
|
3278
3337
|
|
|
3279
|
-
var
|
|
3338
|
+
var DescribeWhatIfForecastExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3280
3339
|
return [
|
|
3281
3340
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3282
3341
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3283
3342
|
];
|
|
3284
3343
|
}).s("AmazonForecast", "DescribeWhatIfForecastExport", {}).n("ForecastClient", "DescribeWhatIfForecastExportCommand").f(void 0, void 0).ser(se_DescribeWhatIfForecastExportCommand).de(de_DescribeWhatIfForecastExportCommand).build() {
|
|
3344
|
+
static {
|
|
3345
|
+
__name(this, "DescribeWhatIfForecastExportCommand");
|
|
3346
|
+
}
|
|
3285
3347
|
};
|
|
3286
|
-
__name(_DescribeWhatIfForecastExportCommand, "DescribeWhatIfForecastExportCommand");
|
|
3287
|
-
var DescribeWhatIfForecastExportCommand = _DescribeWhatIfForecastExportCommand;
|
|
3288
3348
|
|
|
3289
3349
|
// src/commands/GetAccuracyMetricsCommand.ts
|
|
3290
3350
|
|
|
3291
3351
|
|
|
3292
3352
|
|
|
3293
|
-
var
|
|
3353
|
+
var GetAccuracyMetricsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3294
3354
|
return [
|
|
3295
3355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3296
3356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3297
3357
|
];
|
|
3298
3358
|
}).s("AmazonForecast", "GetAccuracyMetrics", {}).n("ForecastClient", "GetAccuracyMetricsCommand").f(void 0, void 0).ser(se_GetAccuracyMetricsCommand).de(de_GetAccuracyMetricsCommand).build() {
|
|
3359
|
+
static {
|
|
3360
|
+
__name(this, "GetAccuracyMetricsCommand");
|
|
3361
|
+
}
|
|
3299
3362
|
};
|
|
3300
|
-
__name(_GetAccuracyMetricsCommand, "GetAccuracyMetricsCommand");
|
|
3301
|
-
var GetAccuracyMetricsCommand = _GetAccuracyMetricsCommand;
|
|
3302
3363
|
|
|
3303
3364
|
// src/commands/ListDatasetGroupsCommand.ts
|
|
3304
3365
|
|
|
3305
3366
|
|
|
3306
3367
|
|
|
3307
|
-
var
|
|
3368
|
+
var ListDatasetGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3308
3369
|
return [
|
|
3309
3370
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3310
3371
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3311
3372
|
];
|
|
3312
3373
|
}).s("AmazonForecast", "ListDatasetGroups", {}).n("ForecastClient", "ListDatasetGroupsCommand").f(void 0, void 0).ser(se_ListDatasetGroupsCommand).de(de_ListDatasetGroupsCommand).build() {
|
|
3374
|
+
static {
|
|
3375
|
+
__name(this, "ListDatasetGroupsCommand");
|
|
3376
|
+
}
|
|
3313
3377
|
};
|
|
3314
|
-
__name(_ListDatasetGroupsCommand, "ListDatasetGroupsCommand");
|
|
3315
|
-
var ListDatasetGroupsCommand = _ListDatasetGroupsCommand;
|
|
3316
3378
|
|
|
3317
3379
|
// src/commands/ListDatasetImportJobsCommand.ts
|
|
3318
3380
|
|
|
3319
3381
|
|
|
3320
3382
|
|
|
3321
|
-
var
|
|
3383
|
+
var ListDatasetImportJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3322
3384
|
return [
|
|
3323
3385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3324
3386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3325
3387
|
];
|
|
3326
3388
|
}).s("AmazonForecast", "ListDatasetImportJobs", {}).n("ForecastClient", "ListDatasetImportJobsCommand").f(void 0, void 0).ser(se_ListDatasetImportJobsCommand).de(de_ListDatasetImportJobsCommand).build() {
|
|
3389
|
+
static {
|
|
3390
|
+
__name(this, "ListDatasetImportJobsCommand");
|
|
3391
|
+
}
|
|
3327
3392
|
};
|
|
3328
|
-
__name(_ListDatasetImportJobsCommand, "ListDatasetImportJobsCommand");
|
|
3329
|
-
var ListDatasetImportJobsCommand = _ListDatasetImportJobsCommand;
|
|
3330
3393
|
|
|
3331
3394
|
// src/commands/ListDatasetsCommand.ts
|
|
3332
3395
|
|
|
3333
3396
|
|
|
3334
3397
|
|
|
3335
|
-
var
|
|
3398
|
+
var ListDatasetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3336
3399
|
return [
|
|
3337
3400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3338
3401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3339
3402
|
];
|
|
3340
3403
|
}).s("AmazonForecast", "ListDatasets", {}).n("ForecastClient", "ListDatasetsCommand").f(void 0, void 0).ser(se_ListDatasetsCommand).de(de_ListDatasetsCommand).build() {
|
|
3404
|
+
static {
|
|
3405
|
+
__name(this, "ListDatasetsCommand");
|
|
3406
|
+
}
|
|
3341
3407
|
};
|
|
3342
|
-
__name(_ListDatasetsCommand, "ListDatasetsCommand");
|
|
3343
|
-
var ListDatasetsCommand = _ListDatasetsCommand;
|
|
3344
3408
|
|
|
3345
3409
|
// src/commands/ListExplainabilitiesCommand.ts
|
|
3346
3410
|
|
|
3347
3411
|
|
|
3348
3412
|
|
|
3349
|
-
var
|
|
3413
|
+
var ListExplainabilitiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3350
3414
|
return [
|
|
3351
3415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3352
3416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3353
3417
|
];
|
|
3354
3418
|
}).s("AmazonForecast", "ListExplainabilities", {}).n("ForecastClient", "ListExplainabilitiesCommand").f(void 0, void 0).ser(se_ListExplainabilitiesCommand).de(de_ListExplainabilitiesCommand).build() {
|
|
3419
|
+
static {
|
|
3420
|
+
__name(this, "ListExplainabilitiesCommand");
|
|
3421
|
+
}
|
|
3355
3422
|
};
|
|
3356
|
-
__name(_ListExplainabilitiesCommand, "ListExplainabilitiesCommand");
|
|
3357
|
-
var ListExplainabilitiesCommand = _ListExplainabilitiesCommand;
|
|
3358
3423
|
|
|
3359
3424
|
// src/commands/ListExplainabilityExportsCommand.ts
|
|
3360
3425
|
|
|
3361
3426
|
|
|
3362
3427
|
|
|
3363
|
-
var
|
|
3428
|
+
var ListExplainabilityExportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3364
3429
|
return [
|
|
3365
3430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3366
3431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3367
3432
|
];
|
|
3368
3433
|
}).s("AmazonForecast", "ListExplainabilityExports", {}).n("ForecastClient", "ListExplainabilityExportsCommand").f(void 0, void 0).ser(se_ListExplainabilityExportsCommand).de(de_ListExplainabilityExportsCommand).build() {
|
|
3434
|
+
static {
|
|
3435
|
+
__name(this, "ListExplainabilityExportsCommand");
|
|
3436
|
+
}
|
|
3369
3437
|
};
|
|
3370
|
-
__name(_ListExplainabilityExportsCommand, "ListExplainabilityExportsCommand");
|
|
3371
|
-
var ListExplainabilityExportsCommand = _ListExplainabilityExportsCommand;
|
|
3372
3438
|
|
|
3373
3439
|
// src/commands/ListForecastExportJobsCommand.ts
|
|
3374
3440
|
|
|
3375
3441
|
|
|
3376
3442
|
|
|
3377
|
-
var
|
|
3443
|
+
var ListForecastExportJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3378
3444
|
return [
|
|
3379
3445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3380
3446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3381
3447
|
];
|
|
3382
3448
|
}).s("AmazonForecast", "ListForecastExportJobs", {}).n("ForecastClient", "ListForecastExportJobsCommand").f(void 0, void 0).ser(se_ListForecastExportJobsCommand).de(de_ListForecastExportJobsCommand).build() {
|
|
3449
|
+
static {
|
|
3450
|
+
__name(this, "ListForecastExportJobsCommand");
|
|
3451
|
+
}
|
|
3383
3452
|
};
|
|
3384
|
-
__name(_ListForecastExportJobsCommand, "ListForecastExportJobsCommand");
|
|
3385
|
-
var ListForecastExportJobsCommand = _ListForecastExportJobsCommand;
|
|
3386
3453
|
|
|
3387
3454
|
// src/commands/ListForecastsCommand.ts
|
|
3388
3455
|
|
|
3389
3456
|
|
|
3390
3457
|
|
|
3391
|
-
var
|
|
3458
|
+
var ListForecastsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3392
3459
|
return [
|
|
3393
3460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3394
3461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3395
3462
|
];
|
|
3396
3463
|
}).s("AmazonForecast", "ListForecasts", {}).n("ForecastClient", "ListForecastsCommand").f(void 0, void 0).ser(se_ListForecastsCommand).de(de_ListForecastsCommand).build() {
|
|
3464
|
+
static {
|
|
3465
|
+
__name(this, "ListForecastsCommand");
|
|
3466
|
+
}
|
|
3397
3467
|
};
|
|
3398
|
-
__name(_ListForecastsCommand, "ListForecastsCommand");
|
|
3399
|
-
var ListForecastsCommand = _ListForecastsCommand;
|
|
3400
3468
|
|
|
3401
3469
|
// src/commands/ListMonitorEvaluationsCommand.ts
|
|
3402
3470
|
|
|
3403
3471
|
|
|
3404
3472
|
|
|
3405
|
-
var
|
|
3473
|
+
var ListMonitorEvaluationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3406
3474
|
return [
|
|
3407
3475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3408
3476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3409
3477
|
];
|
|
3410
3478
|
}).s("AmazonForecast", "ListMonitorEvaluations", {}).n("ForecastClient", "ListMonitorEvaluationsCommand").f(void 0, void 0).ser(se_ListMonitorEvaluationsCommand).de(de_ListMonitorEvaluationsCommand).build() {
|
|
3479
|
+
static {
|
|
3480
|
+
__name(this, "ListMonitorEvaluationsCommand");
|
|
3481
|
+
}
|
|
3411
3482
|
};
|
|
3412
|
-
__name(_ListMonitorEvaluationsCommand, "ListMonitorEvaluationsCommand");
|
|
3413
|
-
var ListMonitorEvaluationsCommand = _ListMonitorEvaluationsCommand;
|
|
3414
3483
|
|
|
3415
3484
|
// src/commands/ListMonitorsCommand.ts
|
|
3416
3485
|
|
|
3417
3486
|
|
|
3418
3487
|
|
|
3419
|
-
var
|
|
3488
|
+
var ListMonitorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3420
3489
|
return [
|
|
3421
3490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3422
3491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3423
3492
|
];
|
|
3424
3493
|
}).s("AmazonForecast", "ListMonitors", {}).n("ForecastClient", "ListMonitorsCommand").f(void 0, void 0).ser(se_ListMonitorsCommand).de(de_ListMonitorsCommand).build() {
|
|
3494
|
+
static {
|
|
3495
|
+
__name(this, "ListMonitorsCommand");
|
|
3496
|
+
}
|
|
3425
3497
|
};
|
|
3426
|
-
__name(_ListMonitorsCommand, "ListMonitorsCommand");
|
|
3427
|
-
var ListMonitorsCommand = _ListMonitorsCommand;
|
|
3428
3498
|
|
|
3429
3499
|
// src/commands/ListPredictorBacktestExportJobsCommand.ts
|
|
3430
3500
|
|
|
3431
3501
|
|
|
3432
3502
|
|
|
3433
|
-
var
|
|
3503
|
+
var ListPredictorBacktestExportJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3434
3504
|
return [
|
|
3435
3505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3436
3506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3437
3507
|
];
|
|
3438
3508
|
}).s("AmazonForecast", "ListPredictorBacktestExportJobs", {}).n("ForecastClient", "ListPredictorBacktestExportJobsCommand").f(void 0, void 0).ser(se_ListPredictorBacktestExportJobsCommand).de(de_ListPredictorBacktestExportJobsCommand).build() {
|
|
3509
|
+
static {
|
|
3510
|
+
__name(this, "ListPredictorBacktestExportJobsCommand");
|
|
3511
|
+
}
|
|
3439
3512
|
};
|
|
3440
|
-
__name(_ListPredictorBacktestExportJobsCommand, "ListPredictorBacktestExportJobsCommand");
|
|
3441
|
-
var ListPredictorBacktestExportJobsCommand = _ListPredictorBacktestExportJobsCommand;
|
|
3442
3513
|
|
|
3443
3514
|
// src/commands/ListPredictorsCommand.ts
|
|
3444
3515
|
|
|
3445
3516
|
|
|
3446
3517
|
|
|
3447
|
-
var
|
|
3518
|
+
var ListPredictorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3448
3519
|
return [
|
|
3449
3520
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3450
3521
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3451
3522
|
];
|
|
3452
3523
|
}).s("AmazonForecast", "ListPredictors", {}).n("ForecastClient", "ListPredictorsCommand").f(void 0, void 0).ser(se_ListPredictorsCommand).de(de_ListPredictorsCommand).build() {
|
|
3524
|
+
static {
|
|
3525
|
+
__name(this, "ListPredictorsCommand");
|
|
3526
|
+
}
|
|
3453
3527
|
};
|
|
3454
|
-
__name(_ListPredictorsCommand, "ListPredictorsCommand");
|
|
3455
|
-
var ListPredictorsCommand = _ListPredictorsCommand;
|
|
3456
3528
|
|
|
3457
3529
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3458
3530
|
|
|
3459
3531
|
|
|
3460
3532
|
|
|
3461
|
-
var
|
|
3533
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3462
3534
|
return [
|
|
3463
3535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3464
3536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3465
3537
|
];
|
|
3466
3538
|
}).s("AmazonForecast", "ListTagsForResource", {}).n("ForecastClient", "ListTagsForResourceCommand").f(void 0, ListTagsForResourceResponseFilterSensitiveLog).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3539
|
+
static {
|
|
3540
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3541
|
+
}
|
|
3467
3542
|
};
|
|
3468
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3469
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3470
3543
|
|
|
3471
3544
|
// src/commands/ListWhatIfAnalysesCommand.ts
|
|
3472
3545
|
|
|
3473
3546
|
|
|
3474
3547
|
|
|
3475
|
-
var
|
|
3548
|
+
var ListWhatIfAnalysesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3476
3549
|
return [
|
|
3477
3550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3478
3551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3479
3552
|
];
|
|
3480
3553
|
}).s("AmazonForecast", "ListWhatIfAnalyses", {}).n("ForecastClient", "ListWhatIfAnalysesCommand").f(void 0, void 0).ser(se_ListWhatIfAnalysesCommand).de(de_ListWhatIfAnalysesCommand).build() {
|
|
3554
|
+
static {
|
|
3555
|
+
__name(this, "ListWhatIfAnalysesCommand");
|
|
3556
|
+
}
|
|
3481
3557
|
};
|
|
3482
|
-
__name(_ListWhatIfAnalysesCommand, "ListWhatIfAnalysesCommand");
|
|
3483
|
-
var ListWhatIfAnalysesCommand = _ListWhatIfAnalysesCommand;
|
|
3484
3558
|
|
|
3485
3559
|
// src/commands/ListWhatIfForecastExportsCommand.ts
|
|
3486
3560
|
|
|
3487
3561
|
|
|
3488
3562
|
|
|
3489
|
-
var
|
|
3563
|
+
var ListWhatIfForecastExportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3490
3564
|
return [
|
|
3491
3565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3492
3566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3493
3567
|
];
|
|
3494
3568
|
}).s("AmazonForecast", "ListWhatIfForecastExports", {}).n("ForecastClient", "ListWhatIfForecastExportsCommand").f(void 0, void 0).ser(se_ListWhatIfForecastExportsCommand).de(de_ListWhatIfForecastExportsCommand).build() {
|
|
3569
|
+
static {
|
|
3570
|
+
__name(this, "ListWhatIfForecastExportsCommand");
|
|
3571
|
+
}
|
|
3495
3572
|
};
|
|
3496
|
-
__name(_ListWhatIfForecastExportsCommand, "ListWhatIfForecastExportsCommand");
|
|
3497
|
-
var ListWhatIfForecastExportsCommand = _ListWhatIfForecastExportsCommand;
|
|
3498
3573
|
|
|
3499
3574
|
// src/commands/ListWhatIfForecastsCommand.ts
|
|
3500
3575
|
|
|
3501
3576
|
|
|
3502
3577
|
|
|
3503
|
-
var
|
|
3578
|
+
var ListWhatIfForecastsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3504
3579
|
return [
|
|
3505
3580
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3506
3581
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3507
3582
|
];
|
|
3508
3583
|
}).s("AmazonForecast", "ListWhatIfForecasts", {}).n("ForecastClient", "ListWhatIfForecastsCommand").f(void 0, void 0).ser(se_ListWhatIfForecastsCommand).de(de_ListWhatIfForecastsCommand).build() {
|
|
3584
|
+
static {
|
|
3585
|
+
__name(this, "ListWhatIfForecastsCommand");
|
|
3586
|
+
}
|
|
3509
3587
|
};
|
|
3510
|
-
__name(_ListWhatIfForecastsCommand, "ListWhatIfForecastsCommand");
|
|
3511
|
-
var ListWhatIfForecastsCommand = _ListWhatIfForecastsCommand;
|
|
3512
3588
|
|
|
3513
3589
|
// src/commands/ResumeResourceCommand.ts
|
|
3514
3590
|
|
|
3515
3591
|
|
|
3516
3592
|
|
|
3517
|
-
var
|
|
3593
|
+
var ResumeResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3518
3594
|
return [
|
|
3519
3595
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3520
3596
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3521
3597
|
];
|
|
3522
3598
|
}).s("AmazonForecast", "ResumeResource", {}).n("ForecastClient", "ResumeResourceCommand").f(void 0, void 0).ser(se_ResumeResourceCommand).de(de_ResumeResourceCommand).build() {
|
|
3599
|
+
static {
|
|
3600
|
+
__name(this, "ResumeResourceCommand");
|
|
3601
|
+
}
|
|
3523
3602
|
};
|
|
3524
|
-
__name(_ResumeResourceCommand, "ResumeResourceCommand");
|
|
3525
|
-
var ResumeResourceCommand = _ResumeResourceCommand;
|
|
3526
3603
|
|
|
3527
3604
|
// src/commands/StopResourceCommand.ts
|
|
3528
3605
|
|
|
3529
3606
|
|
|
3530
3607
|
|
|
3531
|
-
var
|
|
3608
|
+
var StopResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3532
3609
|
return [
|
|
3533
3610
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3534
3611
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3535
3612
|
];
|
|
3536
3613
|
}).s("AmazonForecast", "StopResource", {}).n("ForecastClient", "StopResourceCommand").f(void 0, void 0).ser(se_StopResourceCommand).de(de_StopResourceCommand).build() {
|
|
3614
|
+
static {
|
|
3615
|
+
__name(this, "StopResourceCommand");
|
|
3616
|
+
}
|
|
3537
3617
|
};
|
|
3538
|
-
__name(_StopResourceCommand, "StopResourceCommand");
|
|
3539
|
-
var StopResourceCommand = _StopResourceCommand;
|
|
3540
3618
|
|
|
3541
3619
|
// src/commands/TagResourceCommand.ts
|
|
3542
3620
|
|
|
3543
3621
|
|
|
3544
3622
|
|
|
3545
|
-
var
|
|
3623
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3546
3624
|
return [
|
|
3547
3625
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3548
3626
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3549
3627
|
];
|
|
3550
3628
|
}).s("AmazonForecast", "TagResource", {}).n("ForecastClient", "TagResourceCommand").f(TagResourceRequestFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3629
|
+
static {
|
|
3630
|
+
__name(this, "TagResourceCommand");
|
|
3631
|
+
}
|
|
3551
3632
|
};
|
|
3552
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3553
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3554
3633
|
|
|
3555
3634
|
// src/commands/UntagResourceCommand.ts
|
|
3556
3635
|
|
|
3557
3636
|
|
|
3558
3637
|
|
|
3559
|
-
var
|
|
3638
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3560
3639
|
return [
|
|
3561
3640
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3562
3641
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3563
3642
|
];
|
|
3564
3643
|
}).s("AmazonForecast", "UntagResource", {}).n("ForecastClient", "UntagResourceCommand").f(UntagResourceRequestFilterSensitiveLog, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3644
|
+
static {
|
|
3645
|
+
__name(this, "UntagResourceCommand");
|
|
3646
|
+
}
|
|
3565
3647
|
};
|
|
3566
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3567
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3568
3648
|
|
|
3569
3649
|
// src/commands/UpdateDatasetGroupCommand.ts
|
|
3570
3650
|
|
|
3571
3651
|
|
|
3572
3652
|
|
|
3573
|
-
var
|
|
3653
|
+
var UpdateDatasetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3574
3654
|
return [
|
|
3575
3655
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3576
3656
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3577
3657
|
];
|
|
3578
3658
|
}).s("AmazonForecast", "UpdateDatasetGroup", {}).n("ForecastClient", "UpdateDatasetGroupCommand").f(void 0, void 0).ser(se_UpdateDatasetGroupCommand).de(de_UpdateDatasetGroupCommand).build() {
|
|
3659
|
+
static {
|
|
3660
|
+
__name(this, "UpdateDatasetGroupCommand");
|
|
3661
|
+
}
|
|
3579
3662
|
};
|
|
3580
|
-
__name(_UpdateDatasetGroupCommand, "UpdateDatasetGroupCommand");
|
|
3581
|
-
var UpdateDatasetGroupCommand = _UpdateDatasetGroupCommand;
|
|
3582
3663
|
|
|
3583
3664
|
// src/Forecast.ts
|
|
3584
3665
|
var commands = {
|
|
@@ -3646,10 +3727,11 @@ var commands = {
|
|
|
3646
3727
|
UntagResourceCommand,
|
|
3647
3728
|
UpdateDatasetGroupCommand
|
|
3648
3729
|
};
|
|
3649
|
-
var
|
|
3730
|
+
var Forecast = class extends ForecastClient {
|
|
3731
|
+
static {
|
|
3732
|
+
__name(this, "Forecast");
|
|
3733
|
+
}
|
|
3650
3734
|
};
|
|
3651
|
-
__name(_Forecast, "Forecast");
|
|
3652
|
-
var Forecast = _Forecast;
|
|
3653
3735
|
(0, import_smithy_client.createAggregatedClient)(commands, Forecast);
|
|
3654
3736
|
|
|
3655
3737
|
// src/pagination/ListDatasetGroupsPaginator.ts
|