@aws-sdk/client-application-signals 3.948.0 → 3.953.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.
Files changed (43) hide show
  1. package/dist-cjs/index.js +407 -286
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.js +2 -2
  4. package/dist-es/commands/BatchUpdateExclusionWindowsCommand.js +2 -2
  5. package/dist-es/commands/CreateServiceLevelObjectiveCommand.js +2 -2
  6. package/dist-es/commands/DeleteGroupingConfigurationCommand.js +2 -2
  7. package/dist-es/commands/DeleteServiceLevelObjectiveCommand.js +2 -2
  8. package/dist-es/commands/GetServiceCommand.js +2 -2
  9. package/dist-es/commands/GetServiceLevelObjectiveCommand.js +2 -2
  10. package/dist-es/commands/ListAuditFindingsCommand.js +2 -2
  11. package/dist-es/commands/ListEntityEventsCommand.js +2 -2
  12. package/dist-es/commands/ListGroupingAttributeDefinitionsCommand.js +2 -2
  13. package/dist-es/commands/ListServiceDependenciesCommand.js +2 -2
  14. package/dist-es/commands/ListServiceDependentsCommand.js +2 -2
  15. package/dist-es/commands/ListServiceLevelObjectiveExclusionWindowsCommand.js +2 -2
  16. package/dist-es/commands/ListServiceLevelObjectivesCommand.js +2 -2
  17. package/dist-es/commands/ListServiceOperationsCommand.js +2 -2
  18. package/dist-es/commands/ListServiceStatesCommand.js +2 -2
  19. package/dist-es/commands/ListServicesCommand.js +2 -2
  20. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-es/commands/PutGroupingConfigurationCommand.js +2 -2
  22. package/dist-es/commands/StartDiscoveryCommand.js +2 -2
  23. package/dist-es/commands/TagResourceCommand.js +2 -2
  24. package/dist-es/commands/UntagResourceCommand.js +2 -2
  25. package/dist-es/commands/UpdateServiceLevelObjectiveCommand.js +2 -2
  26. package/dist-es/index.js +1 -0
  27. package/dist-es/runtimeConfig.shared.js +6 -1
  28. package/dist-es/schemas/schemas_0.js +253 -259
  29. package/dist-types/ApplicationSignalsClient.d.ts +1 -10
  30. package/dist-types/index.d.ts +1 -0
  31. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  32. package/dist-types/runtimeConfig.d.ts +6 -2
  33. package/dist-types/runtimeConfig.native.d.ts +6 -2
  34. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  35. package/dist-types/schemas/schemas_0.d.ts +128 -165
  36. package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +0 -4
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +127 -165
  43. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -108,14 +108,14 @@ class ApplicationSignalsClient extends smithyClient.Client {
108
108
  }
109
109
  }
110
110
 
111
- let ApplicationSignalsServiceException$1 = class ApplicationSignalsServiceException extends smithyClient.ServiceException {
111
+ class ApplicationSignalsServiceException extends smithyClient.ServiceException {
112
112
  constructor(options) {
113
113
  super(options);
114
114
  Object.setPrototypeOf(this, ApplicationSignalsServiceException.prototype);
115
115
  }
116
- };
116
+ }
117
117
 
118
- let AccessDeniedException$1 = class AccessDeniedException extends ApplicationSignalsServiceException$1 {
118
+ class AccessDeniedException extends ApplicationSignalsServiceException {
119
119
  name = "AccessDeniedException";
120
120
  $fault = "client";
121
121
  Message;
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ApplicationSig
128
128
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
129
129
  this.Message = opts.Message;
130
130
  }
131
- };
132
- let ThrottlingException$1 = class ThrottlingException extends ApplicationSignalsServiceException$1 {
131
+ }
132
+ class ThrottlingException extends ApplicationSignalsServiceException {
133
133
  name = "ThrottlingException";
134
134
  $fault = "client";
135
135
  Message;
@@ -142,8 +142,8 @@ let ThrottlingException$1 = class ThrottlingException extends ApplicationSignals
142
142
  Object.setPrototypeOf(this, ThrottlingException.prototype);
143
143
  this.Message = opts.Message;
144
144
  }
145
- };
146
- let ValidationException$1 = class ValidationException extends ApplicationSignalsServiceException$1 {
145
+ }
146
+ class ValidationException extends ApplicationSignalsServiceException {
147
147
  name = "ValidationException";
148
148
  $fault = "client";
149
149
  constructor(opts) {
@@ -154,8 +154,8 @@ let ValidationException$1 = class ValidationException extends ApplicationSignals
154
154
  });
155
155
  Object.setPrototypeOf(this, ValidationException.prototype);
156
156
  }
157
- };
158
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ApplicationSignalsServiceException$1 {
157
+ }
158
+ class ResourceNotFoundException extends ApplicationSignalsServiceException {
159
159
  name = "ResourceNotFoundException";
160
160
  $fault = "client";
161
161
  ResourceType;
@@ -172,8 +172,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Applic
172
172
  this.ResourceId = opts.ResourceId;
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let ConflictException$1 = class ConflictException extends ApplicationSignalsServiceException$1 {
175
+ }
176
+ class ConflictException extends ApplicationSignalsServiceException {
177
177
  name = "ConflictException";
178
178
  $fault = "client";
179
179
  Message;
@@ -186,8 +186,8 @@ let ConflictException$1 = class ConflictException extends ApplicationSignalsServ
186
186
  Object.setPrototypeOf(this, ConflictException.prototype);
187
187
  this.Message = opts.Message;
188
188
  }
189
- };
190
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ApplicationSignalsServiceException$1 {
189
+ }
190
+ class ServiceQuotaExceededException extends ApplicationSignalsServiceException {
191
191
  name = "ServiceQuotaExceededException";
192
192
  $fault = "client";
193
193
  Message;
@@ -200,7 +200,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
200
200
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
201
201
  this.Message = opts.Message;
202
202
  }
203
- };
203
+ }
204
204
 
205
205
  const _A = "Auditor";
206
206
  const _AAI = "AwsAccountId";
@@ -476,7 +476,7 @@ const _hQ = "httpQuery";
476
476
  const _m = "message";
477
477
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.applicationsignals";
478
478
  const n0 = "com.amazonaws.applicationsignals";
479
- var AccessDeniedException = [
479
+ var AccessDeniedException$ = [
480
480
  -3,
481
481
  n0,
482
482
  _ADE,
@@ -484,19 +484,19 @@ var AccessDeniedException = [
484
484
  [_M],
485
485
  [0],
486
486
  ];
487
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
488
- var AttributeFilter = [3, n0, _AF, 0, [_AFN, _AFV], [0, 64 | 0]];
489
- var AuditFinding = [
487
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
488
+ var AttributeFilter$ = [3, n0, _AF, 0, [_AFN, _AFV], [0, 64 | 0]];
489
+ var AuditFinding$ = [
490
490
  3,
491
491
  n0,
492
492
  _AFu,
493
493
  0,
494
494
  [_KA, _AR, _O, _MG, _DG, _T],
495
- [128 | 0, () => AuditorResults, 0, () => MetricGraph, () => DependencyGraph, 0],
495
+ [128 | 0, () => AuditorResults, 0, () => MetricGraph$, () => DependencyGraph$, 0],
496
496
  ];
497
- var AuditorResult = [3, n0, _ARu, 0, [_A, _D, _Da, _S], [0, 0, 128 | 0, 0]];
498
- var AuditTarget = [3, n0, _AT, 0, [_T, _Da], [0, () => AuditTargetEntity]];
499
- var BatchGetServiceLevelObjectiveBudgetReportInput = [
497
+ var AuditorResult$ = [3, n0, _ARu, 0, [_A, _D, _Da, _S], [0, 0, 128 | 0, 0]];
498
+ var AuditTarget$ = [3, n0, _AT, 0, [_T, _Da], [0, () => AuditTargetEntity$]];
499
+ var BatchGetServiceLevelObjectiveBudgetReportInput$ = [
500
500
  3,
501
501
  n0,
502
502
  _BGSLOBRI,
@@ -504,7 +504,7 @@ var BatchGetServiceLevelObjectiveBudgetReportInput = [
504
504
  [_Ti, _SI],
505
505
  [4, 64 | 0],
506
506
  ];
507
- var BatchGetServiceLevelObjectiveBudgetReportOutput = [
507
+ var BatchGetServiceLevelObjectiveBudgetReportOutput$ = [
508
508
  3,
509
509
  n0,
510
510
  _BGSLOBRO,
@@ -512,8 +512,8 @@ var BatchGetServiceLevelObjectiveBudgetReportOutput = [
512
512
  [_Ti, _R, _E],
513
513
  [4, () => ServiceLevelObjectiveBudgetReports, () => ServiceLevelObjectiveBudgetReportErrors],
514
514
  ];
515
- var BatchUpdateExclusionWindowsError = [3, n0, _BUEWE, 0, [_SIl, _EC, _EM], [0, 0, 0]];
516
- var BatchUpdateExclusionWindowsInput = [
515
+ var BatchUpdateExclusionWindowsError$ = [3, n0, _BUEWE, 0, [_SIl, _EC, _EM], [0, 0, 0]];
516
+ var BatchUpdateExclusionWindowsInput$ = [
517
517
  3,
518
518
  n0,
519
519
  _BUEWI,
@@ -521,7 +521,7 @@ var BatchUpdateExclusionWindowsInput = [
521
521
  [_SI, _AEW, _REW],
522
522
  [64 | 0, () => ExclusionWindows, () => ExclusionWindows],
523
523
  ];
524
- var BatchUpdateExclusionWindowsOutput = [
524
+ var BatchUpdateExclusionWindowsOutput$ = [
525
525
  3,
526
526
  n0,
527
527
  _BUEWO,
@@ -529,10 +529,10 @@ var BatchUpdateExclusionWindowsOutput = [
529
529
  [_SI, _E],
530
530
  [64 | 0, () => BatchUpdateExclusionWindowsErrors],
531
531
  ];
532
- var BurnRateConfiguration = [3, n0, _BRC, 0, [_LBWM], [1]];
533
- var CalendarInterval = [3, n0, _CI, 0, [_ST, _DU, _Du], [4, 0, 1]];
534
- var CanaryEntity = [3, n0, _CE, 0, [_CN], [0]];
535
- var ChangeEvent = [
532
+ var BurnRateConfiguration$ = [3, n0, _BRC, 0, [_LBWM], [1]];
533
+ var CalendarInterval$ = [3, n0, _CI, 0, [_ST, _DU, _Du], [4, 0, 1]];
534
+ var CanaryEntity$ = [3, n0, _CE, 0, [_CN], [0]];
535
+ var ChangeEvent$ = [
536
536
  3,
537
537
  n0,
538
538
  _CEh,
@@ -540,9 +540,9 @@ var ChangeEvent = [
540
540
  [_Ti, _AI, _Re, _En, _CET, _EI, _UN, _EN],
541
541
  [4, 0, 0, 128 | 0, 0, 0, 0, 0],
542
542
  ];
543
- var ConflictException = [-3, n0, _CEo, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
544
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
545
- var CreateServiceLevelObjectiveInput = [
543
+ var ConflictException$ = [-3, n0, _CEo, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
544
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
545
+ var CreateServiceLevelObjectiveInput$ = [
546
546
  3,
547
547
  n0,
548
548
  _CSLOI,
@@ -551,37 +551,37 @@ var CreateServiceLevelObjectiveInput = [
551
551
  [
552
552
  0,
553
553
  0,
554
- () => ServiceLevelIndicatorConfig,
555
- () => RequestBasedServiceLevelIndicatorConfig,
556
- () => Goal,
554
+ () => ServiceLevelIndicatorConfig$,
555
+ () => RequestBasedServiceLevelIndicatorConfig$,
556
+ () => Goal$,
557
557
  () => TagList,
558
558
  () => BurnRateConfigurations,
559
559
  ],
560
560
  ];
561
- var CreateServiceLevelObjectiveOutput = [
561
+ var CreateServiceLevelObjectiveOutput$ = [
562
562
  3,
563
563
  n0,
564
564
  _CSLOO,
565
565
  0,
566
566
  [_Sl],
567
- [() => ServiceLevelObjective],
568
- ];
569
- var DeleteGroupingConfigurationOutput = [3, n0, _DGCO, 0, [], []];
570
- var DeleteServiceLevelObjectiveInput = [3, n0, _DSLOI, 0, [_I], [[0, 1]]];
571
- var DeleteServiceLevelObjectiveOutput = [3, n0, _DSLOO, 0, [], []];
572
- var DependencyConfig = [3, n0, _DC, 0, [_DKA, _DON], [128 | 0, 0]];
573
- var DependencyGraph = [3, n0, _DG, 0, [_No, _Ed], [() => Nodes, () => Edges]];
574
- var Dimension = [3, n0, _Di, 0, [_N, _V], [0, 0]];
575
- var Edge = [3, n0, _Edg, 0, [_SNI, _DNI, _Du, _CT], [0, 0, 1, 0]];
576
- var ExclusionWindow = [
567
+ [() => ServiceLevelObjective$],
568
+ ];
569
+ var DeleteGroupingConfigurationOutput$ = [3, n0, _DGCO, 0, [], []];
570
+ var DeleteServiceLevelObjectiveInput$ = [3, n0, _DSLOI, 0, [_I], [[0, 1]]];
571
+ var DeleteServiceLevelObjectiveOutput$ = [3, n0, _DSLOO, 0, [], []];
572
+ var DependencyConfig$ = [3, n0, _DC, 0, [_DKA, _DON], [128 | 0, 0]];
573
+ var DependencyGraph$ = [3, n0, _DG, 0, [_No, _Ed], [() => Nodes, () => Edges]];
574
+ var Dimension$ = [3, n0, _Di, 0, [_N, _V], [0, 0]];
575
+ var Edge$ = [3, n0, _Edg, 0, [_SNI, _DNI, _Du, _CT], [0, 0, 1, 0]];
576
+ var ExclusionWindow$ = [
577
577
  3,
578
578
  n0,
579
579
  _EW,
580
580
  0,
581
581
  [_W, _ST, _RR, _Rea],
582
- [() => Window, 4, () => RecurrenceRule, 0],
582
+ [() => Window$, 4, () => RecurrenceRule$, 0],
583
583
  ];
584
- var GetServiceInput = [
584
+ var GetServiceInput$ = [
585
585
  3,
586
586
  n0,
587
587
  _GSI,
@@ -589,26 +589,26 @@ var GetServiceInput = [
589
589
  [_ST, _ET, _KA],
590
590
  [[4, { [_hQ]: _ST }], [4, { [_hQ]: _ET }], 128 | 0],
591
591
  ];
592
- var GetServiceLevelObjectiveInput = [3, n0, _GSLOI, 0, [_I], [[0, 1]]];
593
- var GetServiceLevelObjectiveOutput = [
592
+ var GetServiceLevelObjectiveInput$ = [3, n0, _GSLOI, 0, [_I], [[0, 1]]];
593
+ var GetServiceLevelObjectiveOutput$ = [
594
594
  3,
595
595
  n0,
596
596
  _GSLOO,
597
597
  0,
598
598
  [_Sl],
599
- [() => ServiceLevelObjective],
599
+ [() => ServiceLevelObjective$],
600
600
  ];
601
- var GetServiceOutput = [
601
+ var GetServiceOutput$ = [
602
602
  3,
603
603
  n0,
604
604
  _GSO,
605
605
  0,
606
606
  [_Se, _ST, _ET, _LGR],
607
- [() => Service, 4, 4, [1, n0, _LGR, 0, 128 | 0]],
607
+ [() => Service$, 4, 4, [1, n0, _LGR, 0, 128 | 0]],
608
608
  ];
609
- var Goal = [3, n0, _G, 0, [_In, _AG, _WT], [() => Interval, 1, 1]];
610
- var GroupingAttributeDefinition = [3, n0, _GAD, 0, [_GN, _GSK, _DGV], [0, 64 | 0, 0]];
611
- var GroupingConfiguration = [
609
+ var Goal$ = [3, n0, _G, 0, [_In, _AG, _WT], [() => Interval$, 1, 1]];
610
+ var GroupingAttributeDefinition$ = [3, n0, _GAD, 0, [_GN, _GSK, _DGV], [0, 64 | 0, 0]];
611
+ var GroupingConfiguration$ = [
612
612
  3,
613
613
  n0,
614
614
  _GC,
@@ -616,7 +616,7 @@ var GroupingConfiguration = [
616
616
  [_GADr, _UA],
617
617
  [() => GroupingAttributeDefinitions, 4],
618
618
  ];
619
- var ListAuditFindingsInput = [
619
+ var ListAuditFindingsInput$ = [
620
620
  3,
621
621
  n0,
622
622
  _LAFI,
@@ -624,7 +624,7 @@ var ListAuditFindingsInput = [
624
624
  [_ST, _ET, _Au, _ATu, _DL, _NT, _MR],
625
625
  [[4, { [_hQ]: _ST }], [4, { [_hQ]: _ET }], 64 | 0, () => AuditTargets, 0, 0, 1],
626
626
  ];
627
- var ListAuditFindingsOutput = [
627
+ var ListAuditFindingsOutput$ = [
628
628
  3,
629
629
  n0,
630
630
  _LAFO,
@@ -632,7 +632,7 @@ var ListAuditFindingsOutput = [
632
632
  [_ST, _ET, _AFud, _NT],
633
633
  [4, 4, () => AuditFindings, 0],
634
634
  ];
635
- var ListEntityEventsInput = [
635
+ var ListEntityEventsInput$ = [
636
636
  3,
637
637
  n0,
638
638
  _LEEI,
@@ -640,7 +640,7 @@ var ListEntityEventsInput = [
640
640
  [_En, _ST, _ET, _MR, _NT],
641
641
  [128 | 0, 4, 4, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]],
642
642
  ];
643
- var ListEntityEventsOutput = [
643
+ var ListEntityEventsOutput$ = [
644
644
  3,
645
645
  n0,
646
646
  _LEEO,
@@ -648,7 +648,7 @@ var ListEntityEventsOutput = [
648
648
  [_ST, _ET, _CEha, _NT],
649
649
  [4, 4, () => ChangeEvents, 0],
650
650
  ];
651
- var ListGroupingAttributeDefinitionsInput = [
651
+ var ListGroupingAttributeDefinitionsInput$ = [
652
652
  3,
653
653
  n0,
654
654
  _LGADI,
@@ -660,7 +660,7 @@ var ListGroupingAttributeDefinitionsInput = [
660
660
  [2, { [_hQ]: _ILA }],
661
661
  ],
662
662
  ];
663
- var ListGroupingAttributeDefinitionsOutput = [
663
+ var ListGroupingAttributeDefinitionsOutput$ = [
664
664
  3,
665
665
  n0,
666
666
  _LGADO,
@@ -668,7 +668,7 @@ var ListGroupingAttributeDefinitionsOutput = [
668
668
  [_GADr, _UA, _NT],
669
669
  [() => GroupingAttributeDefinitions, 4, 0],
670
670
  ];
671
- var ListServiceDependenciesInput = [
671
+ var ListServiceDependenciesInput$ = [
672
672
  3,
673
673
  n0,
674
674
  _LSDI,
@@ -676,7 +676,7 @@ var ListServiceDependenciesInput = [
676
676
  [_ST, _ET, _KA, _MR, _NT],
677
677
  [[4, { [_hQ]: _ST }], [4, { [_hQ]: _ET }], 128 | 0, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]],
678
678
  ];
679
- var ListServiceDependenciesOutput = [
679
+ var ListServiceDependenciesOutput$ = [
680
680
  3,
681
681
  n0,
682
682
  _LSDO,
@@ -684,7 +684,7 @@ var ListServiceDependenciesOutput = [
684
684
  [_ST, _ET, _SD, _NT],
685
685
  [4, 4, () => ServiceDependencies, 0],
686
686
  ];
687
- var ListServiceDependentsInput = [
687
+ var ListServiceDependentsInput$ = [
688
688
  3,
689
689
  n0,
690
690
  _LSDIi,
@@ -692,7 +692,7 @@ var ListServiceDependentsInput = [
692
692
  [_ST, _ET, _KA, _MR, _NT],
693
693
  [[4, { [_hQ]: _ST }], [4, { [_hQ]: _ET }], 128 | 0, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]],
694
694
  ];
695
- var ListServiceDependentsOutput = [
695
+ var ListServiceDependentsOutput$ = [
696
696
  3,
697
697
  n0,
698
698
  _LSDOi,
@@ -700,7 +700,7 @@ var ListServiceDependentsOutput = [
700
700
  [_ST, _ET, _SDe, _NT],
701
701
  [4, 4, () => ServiceDependents, 0],
702
702
  ];
703
- var ListServiceLevelObjectiveExclusionWindowsInput = [
703
+ var ListServiceLevelObjectiveExclusionWindowsInput$ = [
704
704
  3,
705
705
  n0,
706
706
  _LSLOEWI,
@@ -712,7 +712,7 @@ var ListServiceLevelObjectiveExclusionWindowsInput = [
712
712
  [0, { [_hQ]: _NT }],
713
713
  ],
714
714
  ];
715
- var ListServiceLevelObjectiveExclusionWindowsOutput = [
715
+ var ListServiceLevelObjectiveExclusionWindowsOutput$ = [
716
716
  3,
717
717
  n0,
718
718
  _LSLOEWO,
@@ -720,7 +720,7 @@ var ListServiceLevelObjectiveExclusionWindowsOutput = [
720
720
  [_EWx, _NT],
721
721
  [() => ExclusionWindows, 0],
722
722
  ];
723
- var ListServiceLevelObjectivesInput = [
723
+ var ListServiceLevelObjectivesInput$ = [
724
724
  3,
725
725
  n0,
726
726
  _LSLOI,
@@ -729,7 +729,7 @@ var ListServiceLevelObjectivesInput = [
729
729
  [
730
730
  128 | 0,
731
731
  [0, { [_hQ]: _ON }],
732
- () => DependencyConfig,
732
+ () => DependencyConfig$,
733
733
  [1, { [_hQ]: _MR }],
734
734
  [0, { [_hQ]: _NT }],
735
735
  [2, { [_hQ]: _ILA }],
@@ -737,7 +737,7 @@ var ListServiceLevelObjectivesInput = [
737
737
  64 | 0,
738
738
  ],
739
739
  ];
740
- var ListServiceLevelObjectivesOutput = [
740
+ var ListServiceLevelObjectivesOutput$ = [
741
741
  3,
742
742
  n0,
743
743
  _LSLOO,
@@ -745,7 +745,7 @@ var ListServiceLevelObjectivesOutput = [
745
745
  [_SS, _NT],
746
746
  [() => ServiceLevelObjectiveSummaries, 0],
747
747
  ];
748
- var ListServiceOperationsInput = [
748
+ var ListServiceOperationsInput$ = [
749
749
  3,
750
750
  n0,
751
751
  _LSOI,
@@ -753,7 +753,7 @@ var ListServiceOperationsInput = [
753
753
  [_ST, _ET, _KA, _MR, _NT],
754
754
  [[4, { [_hQ]: _ST }], [4, { [_hQ]: _ET }], 128 | 0, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]],
755
755
  ];
756
- var ListServiceOperationsOutput = [
756
+ var ListServiceOperationsOutput$ = [
757
757
  3,
758
758
  n0,
759
759
  _LSOO,
@@ -761,7 +761,7 @@ var ListServiceOperationsOutput = [
761
761
  [_ST, _ET, _SO, _NT],
762
762
  [4, 4, () => ServiceOperations, 0],
763
763
  ];
764
- var ListServicesInput = [
764
+ var ListServicesInput$ = [
765
765
  3,
766
766
  n0,
767
767
  _LSI,
@@ -776,7 +776,7 @@ var ListServicesInput = [
776
776
  [0, { [_hQ]: _AAI }],
777
777
  ],
778
778
  ];
779
- var ListServicesOutput = [
779
+ var ListServicesOutput$ = [
780
780
  3,
781
781
  n0,
782
782
  _LSO,
@@ -784,7 +784,7 @@ var ListServicesOutput = [
784
784
  [_ST, _ET, _SSe, _NT],
785
785
  [4, 4, () => ServiceSummaries, 0],
786
786
  ];
787
- var ListServiceStatesInput = [
787
+ var ListServiceStatesInput$ = [
788
788
  3,
789
789
  n0,
790
790
  _LSSI,
@@ -792,7 +792,7 @@ var ListServiceStatesInput = [
792
792
  [_ST, _ET, _MR, _NT, _ILA, _AAI, _AFt],
793
793
  [4, 4, 1, 0, 2, 0, () => AttributeFilters],
794
794
  ];
795
- var ListServiceStatesOutput = [
795
+ var ListServiceStatesOutput$ = [
796
796
  3,
797
797
  n0,
798
798
  _LSSO,
@@ -800,19 +800,19 @@ var ListServiceStatesOutput = [
800
800
  [_ST, _ET, _SSer, _NT],
801
801
  [4, 4, () => ServiceStates, 0],
802
802
  ];
803
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, { [_hQ]: _RA }]]];
804
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [() => TagList]];
805
- var Metric = [3, n0, _Me, 0, [_Na, _MN, _Dim], [0, 0, () => Dimensions]];
806
- var MetricDataQuery = [
803
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, { [_hQ]: _RA }]]];
804
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta], [() => TagList]];
805
+ var Metric$ = [3, n0, _Me, 0, [_Na, _MN, _Dim], [0, 0, () => Dimensions]];
806
+ var MetricDataQuery$ = [
807
807
  3,
808
808
  n0,
809
809
  _MDQ,
810
810
  0,
811
811
  [_I, _MS, _Ex, _L, _RD, _P, _AI],
812
- [0, () => MetricStat, 0, 0, 2, 1, 0],
812
+ [0, () => MetricStat$, 0, 0, 2, 1, 0],
813
813
  ];
814
- var MetricGraph = [3, n0, _MG, 0, [_MDQe, _ST, _ET], [() => MetricDataQueries, 4, 4]];
815
- var MetricReference = [
814
+ var MetricGraph$ = [3, n0, _MG, 0, [_MDQe, _ST, _ET], [() => MetricDataQueries, 4, 4]];
815
+ var MetricReference$ = [
816
816
  3,
817
817
  n0,
818
818
  _MRe,
@@ -820,8 +820,8 @@ var MetricReference = [
820
820
  [_Na, _MT, _Dim, _MN, _AI],
821
821
  [0, 0, () => Dimensions, 0, 0],
822
822
  ];
823
- var MetricStat = [3, n0, _MS, 0, [_Me, _P, _St, _U], [() => Metric, 1, 0, 0]];
824
- var Node = [
823
+ var MetricStat$ = [3, n0, _MS, 0, [_Me, _P, _St, _U], [() => Metric$, 1, 0, 0]];
824
+ var Node$ = [
825
825
  3,
826
826
  n0,
827
827
  _Nod,
@@ -829,7 +829,7 @@ var Node = [
829
829
  [_KA, _N, _NI, _O, _T, _Du, _Sta],
830
830
  [128 | 0, 0, 0, 0, 0, 1, 0],
831
831
  ];
832
- var PutGroupingConfigurationInput = [
832
+ var PutGroupingConfigurationInput$ = [
833
833
  3,
834
834
  n0,
835
835
  _PGCI,
@@ -837,48 +837,48 @@ var PutGroupingConfigurationInput = [
837
837
  [_GADr],
838
838
  [() => GroupingAttributeDefinitions],
839
839
  ];
840
- var PutGroupingConfigurationOutput = [
840
+ var PutGroupingConfigurationOutput$ = [
841
841
  3,
842
842
  n0,
843
843
  _PGCO,
844
844
  0,
845
845
  [_GC],
846
- [() => GroupingConfiguration],
846
+ [() => GroupingConfiguration$],
847
847
  ];
848
- var RecurrenceRule = [3, n0, _RR, 0, [_Ex], [0]];
849
- var RequestBasedServiceLevelIndicator = [
848
+ var RecurrenceRule$ = [3, n0, _RR, 0, [_Ex], [0]];
849
+ var RequestBasedServiceLevelIndicator$ = [
850
850
  3,
851
851
  n0,
852
852
  _RBSLI,
853
853
  0,
854
854
  [_RBSM, _MTe, _CO],
855
- [() => RequestBasedServiceLevelIndicatorMetric, 1, 0],
855
+ [() => RequestBasedServiceLevelIndicatorMetric$, 1, 0],
856
856
  ];
857
- var RequestBasedServiceLevelIndicatorConfig = [
857
+ var RequestBasedServiceLevelIndicatorConfig$ = [
858
858
  3,
859
859
  n0,
860
860
  _RBSLIC,
861
861
  0,
862
862
  [_RBSMC, _MTe, _CO],
863
- [() => RequestBasedServiceLevelIndicatorMetricConfig, 1, 0],
863
+ [() => RequestBasedServiceLevelIndicatorMetricConfig$, 1, 0],
864
864
  ];
865
- var RequestBasedServiceLevelIndicatorMetric = [
865
+ var RequestBasedServiceLevelIndicatorMetric$ = [
866
866
  3,
867
867
  n0,
868
868
  _RBSLIM,
869
869
  0,
870
870
  [_KA, _ON, _MT, _TRCM, _MRCM, _DC],
871
- [128 | 0, 0, 0, () => MetricDataQueries, () => MonitoredRequestCountMetricDataQueries, () => DependencyConfig],
871
+ [128 | 0, 0, 0, () => MetricDataQueries, () => MonitoredRequestCountMetricDataQueries$, () => DependencyConfig$],
872
872
  ];
873
- var RequestBasedServiceLevelIndicatorMetricConfig = [
873
+ var RequestBasedServiceLevelIndicatorMetricConfig$ = [
874
874
  3,
875
875
  n0,
876
876
  _RBSLIMC,
877
877
  0,
878
878
  [_KA, _ON, _MT, _TRCM, _MRCM, _DC],
879
- [128 | 0, 0, 0, () => MetricDataQueries, () => MonitoredRequestCountMetricDataQueries, () => DependencyConfig],
879
+ [128 | 0, 0, 0, () => MetricDataQueries, () => MonitoredRequestCountMetricDataQueries$, () => DependencyConfig$],
880
880
  ];
881
- var ResourceNotFoundException = [
881
+ var ResourceNotFoundException$ = [
882
882
  -3,
883
883
  n0,
884
884
  _RNFE,
@@ -886,9 +886,9 @@ var ResourceNotFoundException = [
886
886
  [_RT, _RI, _M],
887
887
  [0, 0, 0],
888
888
  ];
889
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
890
- var RollingInterval = [3, n0, _RIo, 0, [_DU, _Du], [0, 1]];
891
- var Service = [
889
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
890
+ var RollingInterval$ = [3, n0, _RIo, 0, [_DU, _Du], [0, 1]];
891
+ var Service$ = [
892
892
  3,
893
893
  n0,
894
894
  _Se,
@@ -896,7 +896,7 @@ var Service = [
896
896
  [_KA, _AM, _SG, _MRet, _LGR],
897
897
  [128 | 0, [1, n0, _AM, 0, 128 | 0], () => ServiceGroups, () => MetricReferences, [1, n0, _LGR, 0, 128 | 0]],
898
898
  ];
899
- var ServiceDependency = [
899
+ var ServiceDependency$ = [
900
900
  3,
901
901
  n0,
902
902
  _SDer,
@@ -904,7 +904,7 @@ var ServiceDependency = [
904
904
  [_ON, _DKA, _DON, _MRet],
905
905
  [0, 128 | 0, 0, () => MetricReferences],
906
906
  ];
907
- var ServiceDependent = [
907
+ var ServiceDependent$ = [
908
908
  3,
909
909
  n0,
910
910
  _SDerv,
@@ -912,41 +912,41 @@ var ServiceDependent = [
912
912
  [_ON, _DKAe, _DONe, _MRet],
913
913
  [0, 128 | 0, 0, () => MetricReferences],
914
914
  ];
915
- var ServiceEntity = [3, n0, _SE, 0, [_T, _N, _Env, _AAI], [0, 0, 0, 0]];
916
- var ServiceGroup = [3, n0, _SGe, 0, [_GNr, _GV, _GS, _GI], [0, 0, 0, 0]];
917
- var ServiceLevelIndicator = [
915
+ var ServiceEntity$ = [3, n0, _SE, 0, [_T, _N, _Env, _AAI], [0, 0, 0, 0]];
916
+ var ServiceGroup$ = [3, n0, _SGe, 0, [_GNr, _GV, _GS, _GI], [0, 0, 0, 0]];
917
+ var ServiceLevelIndicator$ = [
918
918
  3,
919
919
  n0,
920
920
  _SLI,
921
921
  0,
922
922
  [_SM, _MTe, _CO],
923
- [() => ServiceLevelIndicatorMetric, 1, 0],
923
+ [() => ServiceLevelIndicatorMetric$, 1, 0],
924
924
  ];
925
- var ServiceLevelIndicatorConfig = [
925
+ var ServiceLevelIndicatorConfig$ = [
926
926
  3,
927
927
  n0,
928
928
  _SLIC,
929
929
  0,
930
930
  [_SMC, _MTe, _CO],
931
- [() => ServiceLevelIndicatorMetricConfig, 1, 0],
931
+ [() => ServiceLevelIndicatorMetricConfig$, 1, 0],
932
932
  ];
933
- var ServiceLevelIndicatorMetric = [
933
+ var ServiceLevelIndicatorMetric$ = [
934
934
  3,
935
935
  n0,
936
936
  _SLIM,
937
937
  0,
938
938
  [_KA, _ON, _MT, _MDQe, _DC],
939
- [128 | 0, 0, 0, () => MetricDataQueries, () => DependencyConfig],
939
+ [128 | 0, 0, 0, () => MetricDataQueries, () => DependencyConfig$],
940
940
  ];
941
- var ServiceLevelIndicatorMetricConfig = [
941
+ var ServiceLevelIndicatorMetricConfig$ = [
942
942
  3,
943
943
  n0,
944
944
  _SLIMC,
945
945
  0,
946
946
  [_KA, _ON, _MT, _MN, _Stat, _PS, _MDQe, _DC],
947
- [128 | 0, 0, 0, 0, 0, 1, () => MetricDataQueries, () => DependencyConfig],
947
+ [128 | 0, 0, 0, 0, 0, 1, () => MetricDataQueries, () => DependencyConfig$],
948
948
  ];
949
- var ServiceLevelObjective = [
949
+ var ServiceLevelObjective$ = [
950
950
  3,
951
951
  n0,
952
952
  _SLO,
@@ -958,23 +958,23 @@ var ServiceLevelObjective = [
958
958
  0,
959
959
  4,
960
960
  4,
961
- () => ServiceLevelIndicator,
962
- () => RequestBasedServiceLevelIndicator,
961
+ () => ServiceLevelIndicator$,
962
+ () => RequestBasedServiceLevelIndicator$,
963
963
  0,
964
- () => Goal,
964
+ () => Goal$,
965
965
  () => BurnRateConfigurations,
966
966
  0,
967
967
  ],
968
968
  ];
969
- var ServiceLevelObjectiveBudgetReport = [
969
+ var ServiceLevelObjectiveBudgetReport$ = [
970
970
  3,
971
971
  n0,
972
972
  _SLOBR,
973
973
  0,
974
974
  [_Ar, _N, _ETv, _BS, _At, _TBS, _BSR, _TBR, _BRR, _Sli, _RBS, _G],
975
- [0, 0, 0, 0, 1, 1, 1, 1, 1, () => ServiceLevelIndicator, () => RequestBasedServiceLevelIndicator, () => Goal],
975
+ [0, 0, 0, 0, 1, 1, 1, 1, 1, () => ServiceLevelIndicator$, () => RequestBasedServiceLevelIndicator$, () => Goal$],
976
976
  ];
977
- var ServiceLevelObjectiveBudgetReportError = [
977
+ var ServiceLevelObjectiveBudgetReportError$ = [
978
978
  3,
979
979
  n0,
980
980
  _SLOBRE,
@@ -982,27 +982,27 @@ var ServiceLevelObjectiveBudgetReportError = [
982
982
  [_N, _Ar, _EC, _EM],
983
983
  [0, 0, 0, 0],
984
984
  ];
985
- var ServiceLevelObjectiveEntity = [3, n0, _SLOE, 0, [_SN, _SA], [0, 0]];
986
- var ServiceLevelObjectiveSummary = [
985
+ var ServiceLevelObjectiveEntity$ = [3, n0, _SLOE, 0, [_SN, _SA], [0, 0]];
986
+ var ServiceLevelObjectiveSummary$ = [
987
987
  3,
988
988
  n0,
989
989
  _SLOS,
990
990
  0,
991
991
  [_Ar, _N, _KA, _ON, _DC, _CTr, _ETv, _MSTe],
992
- [0, 0, 128 | 0, 0, () => DependencyConfig, 4, 0, 0],
992
+ [0, 0, 128 | 0, 0, () => DependencyConfig$, 4, 0, 0],
993
993
  ];
994
- var ServiceOperation = [3, n0, _SOe, 0, [_N, _MRet], [0, () => MetricReferences]];
995
- var ServiceOperationEntity = [
994
+ var ServiceOperation$ = [3, n0, _SOe, 0, [_N, _MRet], [0, () => MetricReferences]];
995
+ var ServiceOperationEntity$ = [
996
996
  3,
997
997
  n0,
998
998
  _SOE,
999
999
  0,
1000
1000
  [_Se, _O, _MT],
1001
- [() => ServiceEntity, 0, 0],
1001
+ [() => ServiceEntity$, 0, 0],
1002
1002
  ];
1003
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
1004
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1005
- var ServiceState = [
1003
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
1004
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1005
+ var ServiceState$ = [
1006
1006
  3,
1007
1007
  n0,
1008
1008
  _SServ,
@@ -1010,7 +1010,7 @@ var ServiceState = [
1010
1010
  [_AFt, _Se, _LCE],
1011
1011
  [() => AttributeFilters, 128 | 0, () => LatestChangeEvents],
1012
1012
  ];
1013
- var ServiceSummary = [
1013
+ var ServiceSummary$ = [
1014
1014
  3,
1015
1015
  n0,
1016
1016
  _SServi,
@@ -1018,16 +1018,16 @@ var ServiceSummary = [
1018
1018
  [_KA, _AM, _MRet, _SG],
1019
1019
  [128 | 0, [1, n0, _AM, 0, 128 | 0], () => MetricReferences, () => ServiceGroups],
1020
1020
  ];
1021
- var StartDiscoveryInput = [3, n0, _SDI, 0, [], []];
1022
- var StartDiscoveryOutput = [3, n0, _SDO, 0, [], []];
1023
- var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
1024
- var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [0, () => TagList]];
1025
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1026
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
1027
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1028
- var UntagResourceRequest = [3, n0, _URR, 0, [_RA, _TK], [0, 64 | 0]];
1029
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1030
- var UpdateServiceLevelObjectiveInput = [
1021
+ var StartDiscoveryInput$ = [3, n0, _SDI, 0, [], []];
1022
+ var StartDiscoveryOutput$ = [3, n0, _SDO, 0, [], []];
1023
+ var Tag$ = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
1024
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _Ta], [0, () => TagList]];
1025
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
1026
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
1027
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1028
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_RA, _TK], [0, 64 | 0]];
1029
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
1030
+ var UpdateServiceLevelObjectiveInput$ = [
1031
1031
  3,
1032
1032
  n0,
1033
1033
  _USLOI,
@@ -1036,21 +1036,21 @@ var UpdateServiceLevelObjectiveInput = [
1036
1036
  [
1037
1037
  [0, 1],
1038
1038
  0,
1039
- () => ServiceLevelIndicatorConfig,
1040
- () => RequestBasedServiceLevelIndicatorConfig,
1041
- () => Goal,
1039
+ () => ServiceLevelIndicatorConfig$,
1040
+ () => RequestBasedServiceLevelIndicatorConfig$,
1041
+ () => Goal$,
1042
1042
  () => BurnRateConfigurations,
1043
1043
  ],
1044
1044
  ];
1045
- var UpdateServiceLevelObjectiveOutput = [
1045
+ var UpdateServiceLevelObjectiveOutput$ = [
1046
1046
  3,
1047
1047
  n0,
1048
1048
  _USLOO,
1049
1049
  0,
1050
1050
  [_Sl],
1051
- [() => ServiceLevelObjective],
1051
+ [() => ServiceLevelObjective$],
1052
1052
  ];
1053
- var ValidationException = [
1053
+ var ValidationException$ = [
1054
1054
  -3,
1055
1055
  n0,
1056
1056
  _VE,
@@ -1058,10 +1058,10 @@ var ValidationException = [
1058
1058
  [_m],
1059
1059
  [0],
1060
1060
  ];
1061
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1062
- var Window = [3, n0, _W, 0, [_DU, _Du], [0, 1]];
1061
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1062
+ var Window$ = [3, n0, _W, 0, [_DU, _Du], [0, 1]];
1063
1063
  var __Unit = "unit";
1064
- var ApplicationSignalsServiceException = [
1064
+ var ApplicationSignalsServiceException$ = [
1065
1065
  -3,
1066
1066
  _s,
1067
1067
  "ApplicationSignalsServiceException",
@@ -1069,67 +1069,61 @@ var ApplicationSignalsServiceException = [
1069
1069
  [],
1070
1070
  [],
1071
1071
  ];
1072
- schema.TypeRegistry.for(_s).registerError(ApplicationSignalsServiceException, ApplicationSignalsServiceException$1);
1073
- var AttributeFilters = [1, n0, _AFt, 0, () => AttributeFilter];
1074
- var AuditFindings = [1, n0, _AFud, 0, () => AuditFinding];
1075
- var AuditorResults = [1, n0, _AR, 0, () => AuditorResult];
1076
- var AuditTargets = [1, n0, _ATu, 0, () => AuditTarget];
1077
- var BatchUpdateExclusionWindowsErrors = [
1078
- 1,
1079
- n0,
1080
- _BUEWEa,
1081
- 0,
1082
- () => BatchUpdateExclusionWindowsError,
1083
- ];
1084
- var BurnRateConfigurations = [1, n0, _BRCu, 0, () => BurnRateConfiguration];
1085
- var ChangeEvents = [1, n0, _CEha, 0, () => ChangeEvent];
1086
- var Dimensions = [1, n0, _Dim, 0, () => Dimension];
1087
- var Edges = [1, n0, _Ed, 0, () => Edge];
1088
- var ExclusionWindows = [1, n0, _EWx, 0, () => ExclusionWindow];
1089
- var GroupingAttributeDefinitions = [1, n0, _GADr, 0, () => GroupingAttributeDefinition];
1090
- var LatestChangeEvents = [1, n0, _LCE, 0, () => ChangeEvent];
1091
- var MetricDataQueries = [1, n0, _MDQe, 0, () => MetricDataQuery];
1092
- var MetricReferences = [1, n0, _MRet, 0, () => MetricReference];
1093
- var Nodes = [1, n0, _No, 0, () => Node];
1094
- var ServiceDependencies = [1, n0, _SD, 0, () => ServiceDependency];
1095
- var ServiceDependents = [1, n0, _SDe, 0, () => ServiceDependent];
1096
- var ServiceGroups = [1, n0, _SG, 0, () => ServiceGroup];
1072
+ schema.TypeRegistry.for(_s).registerError(ApplicationSignalsServiceException$, ApplicationSignalsServiceException);
1073
+ var AttributeFilters = [1, n0, _AFt, 0, () => AttributeFilter$];
1074
+ var AuditFindings = [1, n0, _AFud, 0, () => AuditFinding$];
1075
+ var AuditorResults = [1, n0, _AR, 0, () => AuditorResult$];
1076
+ var AuditTargets = [1, n0, _ATu, 0, () => AuditTarget$];
1077
+ var BatchUpdateExclusionWindowsErrors = [1, n0, _BUEWEa, 0, () => BatchUpdateExclusionWindowsError$];
1078
+ var BurnRateConfigurations = [1, n0, _BRCu, 0, () => BurnRateConfiguration$];
1079
+ var ChangeEvents = [1, n0, _CEha, 0, () => ChangeEvent$];
1080
+ var Dimensions = [1, n0, _Dim, 0, () => Dimension$];
1081
+ var Edges = [1, n0, _Ed, 0, () => Edge$];
1082
+ var ExclusionWindows = [1, n0, _EWx, 0, () => ExclusionWindow$];
1083
+ var GroupingAttributeDefinitions = [1, n0, _GADr, 0, () => GroupingAttributeDefinition$];
1084
+ var LatestChangeEvents = [1, n0, _LCE, 0, () => ChangeEvent$];
1085
+ var MetricDataQueries = [1, n0, _MDQe, 0, () => MetricDataQuery$];
1086
+ var MetricReferences = [1, n0, _MRet, 0, () => MetricReference$];
1087
+ var Nodes = [1, n0, _No, 0, () => Node$];
1088
+ var ServiceDependencies = [1, n0, _SD, 0, () => ServiceDependency$];
1089
+ var ServiceDependents = [1, n0, _SDe, 0, () => ServiceDependent$];
1090
+ var ServiceGroups = [1, n0, _SG, 0, () => ServiceGroup$];
1097
1091
  var ServiceLevelObjectiveBudgetReportErrors = [
1098
1092
  1,
1099
1093
  n0,
1100
1094
  _SLOBREe,
1101
1095
  0,
1102
- () => ServiceLevelObjectiveBudgetReportError,
1096
+ () => ServiceLevelObjectiveBudgetReportError$,
1103
1097
  ];
1104
1098
  var ServiceLevelObjectiveBudgetReports = [
1105
1099
  1,
1106
1100
  n0,
1107
1101
  _SLOBRe,
1108
1102
  0,
1109
- () => ServiceLevelObjectiveBudgetReport,
1103
+ () => ServiceLevelObjectiveBudgetReport$,
1110
1104
  ];
1111
- var ServiceLevelObjectiveSummaries = [1, n0, _SLOSe, 0, () => ServiceLevelObjectiveSummary];
1112
- var ServiceOperations = [1, n0, _SO, 0, () => ServiceOperation];
1113
- var ServiceStates = [1, n0, _SSer, 0, () => ServiceState];
1114
- var ServiceSummaries = [1, n0, _SSe, 0, () => ServiceSummary];
1115
- var TagList = [1, n0, _TL, 0, () => Tag];
1116
- var AuditTargetEntity = [
1105
+ var ServiceLevelObjectiveSummaries = [1, n0, _SLOSe, 0, () => ServiceLevelObjectiveSummary$];
1106
+ var ServiceOperations = [1, n0, _SO, 0, () => ServiceOperation$];
1107
+ var ServiceStates = [1, n0, _SSer, 0, () => ServiceState$];
1108
+ var ServiceSummaries = [1, n0, _SSe, 0, () => ServiceSummary$];
1109
+ var TagList = [1, n0, _TL, 0, () => Tag$];
1110
+ var AuditTargetEntity$ = [
1117
1111
  3,
1118
1112
  n0,
1119
1113
  _ATE,
1120
1114
  0,
1121
1115
  [_Se, _Sl, _SOe, _C],
1122
- [() => ServiceEntity, () => ServiceLevelObjectiveEntity, () => ServiceOperationEntity, () => CanaryEntity],
1116
+ [() => ServiceEntity$, () => ServiceLevelObjectiveEntity$, () => ServiceOperationEntity$, () => CanaryEntity$],
1123
1117
  ];
1124
- var Interval = [
1118
+ var Interval$ = [
1125
1119
  3,
1126
1120
  n0,
1127
1121
  _In,
1128
1122
  0,
1129
1123
  [_RIo, _CI],
1130
- [() => RollingInterval, () => CalendarInterval],
1124
+ [() => RollingInterval$, () => CalendarInterval$],
1131
1125
  ];
1132
- var MonitoredRequestCountMetricDataQueries = [
1126
+ var MonitoredRequestCountMetricDataQueries$ = [
1133
1127
  3,
1134
1128
  n0,
1135
1129
  _MRCMDQ,
@@ -1137,189 +1131,189 @@ var MonitoredRequestCountMetricDataQueries = [
1137
1131
  [_GCM, _BCM],
1138
1132
  [() => MetricDataQueries, () => MetricDataQueries],
1139
1133
  ];
1140
- var BatchGetServiceLevelObjectiveBudgetReport = [
1134
+ var BatchGetServiceLevelObjectiveBudgetReport$ = [
1141
1135
  9,
1142
1136
  n0,
1143
1137
  _BGSLOBR,
1144
1138
  { [_h]: ["POST", "/budget-report", 200] },
1145
- () => BatchGetServiceLevelObjectiveBudgetReportInput,
1146
- () => BatchGetServiceLevelObjectiveBudgetReportOutput,
1139
+ () => BatchGetServiceLevelObjectiveBudgetReportInput$,
1140
+ () => BatchGetServiceLevelObjectiveBudgetReportOutput$,
1147
1141
  ];
1148
- var BatchUpdateExclusionWindows = [
1142
+ var BatchUpdateExclusionWindows$ = [
1149
1143
  9,
1150
1144
  n0,
1151
1145
  _BUEW,
1152
1146
  { [_h]: ["PATCH", "/exclusion-windows", 200] },
1153
- () => BatchUpdateExclusionWindowsInput,
1154
- () => BatchUpdateExclusionWindowsOutput,
1147
+ () => BatchUpdateExclusionWindowsInput$,
1148
+ () => BatchUpdateExclusionWindowsOutput$,
1155
1149
  ];
1156
- var CreateServiceLevelObjective = [
1150
+ var CreateServiceLevelObjective$ = [
1157
1151
  9,
1158
1152
  n0,
1159
1153
  _CSLO,
1160
1154
  { [_h]: ["POST", "/slo", 200] },
1161
- () => CreateServiceLevelObjectiveInput,
1162
- () => CreateServiceLevelObjectiveOutput,
1155
+ () => CreateServiceLevelObjectiveInput$,
1156
+ () => CreateServiceLevelObjectiveOutput$,
1163
1157
  ];
1164
- var DeleteGroupingConfiguration = [
1158
+ var DeleteGroupingConfiguration$ = [
1165
1159
  9,
1166
1160
  n0,
1167
1161
  _DGC,
1168
1162
  { [_h]: ["DELETE", "/grouping-configuration", 200] },
1169
1163
  () => __Unit,
1170
- () => DeleteGroupingConfigurationOutput,
1164
+ () => DeleteGroupingConfigurationOutput$,
1171
1165
  ];
1172
- var DeleteServiceLevelObjective = [
1166
+ var DeleteServiceLevelObjective$ = [
1173
1167
  9,
1174
1168
  n0,
1175
1169
  _DSLO,
1176
1170
  { [_h]: ["DELETE", "/slo/{Id}", 200] },
1177
- () => DeleteServiceLevelObjectiveInput,
1178
- () => DeleteServiceLevelObjectiveOutput,
1171
+ () => DeleteServiceLevelObjectiveInput$,
1172
+ () => DeleteServiceLevelObjectiveOutput$,
1179
1173
  ];
1180
- var GetService = [
1174
+ var GetService$ = [
1181
1175
  9,
1182
1176
  n0,
1183
1177
  _GSe,
1184
1178
  { [_h]: ["POST", "/service", 200] },
1185
- () => GetServiceInput,
1186
- () => GetServiceOutput,
1179
+ () => GetServiceInput$,
1180
+ () => GetServiceOutput$,
1187
1181
  ];
1188
- var GetServiceLevelObjective = [
1182
+ var GetServiceLevelObjective$ = [
1189
1183
  9,
1190
1184
  n0,
1191
1185
  _GSLO,
1192
1186
  { [_h]: ["GET", "/slo/{Id}", 200] },
1193
- () => GetServiceLevelObjectiveInput,
1194
- () => GetServiceLevelObjectiveOutput,
1187
+ () => GetServiceLevelObjectiveInput$,
1188
+ () => GetServiceLevelObjectiveOutput$,
1195
1189
  ];
1196
- var ListAuditFindings = [
1190
+ var ListAuditFindings$ = [
1197
1191
  9,
1198
1192
  n0,
1199
1193
  _LAF,
1200
1194
  { [_h]: ["POST", "/auditFindings", 200] },
1201
- () => ListAuditFindingsInput,
1202
- () => ListAuditFindingsOutput,
1195
+ () => ListAuditFindingsInput$,
1196
+ () => ListAuditFindingsOutput$,
1203
1197
  ];
1204
- var ListEntityEvents = [
1198
+ var ListEntityEvents$ = [
1205
1199
  9,
1206
1200
  n0,
1207
1201
  _LEE,
1208
1202
  { [_h]: ["POST", "/events", 200] },
1209
- () => ListEntityEventsInput,
1210
- () => ListEntityEventsOutput,
1203
+ () => ListEntityEventsInput$,
1204
+ () => ListEntityEventsOutput$,
1211
1205
  ];
1212
- var ListGroupingAttributeDefinitions = [
1206
+ var ListGroupingAttributeDefinitions$ = [
1213
1207
  9,
1214
1208
  n0,
1215
1209
  _LGAD,
1216
1210
  { [_h]: ["POST", "/grouping-attribute-definitions", 200] },
1217
- () => ListGroupingAttributeDefinitionsInput,
1218
- () => ListGroupingAttributeDefinitionsOutput,
1211
+ () => ListGroupingAttributeDefinitionsInput$,
1212
+ () => ListGroupingAttributeDefinitionsOutput$,
1219
1213
  ];
1220
- var ListServiceDependencies = [
1214
+ var ListServiceDependencies$ = [
1221
1215
  9,
1222
1216
  n0,
1223
1217
  _LSD,
1224
1218
  { [_h]: ["POST", "/service-dependencies", 200] },
1225
- () => ListServiceDependenciesInput,
1226
- () => ListServiceDependenciesOutput,
1219
+ () => ListServiceDependenciesInput$,
1220
+ () => ListServiceDependenciesOutput$,
1227
1221
  ];
1228
- var ListServiceDependents = [
1222
+ var ListServiceDependents$ = [
1229
1223
  9,
1230
1224
  n0,
1231
1225
  _LSDi,
1232
1226
  { [_h]: ["POST", "/service-dependents", 200] },
1233
- () => ListServiceDependentsInput,
1234
- () => ListServiceDependentsOutput,
1227
+ () => ListServiceDependentsInput$,
1228
+ () => ListServiceDependentsOutput$,
1235
1229
  ];
1236
- var ListServiceLevelObjectiveExclusionWindows = [
1230
+ var ListServiceLevelObjectiveExclusionWindows$ = [
1237
1231
  9,
1238
1232
  n0,
1239
1233
  _LSLOEW,
1240
1234
  { [_h]: ["GET", "/slo/{Id}/exclusion-windows", 200] },
1241
- () => ListServiceLevelObjectiveExclusionWindowsInput,
1242
- () => ListServiceLevelObjectiveExclusionWindowsOutput,
1235
+ () => ListServiceLevelObjectiveExclusionWindowsInput$,
1236
+ () => ListServiceLevelObjectiveExclusionWindowsOutput$,
1243
1237
  ];
1244
- var ListServiceLevelObjectives = [
1238
+ var ListServiceLevelObjectives$ = [
1245
1239
  9,
1246
1240
  n0,
1247
1241
  _LSLO,
1248
1242
  { [_h]: ["POST", "/slos", 200] },
1249
- () => ListServiceLevelObjectivesInput,
1250
- () => ListServiceLevelObjectivesOutput,
1243
+ () => ListServiceLevelObjectivesInput$,
1244
+ () => ListServiceLevelObjectivesOutput$,
1251
1245
  ];
1252
- var ListServiceOperations = [
1246
+ var ListServiceOperations$ = [
1253
1247
  9,
1254
1248
  n0,
1255
1249
  _LSOi,
1256
1250
  { [_h]: ["POST", "/service-operations", 200] },
1257
- () => ListServiceOperationsInput,
1258
- () => ListServiceOperationsOutput,
1251
+ () => ListServiceOperationsInput$,
1252
+ () => ListServiceOperationsOutput$,
1259
1253
  ];
1260
- var ListServices = [
1254
+ var ListServices$ = [
1261
1255
  9,
1262
1256
  n0,
1263
1257
  _LS,
1264
1258
  { [_h]: ["GET", "/services", 200] },
1265
- () => ListServicesInput,
1266
- () => ListServicesOutput,
1259
+ () => ListServicesInput$,
1260
+ () => ListServicesOutput$,
1267
1261
  ];
1268
- var ListServiceStates = [
1262
+ var ListServiceStates$ = [
1269
1263
  9,
1270
1264
  n0,
1271
1265
  _LSS,
1272
1266
  { [_h]: ["POST", "/service/states", 200] },
1273
- () => ListServiceStatesInput,
1274
- () => ListServiceStatesOutput,
1267
+ () => ListServiceStatesInput$,
1268
+ () => ListServiceStatesOutput$,
1275
1269
  ];
1276
- var ListTagsForResource = [
1270
+ var ListTagsForResource$ = [
1277
1271
  9,
1278
1272
  n0,
1279
1273
  _LTFR,
1280
1274
  { [_h]: ["GET", "/tags", 200] },
1281
- () => ListTagsForResourceRequest,
1282
- () => ListTagsForResourceResponse,
1275
+ () => ListTagsForResourceRequest$,
1276
+ () => ListTagsForResourceResponse$,
1283
1277
  ];
1284
- var PutGroupingConfiguration = [
1278
+ var PutGroupingConfiguration$ = [
1285
1279
  9,
1286
1280
  n0,
1287
1281
  _PGC,
1288
1282
  { [_h]: ["PUT", "/grouping-configuration", 200] },
1289
- () => PutGroupingConfigurationInput,
1290
- () => PutGroupingConfigurationOutput,
1283
+ () => PutGroupingConfigurationInput$,
1284
+ () => PutGroupingConfigurationOutput$,
1291
1285
  ];
1292
- var StartDiscovery = [
1286
+ var StartDiscovery$ = [
1293
1287
  9,
1294
1288
  n0,
1295
1289
  _SDt,
1296
1290
  { [_h]: ["POST", "/start-discovery", 200] },
1297
- () => StartDiscoveryInput,
1298
- () => StartDiscoveryOutput,
1291
+ () => StartDiscoveryInput$,
1292
+ () => StartDiscoveryOutput$,
1299
1293
  ];
1300
- var TagResource = [
1294
+ var TagResource$ = [
1301
1295
  9,
1302
1296
  n0,
1303
1297
  _TR,
1304
1298
  { [_h]: ["POST", "/tag-resource", 200] },
1305
- () => TagResourceRequest,
1306
- () => TagResourceResponse,
1299
+ () => TagResourceRequest$,
1300
+ () => TagResourceResponse$,
1307
1301
  ];
1308
- var UntagResource = [
1302
+ var UntagResource$ = [
1309
1303
  9,
1310
1304
  n0,
1311
1305
  _UR,
1312
1306
  { [_h]: ["POST", "/untag-resource", 200] },
1313
- () => UntagResourceRequest,
1314
- () => UntagResourceResponse,
1307
+ () => UntagResourceRequest$,
1308
+ () => UntagResourceResponse$,
1315
1309
  ];
1316
- var UpdateServiceLevelObjective = [
1310
+ var UpdateServiceLevelObjective$ = [
1317
1311
  9,
1318
1312
  n0,
1319
1313
  _USLO,
1320
1314
  { [_h]: ["PATCH", "/slo/{Id}", 200] },
1321
- () => UpdateServiceLevelObjectiveInput,
1322
- () => UpdateServiceLevelObjectiveOutput,
1315
+ () => UpdateServiceLevelObjectiveInput$,
1316
+ () => UpdateServiceLevelObjectiveOutput$,
1323
1317
  ];
1324
1318
 
1325
1319
  class BatchGetServiceLevelObjectiveBudgetReportCommand extends smithyClient.Command
@@ -1330,7 +1324,7 @@ class BatchGetServiceLevelObjectiveBudgetReportCommand extends smithyClient.Comm
1330
1324
  })
1331
1325
  .s("ApplicationSignals", "BatchGetServiceLevelObjectiveBudgetReport", {})
1332
1326
  .n("ApplicationSignalsClient", "BatchGetServiceLevelObjectiveBudgetReportCommand")
1333
- .sc(BatchGetServiceLevelObjectiveBudgetReport)
1327
+ .sc(BatchGetServiceLevelObjectiveBudgetReport$)
1334
1328
  .build() {
1335
1329
  }
1336
1330
 
@@ -1342,7 +1336,7 @@ class BatchUpdateExclusionWindowsCommand extends smithyClient.Command
1342
1336
  })
1343
1337
  .s("ApplicationSignals", "BatchUpdateExclusionWindows", {})
1344
1338
  .n("ApplicationSignalsClient", "BatchUpdateExclusionWindowsCommand")
1345
- .sc(BatchUpdateExclusionWindows)
1339
+ .sc(BatchUpdateExclusionWindows$)
1346
1340
  .build() {
1347
1341
  }
1348
1342
 
@@ -1354,7 +1348,7 @@ class CreateServiceLevelObjectiveCommand extends smithyClient.Command
1354
1348
  })
1355
1349
  .s("ApplicationSignals", "CreateServiceLevelObjective", {})
1356
1350
  .n("ApplicationSignalsClient", "CreateServiceLevelObjectiveCommand")
1357
- .sc(CreateServiceLevelObjective)
1351
+ .sc(CreateServiceLevelObjective$)
1358
1352
  .build() {
1359
1353
  }
1360
1354
 
@@ -1366,7 +1360,7 @@ class DeleteGroupingConfigurationCommand extends smithyClient.Command
1366
1360
  })
1367
1361
  .s("ApplicationSignals", "DeleteGroupingConfiguration", {})
1368
1362
  .n("ApplicationSignalsClient", "DeleteGroupingConfigurationCommand")
1369
- .sc(DeleteGroupingConfiguration)
1363
+ .sc(DeleteGroupingConfiguration$)
1370
1364
  .build() {
1371
1365
  }
1372
1366
 
@@ -1378,7 +1372,7 @@ class DeleteServiceLevelObjectiveCommand extends smithyClient.Command
1378
1372
  })
1379
1373
  .s("ApplicationSignals", "DeleteServiceLevelObjective", {})
1380
1374
  .n("ApplicationSignalsClient", "DeleteServiceLevelObjectiveCommand")
1381
- .sc(DeleteServiceLevelObjective)
1375
+ .sc(DeleteServiceLevelObjective$)
1382
1376
  .build() {
1383
1377
  }
1384
1378
 
@@ -1390,7 +1384,7 @@ class GetServiceCommand extends smithyClient.Command
1390
1384
  })
1391
1385
  .s("ApplicationSignals", "GetService", {})
1392
1386
  .n("ApplicationSignalsClient", "GetServiceCommand")
1393
- .sc(GetService)
1387
+ .sc(GetService$)
1394
1388
  .build() {
1395
1389
  }
1396
1390
 
@@ -1402,7 +1396,7 @@ class GetServiceLevelObjectiveCommand extends smithyClient.Command
1402
1396
  })
1403
1397
  .s("ApplicationSignals", "GetServiceLevelObjective", {})
1404
1398
  .n("ApplicationSignalsClient", "GetServiceLevelObjectiveCommand")
1405
- .sc(GetServiceLevelObjective)
1399
+ .sc(GetServiceLevelObjective$)
1406
1400
  .build() {
1407
1401
  }
1408
1402
 
@@ -1414,7 +1408,7 @@ class ListAuditFindingsCommand extends smithyClient.Command
1414
1408
  })
1415
1409
  .s("ApplicationSignals", "ListAuditFindings", {})
1416
1410
  .n("ApplicationSignalsClient", "ListAuditFindingsCommand")
1417
- .sc(ListAuditFindings)
1411
+ .sc(ListAuditFindings$)
1418
1412
  .build() {
1419
1413
  }
1420
1414
 
@@ -1426,7 +1420,7 @@ class ListEntityEventsCommand extends smithyClient.Command
1426
1420
  })
1427
1421
  .s("ApplicationSignals", "ListEntityEvents", {})
1428
1422
  .n("ApplicationSignalsClient", "ListEntityEventsCommand")
1429
- .sc(ListEntityEvents)
1423
+ .sc(ListEntityEvents$)
1430
1424
  .build() {
1431
1425
  }
1432
1426
 
@@ -1438,7 +1432,7 @@ class ListGroupingAttributeDefinitionsCommand extends smithyClient.Command
1438
1432
  })
1439
1433
  .s("ApplicationSignals", "ListGroupingAttributeDefinitions", {})
1440
1434
  .n("ApplicationSignalsClient", "ListGroupingAttributeDefinitionsCommand")
1441
- .sc(ListGroupingAttributeDefinitions)
1435
+ .sc(ListGroupingAttributeDefinitions$)
1442
1436
  .build() {
1443
1437
  }
1444
1438
 
@@ -1450,7 +1444,7 @@ class ListServiceDependenciesCommand extends smithyClient.Command
1450
1444
  })
1451
1445
  .s("ApplicationSignals", "ListServiceDependencies", {})
1452
1446
  .n("ApplicationSignalsClient", "ListServiceDependenciesCommand")
1453
- .sc(ListServiceDependencies)
1447
+ .sc(ListServiceDependencies$)
1454
1448
  .build() {
1455
1449
  }
1456
1450
 
@@ -1462,7 +1456,7 @@ class ListServiceDependentsCommand extends smithyClient.Command
1462
1456
  })
1463
1457
  .s("ApplicationSignals", "ListServiceDependents", {})
1464
1458
  .n("ApplicationSignalsClient", "ListServiceDependentsCommand")
1465
- .sc(ListServiceDependents)
1459
+ .sc(ListServiceDependents$)
1466
1460
  .build() {
1467
1461
  }
1468
1462
 
@@ -1474,7 +1468,7 @@ class ListServiceLevelObjectiveExclusionWindowsCommand extends smithyClient.Comm
1474
1468
  })
1475
1469
  .s("ApplicationSignals", "ListServiceLevelObjectiveExclusionWindows", {})
1476
1470
  .n("ApplicationSignalsClient", "ListServiceLevelObjectiveExclusionWindowsCommand")
1477
- .sc(ListServiceLevelObjectiveExclusionWindows)
1471
+ .sc(ListServiceLevelObjectiveExclusionWindows$)
1478
1472
  .build() {
1479
1473
  }
1480
1474
 
@@ -1486,7 +1480,7 @@ class ListServiceLevelObjectivesCommand extends smithyClient.Command
1486
1480
  })
1487
1481
  .s("ApplicationSignals", "ListServiceLevelObjectives", {})
1488
1482
  .n("ApplicationSignalsClient", "ListServiceLevelObjectivesCommand")
1489
- .sc(ListServiceLevelObjectives)
1483
+ .sc(ListServiceLevelObjectives$)
1490
1484
  .build() {
1491
1485
  }
1492
1486
 
@@ -1498,7 +1492,7 @@ class ListServiceOperationsCommand extends smithyClient.Command
1498
1492
  })
1499
1493
  .s("ApplicationSignals", "ListServiceOperations", {})
1500
1494
  .n("ApplicationSignalsClient", "ListServiceOperationsCommand")
1501
- .sc(ListServiceOperations)
1495
+ .sc(ListServiceOperations$)
1502
1496
  .build() {
1503
1497
  }
1504
1498
 
@@ -1510,7 +1504,7 @@ class ListServicesCommand extends smithyClient.Command
1510
1504
  })
1511
1505
  .s("ApplicationSignals", "ListServices", {})
1512
1506
  .n("ApplicationSignalsClient", "ListServicesCommand")
1513
- .sc(ListServices)
1507
+ .sc(ListServices$)
1514
1508
  .build() {
1515
1509
  }
1516
1510
 
@@ -1522,7 +1516,7 @@ class ListServiceStatesCommand extends smithyClient.Command
1522
1516
  })
1523
1517
  .s("ApplicationSignals", "ListServiceStates", {})
1524
1518
  .n("ApplicationSignalsClient", "ListServiceStatesCommand")
1525
- .sc(ListServiceStates)
1519
+ .sc(ListServiceStates$)
1526
1520
  .build() {
1527
1521
  }
1528
1522
 
@@ -1534,7 +1528,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1534
1528
  })
1535
1529
  .s("ApplicationSignals", "ListTagsForResource", {})
1536
1530
  .n("ApplicationSignalsClient", "ListTagsForResourceCommand")
1537
- .sc(ListTagsForResource)
1531
+ .sc(ListTagsForResource$)
1538
1532
  .build() {
1539
1533
  }
1540
1534
 
@@ -1546,7 +1540,7 @@ class PutGroupingConfigurationCommand extends smithyClient.Command
1546
1540
  })
1547
1541
  .s("ApplicationSignals", "PutGroupingConfiguration", {})
1548
1542
  .n("ApplicationSignalsClient", "PutGroupingConfigurationCommand")
1549
- .sc(PutGroupingConfiguration)
1543
+ .sc(PutGroupingConfiguration$)
1550
1544
  .build() {
1551
1545
  }
1552
1546
 
@@ -1558,7 +1552,7 @@ class StartDiscoveryCommand extends smithyClient.Command
1558
1552
  })
1559
1553
  .s("ApplicationSignals", "StartDiscovery", {})
1560
1554
  .n("ApplicationSignalsClient", "StartDiscoveryCommand")
1561
- .sc(StartDiscovery)
1555
+ .sc(StartDiscovery$)
1562
1556
  .build() {
1563
1557
  }
1564
1558
 
@@ -1570,7 +1564,7 @@ class TagResourceCommand extends smithyClient.Command
1570
1564
  })
1571
1565
  .s("ApplicationSignals", "TagResource", {})
1572
1566
  .n("ApplicationSignalsClient", "TagResourceCommand")
1573
- .sc(TagResource)
1567
+ .sc(TagResource$)
1574
1568
  .build() {
1575
1569
  }
1576
1570
 
@@ -1582,7 +1576,7 @@ class UntagResourceCommand extends smithyClient.Command
1582
1576
  })
1583
1577
  .s("ApplicationSignals", "UntagResource", {})
1584
1578
  .n("ApplicationSignalsClient", "UntagResourceCommand")
1585
- .sc(UntagResource)
1579
+ .sc(UntagResource$)
1586
1580
  .build() {
1587
1581
  }
1588
1582
 
@@ -1594,7 +1588,7 @@ class UpdateServiceLevelObjectiveCommand extends smithyClient.Command
1594
1588
  })
1595
1589
  .s("ApplicationSignals", "UpdateServiceLevelObjective", {})
1596
1590
  .n("ApplicationSignalsClient", "UpdateServiceLevelObjectiveCommand")
1597
- .sc(UpdateServiceLevelObjective)
1591
+ .sc(UpdateServiceLevelObjective$)
1598
1592
  .build() {
1599
1593
  }
1600
1594
 
@@ -1731,49 +1725,176 @@ Object.defineProperty(exports, "__Client", {
1731
1725
  enumerable: true,
1732
1726
  get: function () { return smithyClient.Client; }
1733
1727
  });
1734
- exports.AccessDeniedException = AccessDeniedException$1;
1728
+ exports.AccessDeniedException = AccessDeniedException;
1729
+ exports.AccessDeniedException$ = AccessDeniedException$;
1735
1730
  exports.ApplicationSignals = ApplicationSignals;
1736
1731
  exports.ApplicationSignalsClient = ApplicationSignalsClient;
1737
- exports.ApplicationSignalsServiceException = ApplicationSignalsServiceException$1;
1732
+ exports.ApplicationSignalsServiceException = ApplicationSignalsServiceException;
1733
+ exports.ApplicationSignalsServiceException$ = ApplicationSignalsServiceException$;
1734
+ exports.AttributeFilter$ = AttributeFilter$;
1735
+ exports.AuditFinding$ = AuditFinding$;
1736
+ exports.AuditTarget$ = AuditTarget$;
1737
+ exports.AuditTargetEntity$ = AuditTargetEntity$;
1738
+ exports.AuditorResult$ = AuditorResult$;
1739
+ exports.BatchGetServiceLevelObjectiveBudgetReport$ = BatchGetServiceLevelObjectiveBudgetReport$;
1738
1740
  exports.BatchGetServiceLevelObjectiveBudgetReportCommand = BatchGetServiceLevelObjectiveBudgetReportCommand;
1741
+ exports.BatchGetServiceLevelObjectiveBudgetReportInput$ = BatchGetServiceLevelObjectiveBudgetReportInput$;
1742
+ exports.BatchGetServiceLevelObjectiveBudgetReportOutput$ = BatchGetServiceLevelObjectiveBudgetReportOutput$;
1743
+ exports.BatchUpdateExclusionWindows$ = BatchUpdateExclusionWindows$;
1739
1744
  exports.BatchUpdateExclusionWindowsCommand = BatchUpdateExclusionWindowsCommand;
1745
+ exports.BatchUpdateExclusionWindowsError$ = BatchUpdateExclusionWindowsError$;
1746
+ exports.BatchUpdateExclusionWindowsInput$ = BatchUpdateExclusionWindowsInput$;
1747
+ exports.BatchUpdateExclusionWindowsOutput$ = BatchUpdateExclusionWindowsOutput$;
1748
+ exports.BurnRateConfiguration$ = BurnRateConfiguration$;
1749
+ exports.CalendarInterval$ = CalendarInterval$;
1750
+ exports.CanaryEntity$ = CanaryEntity$;
1751
+ exports.ChangeEvent$ = ChangeEvent$;
1740
1752
  exports.ChangeEventType = ChangeEventType;
1741
- exports.ConflictException = ConflictException$1;
1753
+ exports.ConflictException = ConflictException;
1754
+ exports.ConflictException$ = ConflictException$;
1742
1755
  exports.ConnectionType = ConnectionType;
1756
+ exports.CreateServiceLevelObjective$ = CreateServiceLevelObjective$;
1743
1757
  exports.CreateServiceLevelObjectiveCommand = CreateServiceLevelObjectiveCommand;
1758
+ exports.CreateServiceLevelObjectiveInput$ = CreateServiceLevelObjectiveInput$;
1759
+ exports.CreateServiceLevelObjectiveOutput$ = CreateServiceLevelObjectiveOutput$;
1760
+ exports.DeleteGroupingConfiguration$ = DeleteGroupingConfiguration$;
1744
1761
  exports.DeleteGroupingConfigurationCommand = DeleteGroupingConfigurationCommand;
1762
+ exports.DeleteGroupingConfigurationOutput$ = DeleteGroupingConfigurationOutput$;
1763
+ exports.DeleteServiceLevelObjective$ = DeleteServiceLevelObjective$;
1745
1764
  exports.DeleteServiceLevelObjectiveCommand = DeleteServiceLevelObjectiveCommand;
1765
+ exports.DeleteServiceLevelObjectiveInput$ = DeleteServiceLevelObjectiveInput$;
1766
+ exports.DeleteServiceLevelObjectiveOutput$ = DeleteServiceLevelObjectiveOutput$;
1767
+ exports.DependencyConfig$ = DependencyConfig$;
1768
+ exports.DependencyGraph$ = DependencyGraph$;
1746
1769
  exports.DetailLevel = DetailLevel;
1770
+ exports.Dimension$ = Dimension$;
1747
1771
  exports.DurationUnit = DurationUnit;
1772
+ exports.Edge$ = Edge$;
1748
1773
  exports.EvaluationType = EvaluationType;
1774
+ exports.ExclusionWindow$ = ExclusionWindow$;
1775
+ exports.GetService$ = GetService$;
1749
1776
  exports.GetServiceCommand = GetServiceCommand;
1777
+ exports.GetServiceInput$ = GetServiceInput$;
1778
+ exports.GetServiceLevelObjective$ = GetServiceLevelObjective$;
1750
1779
  exports.GetServiceLevelObjectiveCommand = GetServiceLevelObjectiveCommand;
1780
+ exports.GetServiceLevelObjectiveInput$ = GetServiceLevelObjectiveInput$;
1781
+ exports.GetServiceLevelObjectiveOutput$ = GetServiceLevelObjectiveOutput$;
1782
+ exports.GetServiceOutput$ = GetServiceOutput$;
1783
+ exports.Goal$ = Goal$;
1784
+ exports.GroupingAttributeDefinition$ = GroupingAttributeDefinition$;
1785
+ exports.GroupingConfiguration$ = GroupingConfiguration$;
1786
+ exports.Interval$ = Interval$;
1787
+ exports.ListAuditFindings$ = ListAuditFindings$;
1751
1788
  exports.ListAuditFindingsCommand = ListAuditFindingsCommand;
1789
+ exports.ListAuditFindingsInput$ = ListAuditFindingsInput$;
1790
+ exports.ListAuditFindingsOutput$ = ListAuditFindingsOutput$;
1791
+ exports.ListEntityEvents$ = ListEntityEvents$;
1752
1792
  exports.ListEntityEventsCommand = ListEntityEventsCommand;
1793
+ exports.ListEntityEventsInput$ = ListEntityEventsInput$;
1794
+ exports.ListEntityEventsOutput$ = ListEntityEventsOutput$;
1795
+ exports.ListGroupingAttributeDefinitions$ = ListGroupingAttributeDefinitions$;
1753
1796
  exports.ListGroupingAttributeDefinitionsCommand = ListGroupingAttributeDefinitionsCommand;
1797
+ exports.ListGroupingAttributeDefinitionsInput$ = ListGroupingAttributeDefinitionsInput$;
1798
+ exports.ListGroupingAttributeDefinitionsOutput$ = ListGroupingAttributeDefinitionsOutput$;
1799
+ exports.ListServiceDependencies$ = ListServiceDependencies$;
1754
1800
  exports.ListServiceDependenciesCommand = ListServiceDependenciesCommand;
1801
+ exports.ListServiceDependenciesInput$ = ListServiceDependenciesInput$;
1802
+ exports.ListServiceDependenciesOutput$ = ListServiceDependenciesOutput$;
1803
+ exports.ListServiceDependents$ = ListServiceDependents$;
1755
1804
  exports.ListServiceDependentsCommand = ListServiceDependentsCommand;
1805
+ exports.ListServiceDependentsInput$ = ListServiceDependentsInput$;
1806
+ exports.ListServiceDependentsOutput$ = ListServiceDependentsOutput$;
1807
+ exports.ListServiceLevelObjectiveExclusionWindows$ = ListServiceLevelObjectiveExclusionWindows$;
1756
1808
  exports.ListServiceLevelObjectiveExclusionWindowsCommand = ListServiceLevelObjectiveExclusionWindowsCommand;
1809
+ exports.ListServiceLevelObjectiveExclusionWindowsInput$ = ListServiceLevelObjectiveExclusionWindowsInput$;
1810
+ exports.ListServiceLevelObjectiveExclusionWindowsOutput$ = ListServiceLevelObjectiveExclusionWindowsOutput$;
1811
+ exports.ListServiceLevelObjectives$ = ListServiceLevelObjectives$;
1757
1812
  exports.ListServiceLevelObjectivesCommand = ListServiceLevelObjectivesCommand;
1813
+ exports.ListServiceLevelObjectivesInput$ = ListServiceLevelObjectivesInput$;
1814
+ exports.ListServiceLevelObjectivesOutput$ = ListServiceLevelObjectivesOutput$;
1815
+ exports.ListServiceOperations$ = ListServiceOperations$;
1758
1816
  exports.ListServiceOperationsCommand = ListServiceOperationsCommand;
1817
+ exports.ListServiceOperationsInput$ = ListServiceOperationsInput$;
1818
+ exports.ListServiceOperationsOutput$ = ListServiceOperationsOutput$;
1819
+ exports.ListServiceStates$ = ListServiceStates$;
1759
1820
  exports.ListServiceStatesCommand = ListServiceStatesCommand;
1821
+ exports.ListServiceStatesInput$ = ListServiceStatesInput$;
1822
+ exports.ListServiceStatesOutput$ = ListServiceStatesOutput$;
1823
+ exports.ListServices$ = ListServices$;
1760
1824
  exports.ListServicesCommand = ListServicesCommand;
1825
+ exports.ListServicesInput$ = ListServicesInput$;
1826
+ exports.ListServicesOutput$ = ListServicesOutput$;
1827
+ exports.ListTagsForResource$ = ListTagsForResource$;
1761
1828
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1829
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1830
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1831
+ exports.Metric$ = Metric$;
1832
+ exports.MetricDataQuery$ = MetricDataQuery$;
1833
+ exports.MetricGraph$ = MetricGraph$;
1834
+ exports.MetricReference$ = MetricReference$;
1762
1835
  exports.MetricSourceType = MetricSourceType;
1836
+ exports.MetricStat$ = MetricStat$;
1837
+ exports.MonitoredRequestCountMetricDataQueries$ = MonitoredRequestCountMetricDataQueries$;
1838
+ exports.Node$ = Node$;
1839
+ exports.PutGroupingConfiguration$ = PutGroupingConfiguration$;
1763
1840
  exports.PutGroupingConfigurationCommand = PutGroupingConfigurationCommand;
1764
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1841
+ exports.PutGroupingConfigurationInput$ = PutGroupingConfigurationInput$;
1842
+ exports.PutGroupingConfigurationOutput$ = PutGroupingConfigurationOutput$;
1843
+ exports.RecurrenceRule$ = RecurrenceRule$;
1844
+ exports.RequestBasedServiceLevelIndicator$ = RequestBasedServiceLevelIndicator$;
1845
+ exports.RequestBasedServiceLevelIndicatorConfig$ = RequestBasedServiceLevelIndicatorConfig$;
1846
+ exports.RequestBasedServiceLevelIndicatorMetric$ = RequestBasedServiceLevelIndicatorMetric$;
1847
+ exports.RequestBasedServiceLevelIndicatorMetricConfig$ = RequestBasedServiceLevelIndicatorMetricConfig$;
1848
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1849
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1850
+ exports.RollingInterval$ = RollingInterval$;
1851
+ exports.Service$ = Service$;
1852
+ exports.ServiceDependency$ = ServiceDependency$;
1853
+ exports.ServiceDependent$ = ServiceDependent$;
1854
+ exports.ServiceEntity$ = ServiceEntity$;
1855
+ exports.ServiceGroup$ = ServiceGroup$;
1856
+ exports.ServiceLevelIndicator$ = ServiceLevelIndicator$;
1765
1857
  exports.ServiceLevelIndicatorComparisonOperator = ServiceLevelIndicatorComparisonOperator;
1858
+ exports.ServiceLevelIndicatorConfig$ = ServiceLevelIndicatorConfig$;
1859
+ exports.ServiceLevelIndicatorMetric$ = ServiceLevelIndicatorMetric$;
1860
+ exports.ServiceLevelIndicatorMetricConfig$ = ServiceLevelIndicatorMetricConfig$;
1766
1861
  exports.ServiceLevelIndicatorMetricType = ServiceLevelIndicatorMetricType;
1862
+ exports.ServiceLevelObjective$ = ServiceLevelObjective$;
1863
+ exports.ServiceLevelObjectiveBudgetReport$ = ServiceLevelObjectiveBudgetReport$;
1864
+ exports.ServiceLevelObjectiveBudgetReportError$ = ServiceLevelObjectiveBudgetReportError$;
1767
1865
  exports.ServiceLevelObjectiveBudgetStatus = ServiceLevelObjectiveBudgetStatus;
1768
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1866
+ exports.ServiceLevelObjectiveEntity$ = ServiceLevelObjectiveEntity$;
1867
+ exports.ServiceLevelObjectiveSummary$ = ServiceLevelObjectiveSummary$;
1868
+ exports.ServiceOperation$ = ServiceOperation$;
1869
+ exports.ServiceOperationEntity$ = ServiceOperationEntity$;
1870
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1871
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1872
+ exports.ServiceState$ = ServiceState$;
1873
+ exports.ServiceSummary$ = ServiceSummary$;
1769
1874
  exports.Severity = Severity;
1770
1875
  exports.StandardUnit = StandardUnit;
1876
+ exports.StartDiscovery$ = StartDiscovery$;
1771
1877
  exports.StartDiscoveryCommand = StartDiscoveryCommand;
1878
+ exports.StartDiscoveryInput$ = StartDiscoveryInput$;
1879
+ exports.StartDiscoveryOutput$ = StartDiscoveryOutput$;
1880
+ exports.Tag$ = Tag$;
1881
+ exports.TagResource$ = TagResource$;
1772
1882
  exports.TagResourceCommand = TagResourceCommand;
1773
- exports.ThrottlingException = ThrottlingException$1;
1883
+ exports.TagResourceRequest$ = TagResourceRequest$;
1884
+ exports.TagResourceResponse$ = TagResourceResponse$;
1885
+ exports.ThrottlingException = ThrottlingException;
1886
+ exports.ThrottlingException$ = ThrottlingException$;
1887
+ exports.UntagResource$ = UntagResource$;
1774
1888
  exports.UntagResourceCommand = UntagResourceCommand;
1889
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1890
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1891
+ exports.UpdateServiceLevelObjective$ = UpdateServiceLevelObjective$;
1775
1892
  exports.UpdateServiceLevelObjectiveCommand = UpdateServiceLevelObjectiveCommand;
1776
- exports.ValidationException = ValidationException$1;
1893
+ exports.UpdateServiceLevelObjectiveInput$ = UpdateServiceLevelObjectiveInput$;
1894
+ exports.UpdateServiceLevelObjectiveOutput$ = UpdateServiceLevelObjectiveOutput$;
1895
+ exports.ValidationException = ValidationException;
1896
+ exports.ValidationException$ = ValidationException$;
1897
+ exports.Window$ = Window$;
1777
1898
  exports.paginateListEntityEvents = paginateListEntityEvents;
1778
1899
  exports.paginateListServiceDependencies = paginateListServiceDependencies;
1779
1900
  exports.paginateListServiceDependents = paginateListServiceDependents;