@aws-sdk/client-cost-explorer 3.717.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 +293 -212
- package/dist-es/CostExplorerClient.js +1 -0
- package/dist-es/models/models_0.js +44 -28
- 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
|
@@ -227,7 +227,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
227
227
|
}, "resolveRuntimeExtensions");
|
|
228
228
|
|
|
229
229
|
// src/CostExplorerClient.ts
|
|
230
|
-
var
|
|
230
|
+
var CostExplorerClient = class extends import_smithy_client.Client {
|
|
231
|
+
static {
|
|
232
|
+
__name(this, "CostExplorerClient");
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* The resolved configuration of CostExplorerClient class. This is resolved and normalized from the {@link CostExplorerClientConfig | constructor configuration interface}.
|
|
236
|
+
*/
|
|
237
|
+
config;
|
|
231
238
|
constructor(...[configuration]) {
|
|
232
239
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
233
240
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -237,7 +244,7 @@ var _CostExplorerClient = class _CostExplorerClient extends import_smithy_client
|
|
|
237
244
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
238
245
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
239
246
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
240
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
247
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
241
248
|
super(_config_8);
|
|
242
249
|
this.config = _config_8;
|
|
243
250
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -265,8 +272,6 @@ var _CostExplorerClient = class _CostExplorerClient extends import_smithy_client
|
|
|
265
272
|
super.destroy();
|
|
266
273
|
}
|
|
267
274
|
};
|
|
268
|
-
__name(_CostExplorerClient, "CostExplorerClient");
|
|
269
|
-
var CostExplorerClient = _CostExplorerClient;
|
|
270
275
|
|
|
271
276
|
// src/CostExplorer.ts
|
|
272
277
|
|
|
@@ -283,7 +288,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
283
288
|
|
|
284
289
|
// src/models/CostExplorerServiceException.ts
|
|
285
290
|
|
|
286
|
-
var
|
|
291
|
+
var CostExplorerServiceException = class _CostExplorerServiceException extends import_smithy_client.ServiceException {
|
|
292
|
+
static {
|
|
293
|
+
__name(this, "CostExplorerServiceException");
|
|
294
|
+
}
|
|
287
295
|
/**
|
|
288
296
|
* @internal
|
|
289
297
|
*/
|
|
@@ -292,15 +300,19 @@ var _CostExplorerServiceException = class _CostExplorerServiceException extends
|
|
|
292
300
|
Object.setPrototypeOf(this, _CostExplorerServiceException.prototype);
|
|
293
301
|
}
|
|
294
302
|
};
|
|
295
|
-
__name(_CostExplorerServiceException, "CostExplorerServiceException");
|
|
296
|
-
var CostExplorerServiceException = _CostExplorerServiceException;
|
|
297
303
|
|
|
298
304
|
// src/models/models_0.ts
|
|
299
305
|
var AccountScope = {
|
|
300
306
|
LINKED: "LINKED",
|
|
301
307
|
PAYER: "PAYER"
|
|
302
308
|
};
|
|
303
|
-
var
|
|
309
|
+
var AnalysisNotFoundException = class _AnalysisNotFoundException extends CostExplorerServiceException {
|
|
310
|
+
static {
|
|
311
|
+
__name(this, "AnalysisNotFoundException");
|
|
312
|
+
}
|
|
313
|
+
name = "AnalysisNotFoundException";
|
|
314
|
+
$fault = "client";
|
|
315
|
+
Message;
|
|
304
316
|
/**
|
|
305
317
|
* @internal
|
|
306
318
|
*/
|
|
@@ -310,14 +322,10 @@ var _AnalysisNotFoundException = class _AnalysisNotFoundException extends CostEx
|
|
|
310
322
|
$fault: "client",
|
|
311
323
|
...opts
|
|
312
324
|
});
|
|
313
|
-
this.name = "AnalysisNotFoundException";
|
|
314
|
-
this.$fault = "client";
|
|
315
325
|
Object.setPrototypeOf(this, _AnalysisNotFoundException.prototype);
|
|
316
326
|
this.Message = opts.Message;
|
|
317
327
|
}
|
|
318
328
|
};
|
|
319
|
-
__name(_AnalysisNotFoundException, "AnalysisNotFoundException");
|
|
320
|
-
var AnalysisNotFoundException = _AnalysisNotFoundException;
|
|
321
329
|
var AnalysisStatus = {
|
|
322
330
|
FAILED: "FAILED",
|
|
323
331
|
PROCESSING: "PROCESSING",
|
|
@@ -426,7 +434,13 @@ var ApproximationDimension = {
|
|
|
426
434
|
RESOURCE: "RESOURCE",
|
|
427
435
|
SERVICE: "SERVICE"
|
|
428
436
|
};
|
|
429
|
-
var
|
|
437
|
+
var LimitExceededException = class _LimitExceededException extends CostExplorerServiceException {
|
|
438
|
+
static {
|
|
439
|
+
__name(this, "LimitExceededException");
|
|
440
|
+
}
|
|
441
|
+
name = "LimitExceededException";
|
|
442
|
+
$fault = "client";
|
|
443
|
+
Message;
|
|
430
444
|
/**
|
|
431
445
|
* @internal
|
|
432
446
|
*/
|
|
@@ -436,15 +450,17 @@ var _LimitExceededException = class _LimitExceededException extends CostExplorer
|
|
|
436
450
|
$fault: "client",
|
|
437
451
|
...opts
|
|
438
452
|
});
|
|
439
|
-
this.name = "LimitExceededException";
|
|
440
|
-
this.$fault = "client";
|
|
441
453
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
442
454
|
this.Message = opts.Message;
|
|
443
455
|
}
|
|
444
456
|
};
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
457
|
+
var UnknownMonitorException = class _UnknownMonitorException extends CostExplorerServiceException {
|
|
458
|
+
static {
|
|
459
|
+
__name(this, "UnknownMonitorException");
|
|
460
|
+
}
|
|
461
|
+
name = "UnknownMonitorException";
|
|
462
|
+
$fault = "client";
|
|
463
|
+
Message;
|
|
448
464
|
/**
|
|
449
465
|
* @internal
|
|
450
466
|
*/
|
|
@@ -454,14 +470,10 @@ var _UnknownMonitorException = class _UnknownMonitorException extends CostExplor
|
|
|
454
470
|
$fault: "client",
|
|
455
471
|
...opts
|
|
456
472
|
});
|
|
457
|
-
this.name = "UnknownMonitorException";
|
|
458
|
-
this.$fault = "client";
|
|
459
473
|
Object.setPrototypeOf(this, _UnknownMonitorException.prototype);
|
|
460
474
|
this.Message = opts.Message;
|
|
461
475
|
}
|
|
462
476
|
};
|
|
463
|
-
__name(_UnknownMonitorException, "UnknownMonitorException");
|
|
464
|
-
var UnknownMonitorException = _UnknownMonitorException;
|
|
465
477
|
var CostCategoryInheritedValueDimensionName = {
|
|
466
478
|
LINKED_ACCOUNT_NAME: "LINKED_ACCOUNT_NAME",
|
|
467
479
|
TAG: "TAG"
|
|
@@ -481,7 +493,13 @@ var CostCategorySplitChargeMethod = {
|
|
|
481
493
|
var CostCategorySplitChargeRuleParameterType = {
|
|
482
494
|
ALLOCATION_PERCENTAGES: "ALLOCATION_PERCENTAGES"
|
|
483
495
|
};
|
|
484
|
-
var
|
|
496
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends CostExplorerServiceException {
|
|
497
|
+
static {
|
|
498
|
+
__name(this, "ServiceQuotaExceededException");
|
|
499
|
+
}
|
|
500
|
+
name = "ServiceQuotaExceededException";
|
|
501
|
+
$fault = "client";
|
|
502
|
+
Message;
|
|
485
503
|
/**
|
|
486
504
|
* @internal
|
|
487
505
|
*/
|
|
@@ -491,15 +509,17 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
491
509
|
$fault: "client",
|
|
492
510
|
...opts
|
|
493
511
|
});
|
|
494
|
-
this.name = "ServiceQuotaExceededException";
|
|
495
|
-
this.$fault = "client";
|
|
496
512
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
497
513
|
this.Message = opts.Message;
|
|
498
514
|
}
|
|
499
515
|
};
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
516
|
+
var UnknownSubscriptionException = class _UnknownSubscriptionException extends CostExplorerServiceException {
|
|
517
|
+
static {
|
|
518
|
+
__name(this, "UnknownSubscriptionException");
|
|
519
|
+
}
|
|
520
|
+
name = "UnknownSubscriptionException";
|
|
521
|
+
$fault = "client";
|
|
522
|
+
Message;
|
|
503
523
|
/**
|
|
504
524
|
* @internal
|
|
505
525
|
*/
|
|
@@ -509,15 +529,18 @@ var _UnknownSubscriptionException = class _UnknownSubscriptionException extends
|
|
|
509
529
|
$fault: "client",
|
|
510
530
|
...opts
|
|
511
531
|
});
|
|
512
|
-
this.name = "UnknownSubscriptionException";
|
|
513
|
-
this.$fault = "client";
|
|
514
532
|
Object.setPrototypeOf(this, _UnknownSubscriptionException.prototype);
|
|
515
533
|
this.Message = opts.Message;
|
|
516
534
|
}
|
|
517
535
|
};
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
536
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends CostExplorerServiceException {
|
|
537
|
+
static {
|
|
538
|
+
__name(this, "ResourceNotFoundException");
|
|
539
|
+
}
|
|
540
|
+
name = "ResourceNotFoundException";
|
|
541
|
+
$fault = "client";
|
|
542
|
+
Message;
|
|
543
|
+
ResourceName;
|
|
521
544
|
/**
|
|
522
545
|
* @internal
|
|
523
546
|
*/
|
|
@@ -527,15 +550,11 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends CostEx
|
|
|
527
550
|
$fault: "client",
|
|
528
551
|
...opts
|
|
529
552
|
});
|
|
530
|
-
this.name = "ResourceNotFoundException";
|
|
531
|
-
this.$fault = "client";
|
|
532
553
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
533
554
|
this.Message = opts.Message;
|
|
534
555
|
this.ResourceName = opts.ResourceName;
|
|
535
556
|
}
|
|
536
557
|
};
|
|
537
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
538
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
539
558
|
var CostCategoryStatusComponent = {
|
|
540
559
|
COST_EXPLORER: "COST_EXPLORER"
|
|
541
560
|
};
|
|
@@ -551,7 +570,13 @@ var NumericOperator = {
|
|
|
551
570
|
LESS_THAN: "LESS_THAN",
|
|
552
571
|
LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL"
|
|
553
572
|
};
|
|
554
|
-
var
|
|
573
|
+
var InvalidNextTokenException = class _InvalidNextTokenException extends CostExplorerServiceException {
|
|
574
|
+
static {
|
|
575
|
+
__name(this, "InvalidNextTokenException");
|
|
576
|
+
}
|
|
577
|
+
name = "InvalidNextTokenException";
|
|
578
|
+
$fault = "client";
|
|
579
|
+
Message;
|
|
555
580
|
/**
|
|
556
581
|
* @internal
|
|
557
582
|
*/
|
|
@@ -561,15 +586,17 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends CostEx
|
|
|
561
586
|
$fault: "client",
|
|
562
587
|
...opts
|
|
563
588
|
});
|
|
564
|
-
this.name = "InvalidNextTokenException";
|
|
565
|
-
this.$fault = "client";
|
|
566
589
|
Object.setPrototypeOf(this, _InvalidNextTokenException.prototype);
|
|
567
590
|
this.Message = opts.Message;
|
|
568
591
|
}
|
|
569
592
|
};
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
593
|
+
var DataUnavailableException = class _DataUnavailableException extends CostExplorerServiceException {
|
|
594
|
+
static {
|
|
595
|
+
__name(this, "DataUnavailableException");
|
|
596
|
+
}
|
|
597
|
+
name = "DataUnavailableException";
|
|
598
|
+
$fault = "client";
|
|
599
|
+
Message;
|
|
573
600
|
/**
|
|
574
601
|
* @internal
|
|
575
602
|
*/
|
|
@@ -579,20 +606,22 @@ var _DataUnavailableException = class _DataUnavailableException extends CostExpl
|
|
|
579
606
|
$fault: "client",
|
|
580
607
|
...opts
|
|
581
608
|
});
|
|
582
|
-
this.name = "DataUnavailableException";
|
|
583
|
-
this.$fault = "client";
|
|
584
609
|
Object.setPrototypeOf(this, _DataUnavailableException.prototype);
|
|
585
610
|
this.Message = opts.Message;
|
|
586
611
|
}
|
|
587
612
|
};
|
|
588
|
-
__name(_DataUnavailableException, "DataUnavailableException");
|
|
589
|
-
var DataUnavailableException = _DataUnavailableException;
|
|
590
613
|
var Granularity = {
|
|
591
614
|
DAILY: "DAILY",
|
|
592
615
|
HOURLY: "HOURLY",
|
|
593
616
|
MONTHLY: "MONTHLY"
|
|
594
617
|
};
|
|
595
|
-
var
|
|
618
|
+
var BillExpirationException = class _BillExpirationException extends CostExplorerServiceException {
|
|
619
|
+
static {
|
|
620
|
+
__name(this, "BillExpirationException");
|
|
621
|
+
}
|
|
622
|
+
name = "BillExpirationException";
|
|
623
|
+
$fault = "client";
|
|
624
|
+
Message;
|
|
596
625
|
/**
|
|
597
626
|
* @internal
|
|
598
627
|
*/
|
|
@@ -602,20 +631,22 @@ var _BillExpirationException = class _BillExpirationException extends CostExplor
|
|
|
602
631
|
$fault: "client",
|
|
603
632
|
...opts
|
|
604
633
|
});
|
|
605
|
-
this.name = "BillExpirationException";
|
|
606
|
-
this.$fault = "client";
|
|
607
634
|
Object.setPrototypeOf(this, _BillExpirationException.prototype);
|
|
608
635
|
this.Message = opts.Message;
|
|
609
636
|
}
|
|
610
637
|
};
|
|
611
|
-
__name(_BillExpirationException, "BillExpirationException");
|
|
612
|
-
var BillExpirationException = _BillExpirationException;
|
|
613
638
|
var GroupDefinitionType = {
|
|
614
639
|
COST_CATEGORY: "COST_CATEGORY",
|
|
615
640
|
DIMENSION: "DIMENSION",
|
|
616
641
|
TAG: "TAG"
|
|
617
642
|
};
|
|
618
|
-
var
|
|
643
|
+
var RequestChangedException = class _RequestChangedException extends CostExplorerServiceException {
|
|
644
|
+
static {
|
|
645
|
+
__name(this, "RequestChangedException");
|
|
646
|
+
}
|
|
647
|
+
name = "RequestChangedException";
|
|
648
|
+
$fault = "client";
|
|
649
|
+
Message;
|
|
619
650
|
/**
|
|
620
651
|
* @internal
|
|
621
652
|
*/
|
|
@@ -625,14 +656,10 @@ var _RequestChangedException = class _RequestChangedException extends CostExplor
|
|
|
625
656
|
$fault: "client",
|
|
626
657
|
...opts
|
|
627
658
|
});
|
|
628
|
-
this.name = "RequestChangedException";
|
|
629
|
-
this.$fault = "client";
|
|
630
659
|
Object.setPrototypeOf(this, _RequestChangedException.prototype);
|
|
631
660
|
this.Message = opts.Message;
|
|
632
661
|
}
|
|
633
662
|
};
|
|
634
|
-
__name(_RequestChangedException, "RequestChangedException");
|
|
635
|
-
var RequestChangedException = _RequestChangedException;
|
|
636
663
|
var SortOrder = {
|
|
637
664
|
ASCENDING: "ASCENDING",
|
|
638
665
|
DESCENDING: "DESCENDING"
|
|
@@ -699,7 +726,13 @@ var SavingsPlansDataType = {
|
|
|
699
726
|
SAVINGS: "SAVINGS",
|
|
700
727
|
UTILIZATION: "UTILIZATION"
|
|
701
728
|
};
|
|
702
|
-
var
|
|
729
|
+
var UnresolvableUsageUnitException = class _UnresolvableUsageUnitException extends CostExplorerServiceException {
|
|
730
|
+
static {
|
|
731
|
+
__name(this, "UnresolvableUsageUnitException");
|
|
732
|
+
}
|
|
733
|
+
name = "UnresolvableUsageUnitException";
|
|
734
|
+
$fault = "client";
|
|
735
|
+
Message;
|
|
703
736
|
/**
|
|
704
737
|
* @internal
|
|
705
738
|
*/
|
|
@@ -709,14 +742,10 @@ var _UnresolvableUsageUnitException = class _UnresolvableUsageUnitException exte
|
|
|
709
742
|
$fault: "client",
|
|
710
743
|
...opts
|
|
711
744
|
});
|
|
712
|
-
this.name = "UnresolvableUsageUnitException";
|
|
713
|
-
this.$fault = "client";
|
|
714
745
|
Object.setPrototypeOf(this, _UnresolvableUsageUnitException.prototype);
|
|
715
746
|
this.Message = opts.Message;
|
|
716
747
|
}
|
|
717
748
|
};
|
|
718
|
-
__name(_UnresolvableUsageUnitException, "UnresolvableUsageUnitException");
|
|
719
|
-
var UnresolvableUsageUnitException = _UnresolvableUsageUnitException;
|
|
720
749
|
var CostAllocationTagBackfillStatus = {
|
|
721
750
|
FAILED: "FAILED",
|
|
722
751
|
PROCESSING: "PROCESSING",
|
|
@@ -735,7 +764,13 @@ var GenerationStatus = {
|
|
|
735
764
|
PROCESSING: "PROCESSING",
|
|
736
765
|
SUCCEEDED: "SUCCEEDED"
|
|
737
766
|
};
|
|
738
|
-
var
|
|
767
|
+
var GenerationExistsException = class _GenerationExistsException extends CostExplorerServiceException {
|
|
768
|
+
static {
|
|
769
|
+
__name(this, "GenerationExistsException");
|
|
770
|
+
}
|
|
771
|
+
name = "GenerationExistsException";
|
|
772
|
+
$fault = "client";
|
|
773
|
+
Message;
|
|
739
774
|
/**
|
|
740
775
|
* @internal
|
|
741
776
|
*/
|
|
@@ -745,15 +780,17 @@ var _GenerationExistsException = class _GenerationExistsException extends CostEx
|
|
|
745
780
|
$fault: "client",
|
|
746
781
|
...opts
|
|
747
782
|
});
|
|
748
|
-
this.name = "GenerationExistsException";
|
|
749
|
-
this.$fault = "client";
|
|
750
783
|
Object.setPrototypeOf(this, _GenerationExistsException.prototype);
|
|
751
784
|
this.Message = opts.Message;
|
|
752
785
|
}
|
|
753
786
|
};
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
787
|
+
var BackfillLimitExceededException = class _BackfillLimitExceededException extends CostExplorerServiceException {
|
|
788
|
+
static {
|
|
789
|
+
__name(this, "BackfillLimitExceededException");
|
|
790
|
+
}
|
|
791
|
+
name = "BackfillLimitExceededException";
|
|
792
|
+
$fault = "client";
|
|
793
|
+
Message;
|
|
757
794
|
/**
|
|
758
795
|
* @internal
|
|
759
796
|
*/
|
|
@@ -763,15 +800,18 @@ var _BackfillLimitExceededException = class _BackfillLimitExceededException exte
|
|
|
763
800
|
$fault: "client",
|
|
764
801
|
...opts
|
|
765
802
|
});
|
|
766
|
-
this.name = "BackfillLimitExceededException";
|
|
767
|
-
this.$fault = "client";
|
|
768
803
|
Object.setPrototypeOf(this, _BackfillLimitExceededException.prototype);
|
|
769
804
|
this.Message = opts.Message;
|
|
770
805
|
}
|
|
771
806
|
};
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
807
|
+
var TooManyTagsException = class _TooManyTagsException extends CostExplorerServiceException {
|
|
808
|
+
static {
|
|
809
|
+
__name(this, "TooManyTagsException");
|
|
810
|
+
}
|
|
811
|
+
name = "TooManyTagsException";
|
|
812
|
+
$fault = "client";
|
|
813
|
+
Message;
|
|
814
|
+
ResourceName;
|
|
775
815
|
/**
|
|
776
816
|
* @internal
|
|
777
817
|
*/
|
|
@@ -781,15 +821,11 @@ var _TooManyTagsException = class _TooManyTagsException extends CostExplorerServ
|
|
|
781
821
|
$fault: "client",
|
|
782
822
|
...opts
|
|
783
823
|
});
|
|
784
|
-
this.name = "TooManyTagsException";
|
|
785
|
-
this.$fault = "client";
|
|
786
824
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
787
825
|
this.Message = opts.Message;
|
|
788
826
|
this.ResourceName = opts.ResourceName;
|
|
789
827
|
}
|
|
790
828
|
};
|
|
791
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
792
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
793
829
|
|
|
794
830
|
// src/protocols/Aws_json1_1.ts
|
|
795
831
|
var se_CreateAnomalyMonitorCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -2388,617 +2424,661 @@ function sharedHeaders(operation) {
|
|
|
2388
2424
|
__name(sharedHeaders, "sharedHeaders");
|
|
2389
2425
|
|
|
2390
2426
|
// src/commands/CreateAnomalyMonitorCommand.ts
|
|
2391
|
-
var
|
|
2427
|
+
var CreateAnomalyMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2392
2428
|
return [
|
|
2393
2429
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2394
2430
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2395
2431
|
];
|
|
2396
2432
|
}).s("AWSInsightsIndexService", "CreateAnomalyMonitor", {}).n("CostExplorerClient", "CreateAnomalyMonitorCommand").f(void 0, void 0).ser(se_CreateAnomalyMonitorCommand).de(de_CreateAnomalyMonitorCommand).build() {
|
|
2433
|
+
static {
|
|
2434
|
+
__name(this, "CreateAnomalyMonitorCommand");
|
|
2435
|
+
}
|
|
2397
2436
|
};
|
|
2398
|
-
__name(_CreateAnomalyMonitorCommand, "CreateAnomalyMonitorCommand");
|
|
2399
|
-
var CreateAnomalyMonitorCommand = _CreateAnomalyMonitorCommand;
|
|
2400
2437
|
|
|
2401
2438
|
// src/commands/CreateAnomalySubscriptionCommand.ts
|
|
2402
2439
|
|
|
2403
2440
|
|
|
2404
2441
|
|
|
2405
|
-
var
|
|
2442
|
+
var CreateAnomalySubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2406
2443
|
return [
|
|
2407
2444
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2408
2445
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2409
2446
|
];
|
|
2410
2447
|
}).s("AWSInsightsIndexService", "CreateAnomalySubscription", {}).n("CostExplorerClient", "CreateAnomalySubscriptionCommand").f(void 0, void 0).ser(se_CreateAnomalySubscriptionCommand).de(de_CreateAnomalySubscriptionCommand).build() {
|
|
2448
|
+
static {
|
|
2449
|
+
__name(this, "CreateAnomalySubscriptionCommand");
|
|
2450
|
+
}
|
|
2411
2451
|
};
|
|
2412
|
-
__name(_CreateAnomalySubscriptionCommand, "CreateAnomalySubscriptionCommand");
|
|
2413
|
-
var CreateAnomalySubscriptionCommand = _CreateAnomalySubscriptionCommand;
|
|
2414
2452
|
|
|
2415
2453
|
// src/commands/CreateCostCategoryDefinitionCommand.ts
|
|
2416
2454
|
|
|
2417
2455
|
|
|
2418
2456
|
|
|
2419
|
-
var
|
|
2457
|
+
var CreateCostCategoryDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2420
2458
|
return [
|
|
2421
2459
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2422
2460
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2423
2461
|
];
|
|
2424
2462
|
}).s("AWSInsightsIndexService", "CreateCostCategoryDefinition", {}).n("CostExplorerClient", "CreateCostCategoryDefinitionCommand").f(void 0, void 0).ser(se_CreateCostCategoryDefinitionCommand).de(de_CreateCostCategoryDefinitionCommand).build() {
|
|
2463
|
+
static {
|
|
2464
|
+
__name(this, "CreateCostCategoryDefinitionCommand");
|
|
2465
|
+
}
|
|
2425
2466
|
};
|
|
2426
|
-
__name(_CreateCostCategoryDefinitionCommand, "CreateCostCategoryDefinitionCommand");
|
|
2427
|
-
var CreateCostCategoryDefinitionCommand = _CreateCostCategoryDefinitionCommand;
|
|
2428
2467
|
|
|
2429
2468
|
// src/commands/DeleteAnomalyMonitorCommand.ts
|
|
2430
2469
|
|
|
2431
2470
|
|
|
2432
2471
|
|
|
2433
|
-
var
|
|
2472
|
+
var DeleteAnomalyMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2434
2473
|
return [
|
|
2435
2474
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2436
2475
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2437
2476
|
];
|
|
2438
2477
|
}).s("AWSInsightsIndexService", "DeleteAnomalyMonitor", {}).n("CostExplorerClient", "DeleteAnomalyMonitorCommand").f(void 0, void 0).ser(se_DeleteAnomalyMonitorCommand).de(de_DeleteAnomalyMonitorCommand).build() {
|
|
2478
|
+
static {
|
|
2479
|
+
__name(this, "DeleteAnomalyMonitorCommand");
|
|
2480
|
+
}
|
|
2439
2481
|
};
|
|
2440
|
-
__name(_DeleteAnomalyMonitorCommand, "DeleteAnomalyMonitorCommand");
|
|
2441
|
-
var DeleteAnomalyMonitorCommand = _DeleteAnomalyMonitorCommand;
|
|
2442
2482
|
|
|
2443
2483
|
// src/commands/DeleteAnomalySubscriptionCommand.ts
|
|
2444
2484
|
|
|
2445
2485
|
|
|
2446
2486
|
|
|
2447
|
-
var
|
|
2487
|
+
var DeleteAnomalySubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2448
2488
|
return [
|
|
2449
2489
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2450
2490
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2451
2491
|
];
|
|
2452
2492
|
}).s("AWSInsightsIndexService", "DeleteAnomalySubscription", {}).n("CostExplorerClient", "DeleteAnomalySubscriptionCommand").f(void 0, void 0).ser(se_DeleteAnomalySubscriptionCommand).de(de_DeleteAnomalySubscriptionCommand).build() {
|
|
2493
|
+
static {
|
|
2494
|
+
__name(this, "DeleteAnomalySubscriptionCommand");
|
|
2495
|
+
}
|
|
2453
2496
|
};
|
|
2454
|
-
__name(_DeleteAnomalySubscriptionCommand, "DeleteAnomalySubscriptionCommand");
|
|
2455
|
-
var DeleteAnomalySubscriptionCommand = _DeleteAnomalySubscriptionCommand;
|
|
2456
2497
|
|
|
2457
2498
|
// src/commands/DeleteCostCategoryDefinitionCommand.ts
|
|
2458
2499
|
|
|
2459
2500
|
|
|
2460
2501
|
|
|
2461
|
-
var
|
|
2502
|
+
var DeleteCostCategoryDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2462
2503
|
return [
|
|
2463
2504
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2464
2505
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2465
2506
|
];
|
|
2466
2507
|
}).s("AWSInsightsIndexService", "DeleteCostCategoryDefinition", {}).n("CostExplorerClient", "DeleteCostCategoryDefinitionCommand").f(void 0, void 0).ser(se_DeleteCostCategoryDefinitionCommand).de(de_DeleteCostCategoryDefinitionCommand).build() {
|
|
2508
|
+
static {
|
|
2509
|
+
__name(this, "DeleteCostCategoryDefinitionCommand");
|
|
2510
|
+
}
|
|
2467
2511
|
};
|
|
2468
|
-
__name(_DeleteCostCategoryDefinitionCommand, "DeleteCostCategoryDefinitionCommand");
|
|
2469
|
-
var DeleteCostCategoryDefinitionCommand = _DeleteCostCategoryDefinitionCommand;
|
|
2470
2512
|
|
|
2471
2513
|
// src/commands/DescribeCostCategoryDefinitionCommand.ts
|
|
2472
2514
|
|
|
2473
2515
|
|
|
2474
2516
|
|
|
2475
|
-
var
|
|
2517
|
+
var DescribeCostCategoryDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2476
2518
|
return [
|
|
2477
2519
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2478
2520
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2479
2521
|
];
|
|
2480
2522
|
}).s("AWSInsightsIndexService", "DescribeCostCategoryDefinition", {}).n("CostExplorerClient", "DescribeCostCategoryDefinitionCommand").f(void 0, void 0).ser(se_DescribeCostCategoryDefinitionCommand).de(de_DescribeCostCategoryDefinitionCommand).build() {
|
|
2523
|
+
static {
|
|
2524
|
+
__name(this, "DescribeCostCategoryDefinitionCommand");
|
|
2525
|
+
}
|
|
2481
2526
|
};
|
|
2482
|
-
__name(_DescribeCostCategoryDefinitionCommand, "DescribeCostCategoryDefinitionCommand");
|
|
2483
|
-
var DescribeCostCategoryDefinitionCommand = _DescribeCostCategoryDefinitionCommand;
|
|
2484
2527
|
|
|
2485
2528
|
// src/commands/GetAnomaliesCommand.ts
|
|
2486
2529
|
|
|
2487
2530
|
|
|
2488
2531
|
|
|
2489
|
-
var
|
|
2532
|
+
var GetAnomaliesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2490
2533
|
return [
|
|
2491
2534
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2492
2535
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2493
2536
|
];
|
|
2494
2537
|
}).s("AWSInsightsIndexService", "GetAnomalies", {}).n("CostExplorerClient", "GetAnomaliesCommand").f(void 0, void 0).ser(se_GetAnomaliesCommand).de(de_GetAnomaliesCommand).build() {
|
|
2538
|
+
static {
|
|
2539
|
+
__name(this, "GetAnomaliesCommand");
|
|
2540
|
+
}
|
|
2495
2541
|
};
|
|
2496
|
-
__name(_GetAnomaliesCommand, "GetAnomaliesCommand");
|
|
2497
|
-
var GetAnomaliesCommand = _GetAnomaliesCommand;
|
|
2498
2542
|
|
|
2499
2543
|
// src/commands/GetAnomalyMonitorsCommand.ts
|
|
2500
2544
|
|
|
2501
2545
|
|
|
2502
2546
|
|
|
2503
|
-
var
|
|
2547
|
+
var GetAnomalyMonitorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2504
2548
|
return [
|
|
2505
2549
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2506
2550
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2507
2551
|
];
|
|
2508
2552
|
}).s("AWSInsightsIndexService", "GetAnomalyMonitors", {}).n("CostExplorerClient", "GetAnomalyMonitorsCommand").f(void 0, void 0).ser(se_GetAnomalyMonitorsCommand).de(de_GetAnomalyMonitorsCommand).build() {
|
|
2553
|
+
static {
|
|
2554
|
+
__name(this, "GetAnomalyMonitorsCommand");
|
|
2555
|
+
}
|
|
2509
2556
|
};
|
|
2510
|
-
__name(_GetAnomalyMonitorsCommand, "GetAnomalyMonitorsCommand");
|
|
2511
|
-
var GetAnomalyMonitorsCommand = _GetAnomalyMonitorsCommand;
|
|
2512
2557
|
|
|
2513
2558
|
// src/commands/GetAnomalySubscriptionsCommand.ts
|
|
2514
2559
|
|
|
2515
2560
|
|
|
2516
2561
|
|
|
2517
|
-
var
|
|
2562
|
+
var GetAnomalySubscriptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2518
2563
|
return [
|
|
2519
2564
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2520
2565
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2521
2566
|
];
|
|
2522
2567
|
}).s("AWSInsightsIndexService", "GetAnomalySubscriptions", {}).n("CostExplorerClient", "GetAnomalySubscriptionsCommand").f(void 0, void 0).ser(se_GetAnomalySubscriptionsCommand).de(de_GetAnomalySubscriptionsCommand).build() {
|
|
2568
|
+
static {
|
|
2569
|
+
__name(this, "GetAnomalySubscriptionsCommand");
|
|
2570
|
+
}
|
|
2523
2571
|
};
|
|
2524
|
-
__name(_GetAnomalySubscriptionsCommand, "GetAnomalySubscriptionsCommand");
|
|
2525
|
-
var GetAnomalySubscriptionsCommand = _GetAnomalySubscriptionsCommand;
|
|
2526
2572
|
|
|
2527
2573
|
// src/commands/GetApproximateUsageRecordsCommand.ts
|
|
2528
2574
|
|
|
2529
2575
|
|
|
2530
2576
|
|
|
2531
|
-
var
|
|
2577
|
+
var GetApproximateUsageRecordsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2532
2578
|
return [
|
|
2533
2579
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2534
2580
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2535
2581
|
];
|
|
2536
2582
|
}).s("AWSInsightsIndexService", "GetApproximateUsageRecords", {}).n("CostExplorerClient", "GetApproximateUsageRecordsCommand").f(void 0, void 0).ser(se_GetApproximateUsageRecordsCommand).de(de_GetApproximateUsageRecordsCommand).build() {
|
|
2583
|
+
static {
|
|
2584
|
+
__name(this, "GetApproximateUsageRecordsCommand");
|
|
2585
|
+
}
|
|
2537
2586
|
};
|
|
2538
|
-
__name(_GetApproximateUsageRecordsCommand, "GetApproximateUsageRecordsCommand");
|
|
2539
|
-
var GetApproximateUsageRecordsCommand = _GetApproximateUsageRecordsCommand;
|
|
2540
2587
|
|
|
2541
2588
|
// src/commands/GetCommitmentPurchaseAnalysisCommand.ts
|
|
2542
2589
|
|
|
2543
2590
|
|
|
2544
2591
|
|
|
2545
|
-
var
|
|
2592
|
+
var GetCommitmentPurchaseAnalysisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2546
2593
|
return [
|
|
2547
2594
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2548
2595
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2549
2596
|
];
|
|
2550
2597
|
}).s("AWSInsightsIndexService", "GetCommitmentPurchaseAnalysis", {}).n("CostExplorerClient", "GetCommitmentPurchaseAnalysisCommand").f(void 0, void 0).ser(se_GetCommitmentPurchaseAnalysisCommand).de(de_GetCommitmentPurchaseAnalysisCommand).build() {
|
|
2598
|
+
static {
|
|
2599
|
+
__name(this, "GetCommitmentPurchaseAnalysisCommand");
|
|
2600
|
+
}
|
|
2551
2601
|
};
|
|
2552
|
-
__name(_GetCommitmentPurchaseAnalysisCommand, "GetCommitmentPurchaseAnalysisCommand");
|
|
2553
|
-
var GetCommitmentPurchaseAnalysisCommand = _GetCommitmentPurchaseAnalysisCommand;
|
|
2554
2602
|
|
|
2555
2603
|
// src/commands/GetCostAndUsageCommand.ts
|
|
2556
2604
|
|
|
2557
2605
|
|
|
2558
2606
|
|
|
2559
|
-
var
|
|
2607
|
+
var GetCostAndUsageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2560
2608
|
return [
|
|
2561
2609
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2562
2610
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2563
2611
|
];
|
|
2564
2612
|
}).s("AWSInsightsIndexService", "GetCostAndUsage", {}).n("CostExplorerClient", "GetCostAndUsageCommand").f(void 0, void 0).ser(se_GetCostAndUsageCommand).de(de_GetCostAndUsageCommand).build() {
|
|
2613
|
+
static {
|
|
2614
|
+
__name(this, "GetCostAndUsageCommand");
|
|
2615
|
+
}
|
|
2565
2616
|
};
|
|
2566
|
-
__name(_GetCostAndUsageCommand, "GetCostAndUsageCommand");
|
|
2567
|
-
var GetCostAndUsageCommand = _GetCostAndUsageCommand;
|
|
2568
2617
|
|
|
2569
2618
|
// src/commands/GetCostAndUsageWithResourcesCommand.ts
|
|
2570
2619
|
|
|
2571
2620
|
|
|
2572
2621
|
|
|
2573
|
-
var
|
|
2622
|
+
var GetCostAndUsageWithResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2574
2623
|
return [
|
|
2575
2624
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2576
2625
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2577
2626
|
];
|
|
2578
2627
|
}).s("AWSInsightsIndexService", "GetCostAndUsageWithResources", {}).n("CostExplorerClient", "GetCostAndUsageWithResourcesCommand").f(void 0, void 0).ser(se_GetCostAndUsageWithResourcesCommand).de(de_GetCostAndUsageWithResourcesCommand).build() {
|
|
2628
|
+
static {
|
|
2629
|
+
__name(this, "GetCostAndUsageWithResourcesCommand");
|
|
2630
|
+
}
|
|
2579
2631
|
};
|
|
2580
|
-
__name(_GetCostAndUsageWithResourcesCommand, "GetCostAndUsageWithResourcesCommand");
|
|
2581
|
-
var GetCostAndUsageWithResourcesCommand = _GetCostAndUsageWithResourcesCommand;
|
|
2582
2632
|
|
|
2583
2633
|
// src/commands/GetCostCategoriesCommand.ts
|
|
2584
2634
|
|
|
2585
2635
|
|
|
2586
2636
|
|
|
2587
|
-
var
|
|
2637
|
+
var GetCostCategoriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2588
2638
|
return [
|
|
2589
2639
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2590
2640
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2591
2641
|
];
|
|
2592
2642
|
}).s("AWSInsightsIndexService", "GetCostCategories", {}).n("CostExplorerClient", "GetCostCategoriesCommand").f(void 0, void 0).ser(se_GetCostCategoriesCommand).de(de_GetCostCategoriesCommand).build() {
|
|
2643
|
+
static {
|
|
2644
|
+
__name(this, "GetCostCategoriesCommand");
|
|
2645
|
+
}
|
|
2593
2646
|
};
|
|
2594
|
-
__name(_GetCostCategoriesCommand, "GetCostCategoriesCommand");
|
|
2595
|
-
var GetCostCategoriesCommand = _GetCostCategoriesCommand;
|
|
2596
2647
|
|
|
2597
2648
|
// src/commands/GetCostForecastCommand.ts
|
|
2598
2649
|
|
|
2599
2650
|
|
|
2600
2651
|
|
|
2601
|
-
var
|
|
2652
|
+
var GetCostForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2602
2653
|
return [
|
|
2603
2654
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2604
2655
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2605
2656
|
];
|
|
2606
2657
|
}).s("AWSInsightsIndexService", "GetCostForecast", {}).n("CostExplorerClient", "GetCostForecastCommand").f(void 0, void 0).ser(se_GetCostForecastCommand).de(de_GetCostForecastCommand).build() {
|
|
2658
|
+
static {
|
|
2659
|
+
__name(this, "GetCostForecastCommand");
|
|
2660
|
+
}
|
|
2607
2661
|
};
|
|
2608
|
-
__name(_GetCostForecastCommand, "GetCostForecastCommand");
|
|
2609
|
-
var GetCostForecastCommand = _GetCostForecastCommand;
|
|
2610
2662
|
|
|
2611
2663
|
// src/commands/GetDimensionValuesCommand.ts
|
|
2612
2664
|
|
|
2613
2665
|
|
|
2614
2666
|
|
|
2615
|
-
var
|
|
2667
|
+
var GetDimensionValuesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2616
2668
|
return [
|
|
2617
2669
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2618
2670
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2619
2671
|
];
|
|
2620
2672
|
}).s("AWSInsightsIndexService", "GetDimensionValues", {}).n("CostExplorerClient", "GetDimensionValuesCommand").f(void 0, void 0).ser(se_GetDimensionValuesCommand).de(de_GetDimensionValuesCommand).build() {
|
|
2673
|
+
static {
|
|
2674
|
+
__name(this, "GetDimensionValuesCommand");
|
|
2675
|
+
}
|
|
2621
2676
|
};
|
|
2622
|
-
__name(_GetDimensionValuesCommand, "GetDimensionValuesCommand");
|
|
2623
|
-
var GetDimensionValuesCommand = _GetDimensionValuesCommand;
|
|
2624
2677
|
|
|
2625
2678
|
// src/commands/GetReservationCoverageCommand.ts
|
|
2626
2679
|
|
|
2627
2680
|
|
|
2628
2681
|
|
|
2629
|
-
var
|
|
2682
|
+
var GetReservationCoverageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2630
2683
|
return [
|
|
2631
2684
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2632
2685
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2633
2686
|
];
|
|
2634
2687
|
}).s("AWSInsightsIndexService", "GetReservationCoverage", {}).n("CostExplorerClient", "GetReservationCoverageCommand").f(void 0, void 0).ser(se_GetReservationCoverageCommand).de(de_GetReservationCoverageCommand).build() {
|
|
2688
|
+
static {
|
|
2689
|
+
__name(this, "GetReservationCoverageCommand");
|
|
2690
|
+
}
|
|
2635
2691
|
};
|
|
2636
|
-
__name(_GetReservationCoverageCommand, "GetReservationCoverageCommand");
|
|
2637
|
-
var GetReservationCoverageCommand = _GetReservationCoverageCommand;
|
|
2638
2692
|
|
|
2639
2693
|
// src/commands/GetReservationPurchaseRecommendationCommand.ts
|
|
2640
2694
|
|
|
2641
2695
|
|
|
2642
2696
|
|
|
2643
|
-
var
|
|
2697
|
+
var GetReservationPurchaseRecommendationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2644
2698
|
return [
|
|
2645
2699
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2646
2700
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2647
2701
|
];
|
|
2648
2702
|
}).s("AWSInsightsIndexService", "GetReservationPurchaseRecommendation", {}).n("CostExplorerClient", "GetReservationPurchaseRecommendationCommand").f(void 0, void 0).ser(se_GetReservationPurchaseRecommendationCommand).de(de_GetReservationPurchaseRecommendationCommand).build() {
|
|
2703
|
+
static {
|
|
2704
|
+
__name(this, "GetReservationPurchaseRecommendationCommand");
|
|
2705
|
+
}
|
|
2649
2706
|
};
|
|
2650
|
-
__name(_GetReservationPurchaseRecommendationCommand, "GetReservationPurchaseRecommendationCommand");
|
|
2651
|
-
var GetReservationPurchaseRecommendationCommand = _GetReservationPurchaseRecommendationCommand;
|
|
2652
2707
|
|
|
2653
2708
|
// src/commands/GetReservationUtilizationCommand.ts
|
|
2654
2709
|
|
|
2655
2710
|
|
|
2656
2711
|
|
|
2657
|
-
var
|
|
2712
|
+
var GetReservationUtilizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2658
2713
|
return [
|
|
2659
2714
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2660
2715
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2661
2716
|
];
|
|
2662
2717
|
}).s("AWSInsightsIndexService", "GetReservationUtilization", {}).n("CostExplorerClient", "GetReservationUtilizationCommand").f(void 0, void 0).ser(se_GetReservationUtilizationCommand).de(de_GetReservationUtilizationCommand).build() {
|
|
2718
|
+
static {
|
|
2719
|
+
__name(this, "GetReservationUtilizationCommand");
|
|
2720
|
+
}
|
|
2663
2721
|
};
|
|
2664
|
-
__name(_GetReservationUtilizationCommand, "GetReservationUtilizationCommand");
|
|
2665
|
-
var GetReservationUtilizationCommand = _GetReservationUtilizationCommand;
|
|
2666
2722
|
|
|
2667
2723
|
// src/commands/GetRightsizingRecommendationCommand.ts
|
|
2668
2724
|
|
|
2669
2725
|
|
|
2670
2726
|
|
|
2671
|
-
var
|
|
2727
|
+
var GetRightsizingRecommendationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2672
2728
|
return [
|
|
2673
2729
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2674
2730
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2675
2731
|
];
|
|
2676
2732
|
}).s("AWSInsightsIndexService", "GetRightsizingRecommendation", {}).n("CostExplorerClient", "GetRightsizingRecommendationCommand").f(void 0, void 0).ser(se_GetRightsizingRecommendationCommand).de(de_GetRightsizingRecommendationCommand).build() {
|
|
2733
|
+
static {
|
|
2734
|
+
__name(this, "GetRightsizingRecommendationCommand");
|
|
2735
|
+
}
|
|
2677
2736
|
};
|
|
2678
|
-
__name(_GetRightsizingRecommendationCommand, "GetRightsizingRecommendationCommand");
|
|
2679
|
-
var GetRightsizingRecommendationCommand = _GetRightsizingRecommendationCommand;
|
|
2680
2737
|
|
|
2681
2738
|
// src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts
|
|
2682
2739
|
|
|
2683
2740
|
|
|
2684
2741
|
|
|
2685
|
-
var
|
|
2742
|
+
var GetSavingsPlanPurchaseRecommendationDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2686
2743
|
return [
|
|
2687
2744
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2688
2745
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2689
2746
|
];
|
|
2690
2747
|
}).s("AWSInsightsIndexService", "GetSavingsPlanPurchaseRecommendationDetails", {}).n("CostExplorerClient", "GetSavingsPlanPurchaseRecommendationDetailsCommand").f(void 0, void 0).ser(se_GetSavingsPlanPurchaseRecommendationDetailsCommand).de(de_GetSavingsPlanPurchaseRecommendationDetailsCommand).build() {
|
|
2748
|
+
static {
|
|
2749
|
+
__name(this, "GetSavingsPlanPurchaseRecommendationDetailsCommand");
|
|
2750
|
+
}
|
|
2691
2751
|
};
|
|
2692
|
-
__name(_GetSavingsPlanPurchaseRecommendationDetailsCommand, "GetSavingsPlanPurchaseRecommendationDetailsCommand");
|
|
2693
|
-
var GetSavingsPlanPurchaseRecommendationDetailsCommand = _GetSavingsPlanPurchaseRecommendationDetailsCommand;
|
|
2694
2752
|
|
|
2695
2753
|
// src/commands/GetSavingsPlansCoverageCommand.ts
|
|
2696
2754
|
|
|
2697
2755
|
|
|
2698
2756
|
|
|
2699
|
-
var
|
|
2757
|
+
var GetSavingsPlansCoverageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2700
2758
|
return [
|
|
2701
2759
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2702
2760
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2703
2761
|
];
|
|
2704
2762
|
}).s("AWSInsightsIndexService", "GetSavingsPlansCoverage", {}).n("CostExplorerClient", "GetSavingsPlansCoverageCommand").f(void 0, void 0).ser(se_GetSavingsPlansCoverageCommand).de(de_GetSavingsPlansCoverageCommand).build() {
|
|
2763
|
+
static {
|
|
2764
|
+
__name(this, "GetSavingsPlansCoverageCommand");
|
|
2765
|
+
}
|
|
2705
2766
|
};
|
|
2706
|
-
__name(_GetSavingsPlansCoverageCommand, "GetSavingsPlansCoverageCommand");
|
|
2707
|
-
var GetSavingsPlansCoverageCommand = _GetSavingsPlansCoverageCommand;
|
|
2708
2767
|
|
|
2709
2768
|
// src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts
|
|
2710
2769
|
|
|
2711
2770
|
|
|
2712
2771
|
|
|
2713
|
-
var
|
|
2772
|
+
var GetSavingsPlansPurchaseRecommendationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2714
2773
|
return [
|
|
2715
2774
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2716
2775
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2717
2776
|
];
|
|
2718
2777
|
}).s("AWSInsightsIndexService", "GetSavingsPlansPurchaseRecommendation", {}).n("CostExplorerClient", "GetSavingsPlansPurchaseRecommendationCommand").f(void 0, void 0).ser(se_GetSavingsPlansPurchaseRecommendationCommand).de(de_GetSavingsPlansPurchaseRecommendationCommand).build() {
|
|
2778
|
+
static {
|
|
2779
|
+
__name(this, "GetSavingsPlansPurchaseRecommendationCommand");
|
|
2780
|
+
}
|
|
2719
2781
|
};
|
|
2720
|
-
__name(_GetSavingsPlansPurchaseRecommendationCommand, "GetSavingsPlansPurchaseRecommendationCommand");
|
|
2721
|
-
var GetSavingsPlansPurchaseRecommendationCommand = _GetSavingsPlansPurchaseRecommendationCommand;
|
|
2722
2782
|
|
|
2723
2783
|
// src/commands/GetSavingsPlansUtilizationCommand.ts
|
|
2724
2784
|
|
|
2725
2785
|
|
|
2726
2786
|
|
|
2727
|
-
var
|
|
2787
|
+
var GetSavingsPlansUtilizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2728
2788
|
return [
|
|
2729
2789
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2730
2790
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2731
2791
|
];
|
|
2732
2792
|
}).s("AWSInsightsIndexService", "GetSavingsPlansUtilization", {}).n("CostExplorerClient", "GetSavingsPlansUtilizationCommand").f(void 0, void 0).ser(se_GetSavingsPlansUtilizationCommand).de(de_GetSavingsPlansUtilizationCommand).build() {
|
|
2793
|
+
static {
|
|
2794
|
+
__name(this, "GetSavingsPlansUtilizationCommand");
|
|
2795
|
+
}
|
|
2733
2796
|
};
|
|
2734
|
-
__name(_GetSavingsPlansUtilizationCommand, "GetSavingsPlansUtilizationCommand");
|
|
2735
|
-
var GetSavingsPlansUtilizationCommand = _GetSavingsPlansUtilizationCommand;
|
|
2736
2797
|
|
|
2737
2798
|
// src/commands/GetSavingsPlansUtilizationDetailsCommand.ts
|
|
2738
2799
|
|
|
2739
2800
|
|
|
2740
2801
|
|
|
2741
|
-
var
|
|
2802
|
+
var GetSavingsPlansUtilizationDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2742
2803
|
return [
|
|
2743
2804
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2744
2805
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2745
2806
|
];
|
|
2746
2807
|
}).s("AWSInsightsIndexService", "GetSavingsPlansUtilizationDetails", {}).n("CostExplorerClient", "GetSavingsPlansUtilizationDetailsCommand").f(void 0, void 0).ser(se_GetSavingsPlansUtilizationDetailsCommand).de(de_GetSavingsPlansUtilizationDetailsCommand).build() {
|
|
2808
|
+
static {
|
|
2809
|
+
__name(this, "GetSavingsPlansUtilizationDetailsCommand");
|
|
2810
|
+
}
|
|
2747
2811
|
};
|
|
2748
|
-
__name(_GetSavingsPlansUtilizationDetailsCommand, "GetSavingsPlansUtilizationDetailsCommand");
|
|
2749
|
-
var GetSavingsPlansUtilizationDetailsCommand = _GetSavingsPlansUtilizationDetailsCommand;
|
|
2750
2812
|
|
|
2751
2813
|
// src/commands/GetTagsCommand.ts
|
|
2752
2814
|
|
|
2753
2815
|
|
|
2754
2816
|
|
|
2755
|
-
var
|
|
2817
|
+
var GetTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2756
2818
|
return [
|
|
2757
2819
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2758
2820
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2759
2821
|
];
|
|
2760
2822
|
}).s("AWSInsightsIndexService", "GetTags", {}).n("CostExplorerClient", "GetTagsCommand").f(void 0, void 0).ser(se_GetTagsCommand).de(de_GetTagsCommand).build() {
|
|
2823
|
+
static {
|
|
2824
|
+
__name(this, "GetTagsCommand");
|
|
2825
|
+
}
|
|
2761
2826
|
};
|
|
2762
|
-
__name(_GetTagsCommand, "GetTagsCommand");
|
|
2763
|
-
var GetTagsCommand = _GetTagsCommand;
|
|
2764
2827
|
|
|
2765
2828
|
// src/commands/GetUsageForecastCommand.ts
|
|
2766
2829
|
|
|
2767
2830
|
|
|
2768
2831
|
|
|
2769
|
-
var
|
|
2832
|
+
var GetUsageForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2770
2833
|
return [
|
|
2771
2834
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2772
2835
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2773
2836
|
];
|
|
2774
2837
|
}).s("AWSInsightsIndexService", "GetUsageForecast", {}).n("CostExplorerClient", "GetUsageForecastCommand").f(void 0, void 0).ser(se_GetUsageForecastCommand).de(de_GetUsageForecastCommand).build() {
|
|
2838
|
+
static {
|
|
2839
|
+
__name(this, "GetUsageForecastCommand");
|
|
2840
|
+
}
|
|
2775
2841
|
};
|
|
2776
|
-
__name(_GetUsageForecastCommand, "GetUsageForecastCommand");
|
|
2777
|
-
var GetUsageForecastCommand = _GetUsageForecastCommand;
|
|
2778
2842
|
|
|
2779
2843
|
// src/commands/ListCommitmentPurchaseAnalysesCommand.ts
|
|
2780
2844
|
|
|
2781
2845
|
|
|
2782
2846
|
|
|
2783
|
-
var
|
|
2847
|
+
var ListCommitmentPurchaseAnalysesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2784
2848
|
return [
|
|
2785
2849
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2786
2850
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2787
2851
|
];
|
|
2788
2852
|
}).s("AWSInsightsIndexService", "ListCommitmentPurchaseAnalyses", {}).n("CostExplorerClient", "ListCommitmentPurchaseAnalysesCommand").f(void 0, void 0).ser(se_ListCommitmentPurchaseAnalysesCommand).de(de_ListCommitmentPurchaseAnalysesCommand).build() {
|
|
2853
|
+
static {
|
|
2854
|
+
__name(this, "ListCommitmentPurchaseAnalysesCommand");
|
|
2855
|
+
}
|
|
2789
2856
|
};
|
|
2790
|
-
__name(_ListCommitmentPurchaseAnalysesCommand, "ListCommitmentPurchaseAnalysesCommand");
|
|
2791
|
-
var ListCommitmentPurchaseAnalysesCommand = _ListCommitmentPurchaseAnalysesCommand;
|
|
2792
2857
|
|
|
2793
2858
|
// src/commands/ListCostAllocationTagBackfillHistoryCommand.ts
|
|
2794
2859
|
|
|
2795
2860
|
|
|
2796
2861
|
|
|
2797
|
-
var
|
|
2862
|
+
var ListCostAllocationTagBackfillHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2798
2863
|
return [
|
|
2799
2864
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2800
2865
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2801
2866
|
];
|
|
2802
2867
|
}).s("AWSInsightsIndexService", "ListCostAllocationTagBackfillHistory", {}).n("CostExplorerClient", "ListCostAllocationTagBackfillHistoryCommand").f(void 0, void 0).ser(se_ListCostAllocationTagBackfillHistoryCommand).de(de_ListCostAllocationTagBackfillHistoryCommand).build() {
|
|
2868
|
+
static {
|
|
2869
|
+
__name(this, "ListCostAllocationTagBackfillHistoryCommand");
|
|
2870
|
+
}
|
|
2803
2871
|
};
|
|
2804
|
-
__name(_ListCostAllocationTagBackfillHistoryCommand, "ListCostAllocationTagBackfillHistoryCommand");
|
|
2805
|
-
var ListCostAllocationTagBackfillHistoryCommand = _ListCostAllocationTagBackfillHistoryCommand;
|
|
2806
2872
|
|
|
2807
2873
|
// src/commands/ListCostAllocationTagsCommand.ts
|
|
2808
2874
|
|
|
2809
2875
|
|
|
2810
2876
|
|
|
2811
|
-
var
|
|
2877
|
+
var ListCostAllocationTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2812
2878
|
return [
|
|
2813
2879
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2814
2880
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2815
2881
|
];
|
|
2816
2882
|
}).s("AWSInsightsIndexService", "ListCostAllocationTags", {}).n("CostExplorerClient", "ListCostAllocationTagsCommand").f(void 0, void 0).ser(se_ListCostAllocationTagsCommand).de(de_ListCostAllocationTagsCommand).build() {
|
|
2883
|
+
static {
|
|
2884
|
+
__name(this, "ListCostAllocationTagsCommand");
|
|
2885
|
+
}
|
|
2817
2886
|
};
|
|
2818
|
-
__name(_ListCostAllocationTagsCommand, "ListCostAllocationTagsCommand");
|
|
2819
|
-
var ListCostAllocationTagsCommand = _ListCostAllocationTagsCommand;
|
|
2820
2887
|
|
|
2821
2888
|
// src/commands/ListCostCategoryDefinitionsCommand.ts
|
|
2822
2889
|
|
|
2823
2890
|
|
|
2824
2891
|
|
|
2825
|
-
var
|
|
2892
|
+
var ListCostCategoryDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2826
2893
|
return [
|
|
2827
2894
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2828
2895
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2829
2896
|
];
|
|
2830
2897
|
}).s("AWSInsightsIndexService", "ListCostCategoryDefinitions", {}).n("CostExplorerClient", "ListCostCategoryDefinitionsCommand").f(void 0, void 0).ser(se_ListCostCategoryDefinitionsCommand).de(de_ListCostCategoryDefinitionsCommand).build() {
|
|
2898
|
+
static {
|
|
2899
|
+
__name(this, "ListCostCategoryDefinitionsCommand");
|
|
2900
|
+
}
|
|
2831
2901
|
};
|
|
2832
|
-
__name(_ListCostCategoryDefinitionsCommand, "ListCostCategoryDefinitionsCommand");
|
|
2833
|
-
var ListCostCategoryDefinitionsCommand = _ListCostCategoryDefinitionsCommand;
|
|
2834
2902
|
|
|
2835
2903
|
// src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts
|
|
2836
2904
|
|
|
2837
2905
|
|
|
2838
2906
|
|
|
2839
|
-
var
|
|
2907
|
+
var ListSavingsPlansPurchaseRecommendationGenerationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2840
2908
|
return [
|
|
2841
2909
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2842
2910
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2843
2911
|
];
|
|
2844
2912
|
}).s("AWSInsightsIndexService", "ListSavingsPlansPurchaseRecommendationGeneration", {}).n("CostExplorerClient", "ListSavingsPlansPurchaseRecommendationGenerationCommand").f(void 0, void 0).ser(se_ListSavingsPlansPurchaseRecommendationGenerationCommand).de(de_ListSavingsPlansPurchaseRecommendationGenerationCommand).build() {
|
|
2913
|
+
static {
|
|
2914
|
+
__name(this, "ListSavingsPlansPurchaseRecommendationGenerationCommand");
|
|
2915
|
+
}
|
|
2845
2916
|
};
|
|
2846
|
-
__name(_ListSavingsPlansPurchaseRecommendationGenerationCommand, "ListSavingsPlansPurchaseRecommendationGenerationCommand");
|
|
2847
|
-
var ListSavingsPlansPurchaseRecommendationGenerationCommand = _ListSavingsPlansPurchaseRecommendationGenerationCommand;
|
|
2848
2917
|
|
|
2849
2918
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2850
2919
|
|
|
2851
2920
|
|
|
2852
2921
|
|
|
2853
|
-
var
|
|
2922
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2854
2923
|
return [
|
|
2855
2924
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2856
2925
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2857
2926
|
];
|
|
2858
2927
|
}).s("AWSInsightsIndexService", "ListTagsForResource", {}).n("CostExplorerClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2928
|
+
static {
|
|
2929
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2930
|
+
}
|
|
2859
2931
|
};
|
|
2860
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2861
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2862
2932
|
|
|
2863
2933
|
// src/commands/ProvideAnomalyFeedbackCommand.ts
|
|
2864
2934
|
|
|
2865
2935
|
|
|
2866
2936
|
|
|
2867
|
-
var
|
|
2937
|
+
var ProvideAnomalyFeedbackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2868
2938
|
return [
|
|
2869
2939
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2870
2940
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2871
2941
|
];
|
|
2872
2942
|
}).s("AWSInsightsIndexService", "ProvideAnomalyFeedback", {}).n("CostExplorerClient", "ProvideAnomalyFeedbackCommand").f(void 0, void 0).ser(se_ProvideAnomalyFeedbackCommand).de(de_ProvideAnomalyFeedbackCommand).build() {
|
|
2943
|
+
static {
|
|
2944
|
+
__name(this, "ProvideAnomalyFeedbackCommand");
|
|
2945
|
+
}
|
|
2873
2946
|
};
|
|
2874
|
-
__name(_ProvideAnomalyFeedbackCommand, "ProvideAnomalyFeedbackCommand");
|
|
2875
|
-
var ProvideAnomalyFeedbackCommand = _ProvideAnomalyFeedbackCommand;
|
|
2876
2947
|
|
|
2877
2948
|
// src/commands/StartCommitmentPurchaseAnalysisCommand.ts
|
|
2878
2949
|
|
|
2879
2950
|
|
|
2880
2951
|
|
|
2881
|
-
var
|
|
2952
|
+
var StartCommitmentPurchaseAnalysisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2882
2953
|
return [
|
|
2883
2954
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2884
2955
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2885
2956
|
];
|
|
2886
2957
|
}).s("AWSInsightsIndexService", "StartCommitmentPurchaseAnalysis", {}).n("CostExplorerClient", "StartCommitmentPurchaseAnalysisCommand").f(void 0, void 0).ser(se_StartCommitmentPurchaseAnalysisCommand).de(de_StartCommitmentPurchaseAnalysisCommand).build() {
|
|
2958
|
+
static {
|
|
2959
|
+
__name(this, "StartCommitmentPurchaseAnalysisCommand");
|
|
2960
|
+
}
|
|
2887
2961
|
};
|
|
2888
|
-
__name(_StartCommitmentPurchaseAnalysisCommand, "StartCommitmentPurchaseAnalysisCommand");
|
|
2889
|
-
var StartCommitmentPurchaseAnalysisCommand = _StartCommitmentPurchaseAnalysisCommand;
|
|
2890
2962
|
|
|
2891
2963
|
// src/commands/StartCostAllocationTagBackfillCommand.ts
|
|
2892
2964
|
|
|
2893
2965
|
|
|
2894
2966
|
|
|
2895
|
-
var
|
|
2967
|
+
var StartCostAllocationTagBackfillCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2896
2968
|
return [
|
|
2897
2969
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2898
2970
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2899
2971
|
];
|
|
2900
2972
|
}).s("AWSInsightsIndexService", "StartCostAllocationTagBackfill", {}).n("CostExplorerClient", "StartCostAllocationTagBackfillCommand").f(void 0, void 0).ser(se_StartCostAllocationTagBackfillCommand).de(de_StartCostAllocationTagBackfillCommand).build() {
|
|
2973
|
+
static {
|
|
2974
|
+
__name(this, "StartCostAllocationTagBackfillCommand");
|
|
2975
|
+
}
|
|
2901
2976
|
};
|
|
2902
|
-
__name(_StartCostAllocationTagBackfillCommand, "StartCostAllocationTagBackfillCommand");
|
|
2903
|
-
var StartCostAllocationTagBackfillCommand = _StartCostAllocationTagBackfillCommand;
|
|
2904
2977
|
|
|
2905
2978
|
// src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts
|
|
2906
2979
|
|
|
2907
2980
|
|
|
2908
2981
|
|
|
2909
|
-
var
|
|
2982
|
+
var StartSavingsPlansPurchaseRecommendationGenerationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2910
2983
|
return [
|
|
2911
2984
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2912
2985
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2913
2986
|
];
|
|
2914
2987
|
}).s("AWSInsightsIndexService", "StartSavingsPlansPurchaseRecommendationGeneration", {}).n("CostExplorerClient", "StartSavingsPlansPurchaseRecommendationGenerationCommand").f(void 0, void 0).ser(se_StartSavingsPlansPurchaseRecommendationGenerationCommand).de(de_StartSavingsPlansPurchaseRecommendationGenerationCommand).build() {
|
|
2988
|
+
static {
|
|
2989
|
+
__name(this, "StartSavingsPlansPurchaseRecommendationGenerationCommand");
|
|
2990
|
+
}
|
|
2915
2991
|
};
|
|
2916
|
-
__name(_StartSavingsPlansPurchaseRecommendationGenerationCommand, "StartSavingsPlansPurchaseRecommendationGenerationCommand");
|
|
2917
|
-
var StartSavingsPlansPurchaseRecommendationGenerationCommand = _StartSavingsPlansPurchaseRecommendationGenerationCommand;
|
|
2918
2992
|
|
|
2919
2993
|
// src/commands/TagResourceCommand.ts
|
|
2920
2994
|
|
|
2921
2995
|
|
|
2922
2996
|
|
|
2923
|
-
var
|
|
2997
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2924
2998
|
return [
|
|
2925
2999
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2926
3000
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2927
3001
|
];
|
|
2928
3002
|
}).s("AWSInsightsIndexService", "TagResource", {}).n("CostExplorerClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3003
|
+
static {
|
|
3004
|
+
__name(this, "TagResourceCommand");
|
|
3005
|
+
}
|
|
2929
3006
|
};
|
|
2930
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2931
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2932
3007
|
|
|
2933
3008
|
// src/commands/UntagResourceCommand.ts
|
|
2934
3009
|
|
|
2935
3010
|
|
|
2936
3011
|
|
|
2937
|
-
var
|
|
3012
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2938
3013
|
return [
|
|
2939
3014
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2940
3015
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2941
3016
|
];
|
|
2942
3017
|
}).s("AWSInsightsIndexService", "UntagResource", {}).n("CostExplorerClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3018
|
+
static {
|
|
3019
|
+
__name(this, "UntagResourceCommand");
|
|
3020
|
+
}
|
|
2943
3021
|
};
|
|
2944
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2945
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2946
3022
|
|
|
2947
3023
|
// src/commands/UpdateAnomalyMonitorCommand.ts
|
|
2948
3024
|
|
|
2949
3025
|
|
|
2950
3026
|
|
|
2951
|
-
var
|
|
3027
|
+
var UpdateAnomalyMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2952
3028
|
return [
|
|
2953
3029
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2954
3030
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2955
3031
|
];
|
|
2956
3032
|
}).s("AWSInsightsIndexService", "UpdateAnomalyMonitor", {}).n("CostExplorerClient", "UpdateAnomalyMonitorCommand").f(void 0, void 0).ser(se_UpdateAnomalyMonitorCommand).de(de_UpdateAnomalyMonitorCommand).build() {
|
|
3033
|
+
static {
|
|
3034
|
+
__name(this, "UpdateAnomalyMonitorCommand");
|
|
3035
|
+
}
|
|
2957
3036
|
};
|
|
2958
|
-
__name(_UpdateAnomalyMonitorCommand, "UpdateAnomalyMonitorCommand");
|
|
2959
|
-
var UpdateAnomalyMonitorCommand = _UpdateAnomalyMonitorCommand;
|
|
2960
3037
|
|
|
2961
3038
|
// src/commands/UpdateAnomalySubscriptionCommand.ts
|
|
2962
3039
|
|
|
2963
3040
|
|
|
2964
3041
|
|
|
2965
|
-
var
|
|
3042
|
+
var UpdateAnomalySubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2966
3043
|
return [
|
|
2967
3044
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2968
3045
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2969
3046
|
];
|
|
2970
3047
|
}).s("AWSInsightsIndexService", "UpdateAnomalySubscription", {}).n("CostExplorerClient", "UpdateAnomalySubscriptionCommand").f(void 0, void 0).ser(se_UpdateAnomalySubscriptionCommand).de(de_UpdateAnomalySubscriptionCommand).build() {
|
|
3048
|
+
static {
|
|
3049
|
+
__name(this, "UpdateAnomalySubscriptionCommand");
|
|
3050
|
+
}
|
|
2971
3051
|
};
|
|
2972
|
-
__name(_UpdateAnomalySubscriptionCommand, "UpdateAnomalySubscriptionCommand");
|
|
2973
|
-
var UpdateAnomalySubscriptionCommand = _UpdateAnomalySubscriptionCommand;
|
|
2974
3052
|
|
|
2975
3053
|
// src/commands/UpdateCostAllocationTagsStatusCommand.ts
|
|
2976
3054
|
|
|
2977
3055
|
|
|
2978
3056
|
|
|
2979
|
-
var
|
|
3057
|
+
var UpdateCostAllocationTagsStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2980
3058
|
return [
|
|
2981
3059
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2982
3060
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2983
3061
|
];
|
|
2984
3062
|
}).s("AWSInsightsIndexService", "UpdateCostAllocationTagsStatus", {}).n("CostExplorerClient", "UpdateCostAllocationTagsStatusCommand").f(void 0, void 0).ser(se_UpdateCostAllocationTagsStatusCommand).de(de_UpdateCostAllocationTagsStatusCommand).build() {
|
|
3063
|
+
static {
|
|
3064
|
+
__name(this, "UpdateCostAllocationTagsStatusCommand");
|
|
3065
|
+
}
|
|
2985
3066
|
};
|
|
2986
|
-
__name(_UpdateCostAllocationTagsStatusCommand, "UpdateCostAllocationTagsStatusCommand");
|
|
2987
|
-
var UpdateCostAllocationTagsStatusCommand = _UpdateCostAllocationTagsStatusCommand;
|
|
2988
3067
|
|
|
2989
3068
|
// src/commands/UpdateCostCategoryDefinitionCommand.ts
|
|
2990
3069
|
|
|
2991
3070
|
|
|
2992
3071
|
|
|
2993
|
-
var
|
|
3072
|
+
var UpdateCostCategoryDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2994
3073
|
return [
|
|
2995
3074
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2996
3075
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2997
3076
|
];
|
|
2998
3077
|
}).s("AWSInsightsIndexService", "UpdateCostCategoryDefinition", {}).n("CostExplorerClient", "UpdateCostCategoryDefinitionCommand").f(void 0, void 0).ser(se_UpdateCostCategoryDefinitionCommand).de(de_UpdateCostCategoryDefinitionCommand).build() {
|
|
3078
|
+
static {
|
|
3079
|
+
__name(this, "UpdateCostCategoryDefinitionCommand");
|
|
3080
|
+
}
|
|
2999
3081
|
};
|
|
3000
|
-
__name(_UpdateCostCategoryDefinitionCommand, "UpdateCostCategoryDefinitionCommand");
|
|
3001
|
-
var UpdateCostCategoryDefinitionCommand = _UpdateCostCategoryDefinitionCommand;
|
|
3002
3082
|
|
|
3003
3083
|
// src/CostExplorer.ts
|
|
3004
3084
|
var commands = {
|
|
@@ -3047,10 +3127,11 @@ var commands = {
|
|
|
3047
3127
|
UpdateCostAllocationTagsStatusCommand,
|
|
3048
3128
|
UpdateCostCategoryDefinitionCommand
|
|
3049
3129
|
};
|
|
3050
|
-
var
|
|
3130
|
+
var CostExplorer = class extends CostExplorerClient {
|
|
3131
|
+
static {
|
|
3132
|
+
__name(this, "CostExplorer");
|
|
3133
|
+
}
|
|
3051
3134
|
};
|
|
3052
|
-
__name(_CostExplorer, "CostExplorer");
|
|
3053
|
-
var CostExplorer = _CostExplorer;
|
|
3054
3135
|
(0, import_smithy_client.createAggregatedClient)(commands, CostExplorer);
|
|
3055
3136
|
|
|
3056
3137
|
// src/pagination/GetSavingsPlansCoveragePaginator.ts
|