@aws-sdk/client-application-insights 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 (53) hide show
  1. package/dist-cjs/index.js +396 -264
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/AddWorkloadCommand.js +2 -2
  4. package/dist-es/commands/CreateApplicationCommand.js +2 -2
  5. package/dist-es/commands/CreateComponentCommand.js +2 -2
  6. package/dist-es/commands/CreateLogPatternCommand.js +2 -2
  7. package/dist-es/commands/DeleteApplicationCommand.js +2 -2
  8. package/dist-es/commands/DeleteComponentCommand.js +2 -2
  9. package/dist-es/commands/DeleteLogPatternCommand.js +2 -2
  10. package/dist-es/commands/DescribeApplicationCommand.js +2 -2
  11. package/dist-es/commands/DescribeComponentCommand.js +2 -2
  12. package/dist-es/commands/DescribeComponentConfigurationCommand.js +2 -2
  13. package/dist-es/commands/DescribeComponentConfigurationRecommendationCommand.js +2 -2
  14. package/dist-es/commands/DescribeLogPatternCommand.js +2 -2
  15. package/dist-es/commands/DescribeObservationCommand.js +2 -2
  16. package/dist-es/commands/DescribeProblemCommand.js +2 -2
  17. package/dist-es/commands/DescribeProblemObservationsCommand.js +2 -2
  18. package/dist-es/commands/DescribeWorkloadCommand.js +2 -2
  19. package/dist-es/commands/ListApplicationsCommand.js +2 -2
  20. package/dist-es/commands/ListComponentsCommand.js +2 -2
  21. package/dist-es/commands/ListConfigurationHistoryCommand.js +2 -2
  22. package/dist-es/commands/ListLogPatternSetsCommand.js +2 -2
  23. package/dist-es/commands/ListLogPatternsCommand.js +2 -2
  24. package/dist-es/commands/ListProblemsCommand.js +2 -2
  25. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  26. package/dist-es/commands/ListWorkloadsCommand.js +2 -2
  27. package/dist-es/commands/RemoveWorkloadCommand.js +2 -2
  28. package/dist-es/commands/TagResourceCommand.js +2 -2
  29. package/dist-es/commands/UntagResourceCommand.js +2 -2
  30. package/dist-es/commands/UpdateApplicationCommand.js +2 -2
  31. package/dist-es/commands/UpdateComponentCommand.js +2 -2
  32. package/dist-es/commands/UpdateComponentConfigurationCommand.js +2 -2
  33. package/dist-es/commands/UpdateLogPatternCommand.js +2 -2
  34. package/dist-es/commands/UpdateProblemCommand.js +2 -2
  35. package/dist-es/commands/UpdateWorkloadCommand.js +2 -2
  36. package/dist-es/index.js +1 -0
  37. package/dist-es/runtimeConfig.shared.js +6 -6
  38. package/dist-es/schemas/schemas_0.js +226 -212
  39. package/dist-types/ApplicationInsightsClient.d.ts +1 -10
  40. package/dist-types/index.d.ts +1 -0
  41. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  42. package/dist-types/runtimeConfig.d.ts +6 -2
  43. package/dist-types/runtimeConfig.native.d.ts +6 -2
  44. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  45. package/dist-types/schemas/schemas_0.d.ts +119 -133
  46. package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +0 -4
  47. package/dist-types/ts3.4/index.d.ts +1 -0
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  52. package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -134
  53. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class ApplicationInsightsClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let ApplicationInsightsServiceException$1 = class ApplicationInsightsServiceException extends smithyClient.ServiceException {
113
+ class ApplicationInsightsServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, ApplicationInsightsServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends ApplicationInsightsServiceException$1 {
120
+ class AccessDeniedException extends ApplicationInsightsServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ApplicationIns
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let InternalServerException$1 = class InternalServerException extends ApplicationInsightsServiceException$1 {
133
+ }
134
+ class InternalServerException extends ApplicationInsightsServiceException {
135
135
  name = "InternalServerException";
136
136
  $fault = "server";
137
137
  Message;
@@ -144,8 +144,8 @@ let InternalServerException$1 = class InternalServerException extends Applicatio
144
144
  Object.setPrototypeOf(this, InternalServerException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let ResourceInUseException$1 = class ResourceInUseException extends ApplicationInsightsServiceException$1 {
147
+ }
148
+ class ResourceInUseException extends ApplicationInsightsServiceException {
149
149
  name = "ResourceInUseException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,8 +158,8 @@ let ResourceInUseException$1 = class ResourceInUseException extends ApplicationI
158
158
  Object.setPrototypeOf(this, ResourceInUseException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- };
162
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ApplicationInsightsServiceException$1 {
161
+ }
162
+ class ResourceNotFoundException extends ApplicationInsightsServiceException {
163
163
  name = "ResourceNotFoundException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Applic
172
172
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let ValidationException$1 = class ValidationException extends ApplicationInsightsServiceException$1 {
175
+ }
176
+ class ValidationException extends ApplicationInsightsServiceException {
177
177
  name = "ValidationException";
178
178
  $fault = "client";
179
179
  Message;
@@ -186,8 +186,8 @@ let ValidationException$1 = class ValidationException extends ApplicationInsight
186
186
  Object.setPrototypeOf(this, ValidationException.prototype);
187
187
  this.Message = opts.Message;
188
188
  }
189
- };
190
- let BadRequestException$1 = class BadRequestException extends ApplicationInsightsServiceException$1 {
189
+ }
190
+ class BadRequestException extends ApplicationInsightsServiceException {
191
191
  name = "BadRequestException";
192
192
  $fault = "client";
193
193
  Message;
@@ -200,8 +200,8 @@ let BadRequestException$1 = class BadRequestException extends ApplicationInsight
200
200
  Object.setPrototypeOf(this, BadRequestException.prototype);
201
201
  this.Message = opts.Message;
202
202
  }
203
- };
204
- let TagsAlreadyExistException$1 = class TagsAlreadyExistException extends ApplicationInsightsServiceException$1 {
203
+ }
204
+ class TagsAlreadyExistException extends ApplicationInsightsServiceException {
205
205
  name = "TagsAlreadyExistException";
206
206
  $fault = "client";
207
207
  Message;
@@ -214,8 +214,8 @@ let TagsAlreadyExistException$1 = class TagsAlreadyExistException extends Applic
214
214
  Object.setPrototypeOf(this, TagsAlreadyExistException.prototype);
215
215
  this.Message = opts.Message;
216
216
  }
217
- };
218
- let TooManyTagsException$1 = class TooManyTagsException extends ApplicationInsightsServiceException$1 {
217
+ }
218
+ class TooManyTagsException extends ApplicationInsightsServiceException {
219
219
  name = "TooManyTagsException";
220
220
  $fault = "client";
221
221
  Message;
@@ -230,7 +230,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends ApplicationInsig
230
230
  this.Message = opts.Message;
231
231
  this.ResourceName = opts.ResourceName;
232
232
  }
233
- };
233
+ }
234
234
 
235
235
  const _AC = "ApplicationComponent";
236
236
  const _ACE = "AutoConfigEnabled";
@@ -474,7 +474,7 @@ const _hE = "httpError";
474
474
  const _s = "server";
475
475
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.applicationinsights";
476
476
  const n0 = "com.amazonaws.applicationinsights";
477
- var AccessDeniedException = [
477
+ var AccessDeniedException$ = [
478
478
  -3,
479
479
  n0,
480
480
  _ADE,
@@ -482,17 +482,24 @@ var AccessDeniedException = [
482
482
  [_M],
483
483
  [0],
484
484
  ];
485
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
486
- var AddWorkloadRequest = [
485
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
486
+ var AddWorkloadRequest$ = [
487
487
  3,
488
488
  n0,
489
489
  _AWR,
490
490
  0,
491
491
  [_RGN, _CN, _WC],
492
- [0, 0, () => WorkloadConfiguration],
492
+ [0, 0, () => WorkloadConfiguration$],
493
+ ];
494
+ var AddWorkloadResponse$ = [
495
+ 3,
496
+ n0,
497
+ _AWRd,
498
+ 0,
499
+ [_WI, _WC],
500
+ [0, () => WorkloadConfiguration$],
493
501
  ];
494
- var AddWorkloadResponse = [3, n0, _AWRd, 0, [_WI, _WC], [0, () => WorkloadConfiguration]];
495
- var ApplicationComponent = [
502
+ var ApplicationComponent$ = [
496
503
  3,
497
504
  n0,
498
505
  _AC,
@@ -500,7 +507,7 @@ var ApplicationComponent = [
500
507
  [_CN, _CR, _RT, _OT, _T, _Mo, _DW],
501
508
  [0, 0, 0, 0, 0, 2, [2, n0, _DW, 0, 0, 128 | 0]],
502
509
  ];
503
- var ApplicationInfo = [
510
+ var ApplicationInfo$ = [
504
511
  3,
505
512
  n0,
506
513
  _AI,
@@ -508,7 +515,7 @@ var ApplicationInfo = [
508
515
  [_AIc, _RGN, _LC, _OISNSTA, _SNSNA, _OCE, _CWEME, _R, _ACE, _DT, _AMP],
509
516
  [0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 2],
510
517
  ];
511
- var BadRequestException = [
518
+ var BadRequestException$ = [
512
519
  -3,
513
520
  n0,
514
521
  _BRE,
@@ -516,8 +523,8 @@ var BadRequestException = [
516
523
  [_M],
517
524
  [0],
518
525
  ];
519
- schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
520
- var ConfigurationEvent = [
526
+ schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
527
+ var ConfigurationEvent$ = [
521
528
  3,
522
529
  n0,
523
530
  _CE,
@@ -525,7 +532,7 @@ var ConfigurationEvent = [
525
532
  [_RGN, _AIc, _MRARN, _ES, _ERT, _ET, _ED, _ERN],
526
533
  [0, 0, 0, 0, 0, 4, 0, 0],
527
534
  ];
528
- var CreateApplicationRequest = [
535
+ var CreateApplicationRequest$ = [
529
536
  3,
530
537
  n0,
531
538
  _CAR,
@@ -533,10 +540,10 @@ var CreateApplicationRequest = [
533
540
  [_RGN, _OCE, _CWEME, _OISNSTA, _SNSNA, _Ta, _ACE, _ACu, _GT, _AMP],
534
541
  [0, 2, 2, 0, 0, () => TagList, 2, 2, 0, 2],
535
542
  ];
536
- var CreateApplicationResponse = [3, n0, _CARr, 0, [_AI], [() => ApplicationInfo]];
537
- var CreateComponentRequest = [3, n0, _CCR, 0, [_RGN, _CN, _RL], [0, 0, 64 | 0]];
538
- var CreateComponentResponse = [3, n0, _CCRr, 0, [], []];
539
- var CreateLogPatternRequest = [
543
+ var CreateApplicationResponse$ = [3, n0, _CARr, 0, [_AI], [() => ApplicationInfo$]];
544
+ var CreateComponentRequest$ = [3, n0, _CCR, 0, [_RGN, _CN, _RL], [0, 0, 64 | 0]];
545
+ var CreateComponentResponse$ = [3, n0, _CCRr, 0, [], []];
546
+ var CreateLogPatternRequest$ = [
540
547
  3,
541
548
  n0,
542
549
  _CLPR,
@@ -544,16 +551,16 @@ var CreateLogPatternRequest = [
544
551
  [_RGN, _PSN, _PN, _P, _Ra],
545
552
  [0, 0, 0, 0, 1],
546
553
  ];
547
- var CreateLogPatternResponse = [3, n0, _CLPRr, 0, [_LP, _RGN], [() => LogPattern, 0]];
548
- var DeleteApplicationRequest = [3, n0, _DAR, 0, [_RGN], [0]];
549
- var DeleteApplicationResponse = [3, n0, _DARe, 0, [], []];
550
- var DeleteComponentRequest = [3, n0, _DCR, 0, [_RGN, _CN], [0, 0]];
551
- var DeleteComponentResponse = [3, n0, _DCRe, 0, [], []];
552
- var DeleteLogPatternRequest = [3, n0, _DLPR, 0, [_RGN, _PSN, _PN], [0, 0, 0]];
553
- var DeleteLogPatternResponse = [3, n0, _DLPRe, 0, [], []];
554
- var DescribeApplicationRequest = [3, n0, _DARes, 0, [_RGN, _AIc], [0, 0]];
555
- var DescribeApplicationResponse = [3, n0, _DAResc, 0, [_AI], [() => ApplicationInfo]];
556
- var DescribeComponentConfigurationRecommendationRequest = [
554
+ var CreateLogPatternResponse$ = [3, n0, _CLPRr, 0, [_LP, _RGN], [() => LogPattern$, 0]];
555
+ var DeleteApplicationRequest$ = [3, n0, _DAR, 0, [_RGN], [0]];
556
+ var DeleteApplicationResponse$ = [3, n0, _DARe, 0, [], []];
557
+ var DeleteComponentRequest$ = [3, n0, _DCR, 0, [_RGN, _CN], [0, 0]];
558
+ var DeleteComponentResponse$ = [3, n0, _DCRe, 0, [], []];
559
+ var DeleteLogPatternRequest$ = [3, n0, _DLPR, 0, [_RGN, _PSN, _PN], [0, 0, 0]];
560
+ var DeleteLogPatternResponse$ = [3, n0, _DLPRe, 0, [], []];
561
+ var DescribeApplicationRequest$ = [3, n0, _DARes, 0, [_RGN, _AIc], [0, 0]];
562
+ var DescribeApplicationResponse$ = [3, n0, _DAResc, 0, [_AI], [() => ApplicationInfo$]];
563
+ var DescribeComponentConfigurationRecommendationRequest$ = [
557
564
  3,
558
565
  n0,
559
566
  _DCCRR,
@@ -561,7 +568,7 @@ var DescribeComponentConfigurationRecommendationRequest = [
561
568
  [_RGN, _CN, _T, _WN, _RTe],
562
569
  [0, 0, 0, 0, 0],
563
570
  ];
564
- var DescribeComponentConfigurationRecommendationResponse = [
571
+ var DescribeComponentConfigurationRecommendationResponse$ = [
565
572
  3,
566
573
  n0,
567
574
  _DCCRRe,
@@ -569,7 +576,7 @@ var DescribeComponentConfigurationRecommendationResponse = [
569
576
  [_CC],
570
577
  [0],
571
578
  ];
572
- var DescribeComponentConfigurationRequest = [
579
+ var DescribeComponentConfigurationRequest$ = [
573
580
  3,
574
581
  n0,
575
582
  _DCCR,
@@ -577,7 +584,7 @@ var DescribeComponentConfigurationRequest = [
577
584
  [_RGN, _CN, _AIc],
578
585
  [0, 0, 0],
579
586
  ];
580
- var DescribeComponentConfigurationResponse = [
587
+ var DescribeComponentConfigurationResponse$ = [
581
588
  3,
582
589
  n0,
583
590
  _DCCRe,
@@ -585,16 +592,16 @@ var DescribeComponentConfigurationResponse = [
585
592
  [_Mo, _T, _CC],
586
593
  [2, 0, 0],
587
594
  ];
588
- var DescribeComponentRequest = [3, n0, _DCRes, 0, [_RGN, _CN, _AIc], [0, 0, 0]];
589
- var DescribeComponentResponse = [
595
+ var DescribeComponentRequest$ = [3, n0, _DCRes, 0, [_RGN, _CN, _AIc], [0, 0, 0]];
596
+ var DescribeComponentResponse$ = [
590
597
  3,
591
598
  n0,
592
599
  _DCResc,
593
600
  0,
594
601
  [_AC, _RL],
595
- [() => ApplicationComponent, 64 | 0],
602
+ [() => ApplicationComponent$, 64 | 0],
596
603
  ];
597
- var DescribeLogPatternRequest = [
604
+ var DescribeLogPatternRequest$ = [
598
605
  3,
599
606
  n0,
600
607
  _DLPRes,
@@ -602,37 +609,37 @@ var DescribeLogPatternRequest = [
602
609
  [_RGN, _PSN, _PN, _AIc],
603
610
  [0, 0, 0, 0],
604
611
  ];
605
- var DescribeLogPatternResponse = [
612
+ var DescribeLogPatternResponse$ = [
606
613
  3,
607
614
  n0,
608
615
  _DLPResc,
609
616
  0,
610
617
  [_RGN, _AIc, _LP],
611
- [0, 0, () => LogPattern],
618
+ [0, 0, () => LogPattern$],
612
619
  ];
613
- var DescribeObservationRequest = [3, n0, _DOR, 0, [_OI, _AIc], [0, 0]];
614
- var DescribeObservationResponse = [3, n0, _DORe, 0, [_O], [() => Observation]];
615
- var DescribeProblemObservationsRequest = [3, n0, _DPOR, 0, [_PI, _AIc], [0, 0]];
616
- var DescribeProblemObservationsResponse = [
620
+ var DescribeObservationRequest$ = [3, n0, _DOR, 0, [_OI, _AIc], [0, 0]];
621
+ var DescribeObservationResponse$ = [3, n0, _DORe, 0, [_O], [() => Observation$]];
622
+ var DescribeProblemObservationsRequest$ = [3, n0, _DPOR, 0, [_PI, _AIc], [0, 0]];
623
+ var DescribeProblemObservationsResponse$ = [
617
624
  3,
618
625
  n0,
619
626
  _DPORe,
620
627
  0,
621
628
  [_RO],
622
- [() => RelatedObservations],
629
+ [() => RelatedObservations$],
623
630
  ];
624
- var DescribeProblemRequest = [3, n0, _DPR, 0, [_PI, _AIc], [0, 0]];
625
- var DescribeProblemResponse = [3, n0, _DPRe, 0, [_Pr, _SNSNA], [() => Problem, 0]];
626
- var DescribeWorkloadRequest = [3, n0, _DWR, 0, [_RGN, _CN, _WI, _AIc], [0, 0, 0, 0]];
627
- var DescribeWorkloadResponse = [
631
+ var DescribeProblemRequest$ = [3, n0, _DPR, 0, [_PI, _AIc], [0, 0]];
632
+ var DescribeProblemResponse$ = [3, n0, _DPRe, 0, [_Pr, _SNSNA], [() => Problem$, 0]];
633
+ var DescribeWorkloadRequest$ = [3, n0, _DWR, 0, [_RGN, _CN, _WI, _AIc], [0, 0, 0, 0]];
634
+ var DescribeWorkloadResponse$ = [
628
635
  3,
629
636
  n0,
630
637
  _DWRe,
631
638
  0,
632
639
  [_WI, _WR, _WC],
633
- [0, 0, () => WorkloadConfiguration],
640
+ [0, 0, () => WorkloadConfiguration$],
634
641
  ];
635
- var InternalServerException = [
642
+ var InternalServerException$ = [
636
643
  -3,
637
644
  n0,
638
645
  _ISE,
@@ -640,9 +647,9 @@ var InternalServerException = [
640
647
  [_M],
641
648
  [0],
642
649
  ];
643
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
644
- var ListApplicationsRequest = [3, n0, _LAR, 0, [_MR, _NT, _AIc], [1, 0, 0]];
645
- var ListApplicationsResponse = [
650
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
651
+ var ListApplicationsRequest$ = [3, n0, _LAR, 0, [_MR, _NT, _AIc], [1, 0, 0]];
652
+ var ListApplicationsResponse$ = [
646
653
  3,
647
654
  n0,
648
655
  _LARi,
@@ -650,8 +657,8 @@ var ListApplicationsResponse = [
650
657
  [_AIL, _NT],
651
658
  [() => ApplicationInfoList, 0],
652
659
  ];
653
- var ListComponentsRequest = [3, n0, _LCR, 0, [_RGN, _MR, _NT, _AIc], [0, 1, 0, 0]];
654
- var ListComponentsResponse = [
660
+ var ListComponentsRequest$ = [3, n0, _LCR, 0, [_RGN, _MR, _NT, _AIc], [0, 1, 0, 0]];
661
+ var ListComponentsResponse$ = [
655
662
  3,
656
663
  n0,
657
664
  _LCRi,
@@ -659,7 +666,7 @@ var ListComponentsResponse = [
659
666
  [_ACL, _NT],
660
667
  [() => ApplicationComponentList, 0],
661
668
  ];
662
- var ListConfigurationHistoryRequest = [
669
+ var ListConfigurationHistoryRequest$ = [
663
670
  3,
664
671
  n0,
665
672
  _LCHR,
@@ -667,7 +674,7 @@ var ListConfigurationHistoryRequest = [
667
674
  [_RGN, _ST, _ETn, _ES, _MR, _NT, _AIc],
668
675
  [0, 4, 4, 0, 1, 0, 0],
669
676
  ];
670
- var ListConfigurationHistoryResponse = [
677
+ var ListConfigurationHistoryResponse$ = [
671
678
  3,
672
679
  n0,
673
680
  _LCHRi,
@@ -675,8 +682,8 @@ var ListConfigurationHistoryResponse = [
675
682
  [_EL, _NT],
676
683
  [() => ConfigurationEventList, 0],
677
684
  ];
678
- var ListLogPatternSetsRequest = [3, n0, _LLPSR, 0, [_RGN, _MR, _NT, _AIc], [0, 1, 0, 0]];
679
- var ListLogPatternSetsResponse = [
685
+ var ListLogPatternSetsRequest$ = [3, n0, _LLPSR, 0, [_RGN, _MR, _NT, _AIc], [0, 1, 0, 0]];
686
+ var ListLogPatternSetsResponse$ = [
680
687
  3,
681
688
  n0,
682
689
  _LLPSRi,
@@ -684,7 +691,7 @@ var ListLogPatternSetsResponse = [
684
691
  [_RGN, _AIc, _LPS, _NT],
685
692
  [0, 0, 64 | 0, 0],
686
693
  ];
687
- var ListLogPatternsRequest = [
694
+ var ListLogPatternsRequest$ = [
688
695
  3,
689
696
  n0,
690
697
  _LLPR,
@@ -692,7 +699,7 @@ var ListLogPatternsRequest = [
692
699
  [_RGN, _PSN, _MR, _NT, _AIc],
693
700
  [0, 0, 1, 0, 0],
694
701
  ];
695
- var ListLogPatternsResponse = [
702
+ var ListLogPatternsResponse$ = [
696
703
  3,
697
704
  n0,
698
705
  _LLPRi,
@@ -700,7 +707,7 @@ var ListLogPatternsResponse = [
700
707
  [_RGN, _AIc, _LPo, _NT],
701
708
  [0, 0, () => LogPatternList, 0],
702
709
  ];
703
- var ListProblemsRequest = [
710
+ var ListProblemsRequest$ = [
704
711
  3,
705
712
  n0,
706
713
  _LPR,
@@ -708,7 +715,7 @@ var ListProblemsRequest = [
708
715
  [_AIc, _RGN, _ST, _ETn, _MR, _NT, _CN, _V],
709
716
  [0, 0, 4, 4, 1, 0, 0, 0],
710
717
  ];
711
- var ListProblemsResponse = [
718
+ var ListProblemsResponse$ = [
712
719
  3,
713
720
  n0,
714
721
  _LPRi,
@@ -716,12 +723,19 @@ var ListProblemsResponse = [
716
723
  [_PL, _NT, _RGN, _AIc],
717
724
  [() => ProblemList, 0, 0, 0],
718
725
  ];
719
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
720
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [() => TagList]];
721
- var ListWorkloadsRequest = [3, n0, _LWR, 0, [_RGN, _CN, _MR, _NT, _AIc], [0, 0, 1, 0, 0]];
722
- var ListWorkloadsResponse = [3, n0, _LWRi, 0, [_WL, _NT], [() => WorkloadList, 0]];
723
- var LogPattern = [3, n0, _LP, 0, [_PSN, _PN, _P, _Ra], [0, 0, 0, 1]];
724
- var Observation = [
726
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARN], [0]];
727
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta], [() => TagList]];
728
+ var ListWorkloadsRequest$ = [
729
+ 3,
730
+ n0,
731
+ _LWR,
732
+ 0,
733
+ [_RGN, _CN, _MR, _NT, _AIc],
734
+ [0, 0, 1, 0, 0],
735
+ ];
736
+ var ListWorkloadsResponse$ = [3, n0, _LWRi, 0, [_WL, _NT], [() => WorkloadList, 0]];
737
+ var LogPattern$ = [3, n0, _LP, 0, [_PSN, _PN, _P, _Ra], [0, 0, 0, 1]];
738
+ var Observation$ = [
725
739
  3,
726
740
  n0,
727
741
  _O,
@@ -778,7 +792,7 @@ var Observation = [
778
792
  1, 1, 1, 1, 0, 0,
779
793
  ],
780
794
  ];
781
- var Problem = [
795
+ var Problem$ = [
782
796
  3,
783
797
  n0,
784
798
  _Pr,
@@ -786,10 +800,10 @@ var Problem = [
786
800
  [_I, _Ti, _SN, _In, _S, _AR, _ST, _ETn, _SL, _AIc, _RGN, _F, _RC, _LRT, _V, _RM],
787
801
  [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 128 | 0, 1, 4, 0, 0],
788
802
  ];
789
- var RelatedObservations = [3, n0, _RO, 0, [_OL], [() => ObservationList]];
790
- var RemoveWorkloadRequest = [3, n0, _RWR, 0, [_RGN, _CN, _WI], [0, 0, 0]];
791
- var RemoveWorkloadResponse = [3, n0, _RWRe, 0, [], []];
792
- var ResourceInUseException = [
803
+ var RelatedObservations$ = [3, n0, _RO, 0, [_OL], [() => ObservationList]];
804
+ var RemoveWorkloadRequest$ = [3, n0, _RWR, 0, [_RGN, _CN, _WI], [0, 0, 0]];
805
+ var RemoveWorkloadResponse$ = [3, n0, _RWRe, 0, [], []];
806
+ var ResourceInUseException$ = [
793
807
  -3,
794
808
  n0,
795
809
  _RIUE,
@@ -797,8 +811,8 @@ var ResourceInUseException = [
797
811
  [_M],
798
812
  [0],
799
813
  ];
800
- schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
801
- var ResourceNotFoundException = [
814
+ schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
815
+ var ResourceNotFoundException$ = [
802
816
  -3,
803
817
  n0,
804
818
  _RNFE,
@@ -806,17 +820,17 @@ var ResourceNotFoundException = [
806
820
  [_M],
807
821
  [0],
808
822
  ];
809
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
810
- var Tag = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
811
- var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _Ta], [0, () => TagList]];
812
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
813
- var TagsAlreadyExistException = [-3, n0, _TAEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
814
- schema.TypeRegistry.for(n0).registerError(TagsAlreadyExistException, TagsAlreadyExistException$1);
815
- var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M, _RN], [0, 0]];
816
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
817
- var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
818
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
819
- var UpdateApplicationRequest = [
823
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
824
+ var Tag$ = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
825
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARN, _Ta], [0, () => TagList]];
826
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
827
+ var TagsAlreadyExistException$ = [-3, n0, _TAEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
828
+ schema.TypeRegistry.for(n0).registerError(TagsAlreadyExistException$, TagsAlreadyExistException);
829
+ var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M, _RN], [0, 0]];
830
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
831
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
832
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
833
+ var UpdateApplicationRequest$ = [
820
834
  3,
821
835
  n0,
822
836
  _UAR,
@@ -824,8 +838,8 @@ var UpdateApplicationRequest = [
824
838
  [_RGN, _OCE, _CWEME, _OISNSTA, _SNSNA, _RSNST, _ACE, _AMP],
825
839
  [0, 2, 2, 0, 0, 2, 2, 2],
826
840
  ];
827
- var UpdateApplicationResponse = [3, n0, _UARp, 0, [_AI], [() => ApplicationInfo]];
828
- var UpdateComponentConfigurationRequest = [
841
+ var UpdateApplicationResponse$ = [3, n0, _UARp, 0, [_AI], [() => ApplicationInfo$]];
842
+ var UpdateComponentConfigurationRequest$ = [
829
843
  3,
830
844
  n0,
831
845
  _UCCR,
@@ -833,10 +847,10 @@ var UpdateComponentConfigurationRequest = [
833
847
  [_RGN, _CN, _Mo, _T, _CC, _ACE],
834
848
  [0, 0, 2, 0, 0, 2],
835
849
  ];
836
- var UpdateComponentConfigurationResponse = [3, n0, _UCCRp, 0, [], []];
837
- var UpdateComponentRequest = [3, n0, _UCR, 0, [_RGN, _CN, _NCN, _RL], [0, 0, 0, 64 | 0]];
838
- var UpdateComponentResponse = [3, n0, _UCRp, 0, [], []];
839
- var UpdateLogPatternRequest = [
850
+ var UpdateComponentConfigurationResponse$ = [3, n0, _UCCRp, 0, [], []];
851
+ var UpdateComponentRequest$ = [3, n0, _UCR, 0, [_RGN, _CN, _NCN, _RL], [0, 0, 0, 64 | 0]];
852
+ var UpdateComponentResponse$ = [3, n0, _UCRp, 0, [], []];
853
+ var UpdateLogPatternRequest$ = [
840
854
  3,
841
855
  n0,
842
856
  _ULPR,
@@ -844,26 +858,26 @@ var UpdateLogPatternRequest = [
844
858
  [_RGN, _PSN, _PN, _P, _Ra],
845
859
  [0, 0, 0, 0, 1],
846
860
  ];
847
- var UpdateLogPatternResponse = [3, n0, _ULPRp, 0, [_RGN, _LP], [0, () => LogPattern]];
848
- var UpdateProblemRequest = [3, n0, _UPR, 0, [_PI, _US, _V], [0, 0, 0]];
849
- var UpdateProblemResponse = [3, n0, _UPRp, 0, [], []];
850
- var UpdateWorkloadRequest = [
861
+ var UpdateLogPatternResponse$ = [3, n0, _ULPRp, 0, [_RGN, _LP], [0, () => LogPattern$]];
862
+ var UpdateProblemRequest$ = [3, n0, _UPR, 0, [_PI, _US, _V], [0, 0, 0]];
863
+ var UpdateProblemResponse$ = [3, n0, _UPRp, 0, [], []];
864
+ var UpdateWorkloadRequest$ = [
851
865
  3,
852
866
  n0,
853
867
  _UWR,
854
868
  0,
855
869
  [_RGN, _CN, _WI, _WC],
856
- [0, 0, 0, () => WorkloadConfiguration],
870
+ [0, 0, 0, () => WorkloadConfiguration$],
857
871
  ];
858
- var UpdateWorkloadResponse = [
872
+ var UpdateWorkloadResponse$ = [
859
873
  3,
860
874
  n0,
861
875
  _UWRp,
862
876
  0,
863
877
  [_WI, _WC],
864
- [0, () => WorkloadConfiguration],
878
+ [0, () => WorkloadConfiguration$],
865
879
  ];
866
- var ValidationException = [
880
+ var ValidationException$ = [
867
881
  -3,
868
882
  n0,
869
883
  _VE,
@@ -871,10 +885,10 @@ var ValidationException = [
871
885
  [_M],
872
886
  [0],
873
887
  ];
874
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
875
- var Workload = [3, n0, _W, 0, [_WI, _CN, _WN, _T, _WR, _MWC], [0, 0, 0, 0, 0, 2]];
876
- var WorkloadConfiguration = [3, n0, _WC, 0, [_WN, _T, _C], [0, 0, 0]];
877
- var ApplicationInsightsServiceException = [
888
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
889
+ var Workload$ = [3, n0, _W, 0, [_WI, _CN, _WN, _T, _WR, _MWC], [0, 0, 0, 0, 0, 2]];
890
+ var WorkloadConfiguration$ = [3, n0, _WC, 0, [_WN, _T, _C], [0, 0, 0]];
891
+ var ApplicationInsightsServiceException$ = [
878
892
  -3,
879
893
  _sm,
880
894
  "ApplicationInsightsServiceException",
@@ -882,264 +896,264 @@ var ApplicationInsightsServiceException = [
882
896
  [],
883
897
  [],
884
898
  ];
885
- schema.TypeRegistry.for(_sm).registerError(ApplicationInsightsServiceException, ApplicationInsightsServiceException$1);
886
- var ApplicationComponentList = [1, n0, _ACL, 0, () => ApplicationComponent];
887
- var ApplicationInfoList = [1, n0, _AIL, 0, () => ApplicationInfo];
888
- var ConfigurationEventList = [1, n0, _CEL, 0, () => ConfigurationEvent];
889
- var LogPatternList = [1, n0, _LPL, 0, () => LogPattern];
890
- var ObservationList = [1, n0, _OL, 0, () => Observation];
891
- var ProblemList = [1, n0, _PL, 0, () => Problem];
892
- var TagList = [1, n0, _TL, 0, () => Tag];
893
- var WorkloadList = [1, n0, _WL, 0, () => Workload];
894
- var AddWorkload = [9, n0, _AW, 0, () => AddWorkloadRequest, () => AddWorkloadResponse];
895
- var CreateApplication = [
899
+ schema.TypeRegistry.for(_sm).registerError(ApplicationInsightsServiceException$, ApplicationInsightsServiceException);
900
+ var ApplicationComponentList = [1, n0, _ACL, 0, () => ApplicationComponent$];
901
+ var ApplicationInfoList = [1, n0, _AIL, 0, () => ApplicationInfo$];
902
+ var ConfigurationEventList = [1, n0, _CEL, 0, () => ConfigurationEvent$];
903
+ var LogPatternList = [1, n0, _LPL, 0, () => LogPattern$];
904
+ var ObservationList = [1, n0, _OL, 0, () => Observation$];
905
+ var ProblemList = [1, n0, _PL, 0, () => Problem$];
906
+ var TagList = [1, n0, _TL, 0, () => Tag$];
907
+ var WorkloadList = [1, n0, _WL, 0, () => Workload$];
908
+ var AddWorkload$ = [9, n0, _AW, 0, () => AddWorkloadRequest$, () => AddWorkloadResponse$];
909
+ var CreateApplication$ = [
896
910
  9,
897
911
  n0,
898
912
  _CA,
899
913
  0,
900
- () => CreateApplicationRequest,
901
- () => CreateApplicationResponse,
914
+ () => CreateApplicationRequest$,
915
+ () => CreateApplicationResponse$,
902
916
  ];
903
- var CreateComponent = [
917
+ var CreateComponent$ = [
904
918
  9,
905
919
  n0,
906
920
  _CCr,
907
921
  0,
908
- () => CreateComponentRequest,
909
- () => CreateComponentResponse,
922
+ () => CreateComponentRequest$,
923
+ () => CreateComponentResponse$,
910
924
  ];
911
- var CreateLogPattern = [
925
+ var CreateLogPattern$ = [
912
926
  9,
913
927
  n0,
914
928
  _CLP,
915
929
  0,
916
- () => CreateLogPatternRequest,
917
- () => CreateLogPatternResponse,
930
+ () => CreateLogPatternRequest$,
931
+ () => CreateLogPatternResponse$,
918
932
  ];
919
- var DeleteApplication = [
933
+ var DeleteApplication$ = [
920
934
  9,
921
935
  n0,
922
936
  _DA,
923
937
  0,
924
- () => DeleteApplicationRequest,
925
- () => DeleteApplicationResponse,
938
+ () => DeleteApplicationRequest$,
939
+ () => DeleteApplicationResponse$,
926
940
  ];
927
- var DeleteComponent = [
941
+ var DeleteComponent$ = [
928
942
  9,
929
943
  n0,
930
944
  _DC,
931
945
  0,
932
- () => DeleteComponentRequest,
933
- () => DeleteComponentResponse,
946
+ () => DeleteComponentRequest$,
947
+ () => DeleteComponentResponse$,
934
948
  ];
935
- var DeleteLogPattern = [
949
+ var DeleteLogPattern$ = [
936
950
  9,
937
951
  n0,
938
952
  _DLP,
939
953
  0,
940
- () => DeleteLogPatternRequest,
941
- () => DeleteLogPatternResponse,
954
+ () => DeleteLogPatternRequest$,
955
+ () => DeleteLogPatternResponse$,
942
956
  ];
943
- var DescribeApplication = [
957
+ var DescribeApplication$ = [
944
958
  9,
945
959
  n0,
946
960
  _DAe,
947
961
  0,
948
- () => DescribeApplicationRequest,
949
- () => DescribeApplicationResponse,
962
+ () => DescribeApplicationRequest$,
963
+ () => DescribeApplicationResponse$,
950
964
  ];
951
- var DescribeComponent = [
965
+ var DescribeComponent$ = [
952
966
  9,
953
967
  n0,
954
968
  _DCe,
955
969
  0,
956
- () => DescribeComponentRequest,
957
- () => DescribeComponentResponse,
970
+ () => DescribeComponentRequest$,
971
+ () => DescribeComponentResponse$,
958
972
  ];
959
- var DescribeComponentConfiguration = [
973
+ var DescribeComponentConfiguration$ = [
960
974
  9,
961
975
  n0,
962
976
  _DCC,
963
977
  0,
964
- () => DescribeComponentConfigurationRequest,
965
- () => DescribeComponentConfigurationResponse,
978
+ () => DescribeComponentConfigurationRequest$,
979
+ () => DescribeComponentConfigurationResponse$,
966
980
  ];
967
- var DescribeComponentConfigurationRecommendation = [
981
+ var DescribeComponentConfigurationRecommendation$ = [
968
982
  9,
969
983
  n0,
970
984
  _DCCRes,
971
985
  0,
972
- () => DescribeComponentConfigurationRecommendationRequest,
973
- () => DescribeComponentConfigurationRecommendationResponse,
986
+ () => DescribeComponentConfigurationRecommendationRequest$,
987
+ () => DescribeComponentConfigurationRecommendationResponse$,
974
988
  ];
975
- var DescribeLogPattern = [
989
+ var DescribeLogPattern$ = [
976
990
  9,
977
991
  n0,
978
992
  _DLPe,
979
993
  0,
980
- () => DescribeLogPatternRequest,
981
- () => DescribeLogPatternResponse,
994
+ () => DescribeLogPatternRequest$,
995
+ () => DescribeLogPatternResponse$,
982
996
  ];
983
- var DescribeObservation = [
997
+ var DescribeObservation$ = [
984
998
  9,
985
999
  n0,
986
1000
  _DO,
987
1001
  0,
988
- () => DescribeObservationRequest,
989
- () => DescribeObservationResponse,
1002
+ () => DescribeObservationRequest$,
1003
+ () => DescribeObservationResponse$,
990
1004
  ];
991
- var DescribeProblem = [
1005
+ var DescribeProblem$ = [
992
1006
  9,
993
1007
  n0,
994
1008
  _DP,
995
1009
  0,
996
- () => DescribeProblemRequest,
997
- () => DescribeProblemResponse,
1010
+ () => DescribeProblemRequest$,
1011
+ () => DescribeProblemResponse$,
998
1012
  ];
999
- var DescribeProblemObservations = [
1013
+ var DescribeProblemObservations$ = [
1000
1014
  9,
1001
1015
  n0,
1002
1016
  _DPO,
1003
1017
  0,
1004
- () => DescribeProblemObservationsRequest,
1005
- () => DescribeProblemObservationsResponse,
1018
+ () => DescribeProblemObservationsRequest$,
1019
+ () => DescribeProblemObservationsResponse$,
1006
1020
  ];
1007
- var DescribeWorkload = [
1021
+ var DescribeWorkload$ = [
1008
1022
  9,
1009
1023
  n0,
1010
1024
  _DWe,
1011
1025
  0,
1012
- () => DescribeWorkloadRequest,
1013
- () => DescribeWorkloadResponse,
1026
+ () => DescribeWorkloadRequest$,
1027
+ () => DescribeWorkloadResponse$,
1014
1028
  ];
1015
- var ListApplications = [
1029
+ var ListApplications$ = [
1016
1030
  9,
1017
1031
  n0,
1018
1032
  _LA,
1019
1033
  0,
1020
- () => ListApplicationsRequest,
1021
- () => ListApplicationsResponse,
1034
+ () => ListApplicationsRequest$,
1035
+ () => ListApplicationsResponse$,
1022
1036
  ];
1023
- var ListComponents = [
1037
+ var ListComponents$ = [
1024
1038
  9,
1025
1039
  n0,
1026
1040
  _LCi,
1027
1041
  0,
1028
- () => ListComponentsRequest,
1029
- () => ListComponentsResponse,
1042
+ () => ListComponentsRequest$,
1043
+ () => ListComponentsResponse$,
1030
1044
  ];
1031
- var ListConfigurationHistory = [
1045
+ var ListConfigurationHistory$ = [
1032
1046
  9,
1033
1047
  n0,
1034
1048
  _LCH,
1035
1049
  0,
1036
- () => ListConfigurationHistoryRequest,
1037
- () => ListConfigurationHistoryResponse,
1050
+ () => ListConfigurationHistoryRequest$,
1051
+ () => ListConfigurationHistoryResponse$,
1038
1052
  ];
1039
- var ListLogPatterns = [
1053
+ var ListLogPatterns$ = [
1040
1054
  9,
1041
1055
  n0,
1042
1056
  _LLP,
1043
1057
  0,
1044
- () => ListLogPatternsRequest,
1045
- () => ListLogPatternsResponse,
1058
+ () => ListLogPatternsRequest$,
1059
+ () => ListLogPatternsResponse$,
1046
1060
  ];
1047
- var ListLogPatternSets = [
1061
+ var ListLogPatternSets$ = [
1048
1062
  9,
1049
1063
  n0,
1050
1064
  _LLPS,
1051
1065
  0,
1052
- () => ListLogPatternSetsRequest,
1053
- () => ListLogPatternSetsResponse,
1066
+ () => ListLogPatternSetsRequest$,
1067
+ () => ListLogPatternSetsResponse$,
1054
1068
  ];
1055
- var ListProblems = [
1069
+ var ListProblems$ = [
1056
1070
  9,
1057
1071
  n0,
1058
1072
  _LPi,
1059
1073
  0,
1060
- () => ListProblemsRequest,
1061
- () => ListProblemsResponse,
1074
+ () => ListProblemsRequest$,
1075
+ () => ListProblemsResponse$,
1062
1076
  ];
1063
- var ListTagsForResource = [
1077
+ var ListTagsForResource$ = [
1064
1078
  9,
1065
1079
  n0,
1066
1080
  _LTFR,
1067
1081
  0,
1068
- () => ListTagsForResourceRequest,
1069
- () => ListTagsForResourceResponse,
1082
+ () => ListTagsForResourceRequest$,
1083
+ () => ListTagsForResourceResponse$,
1070
1084
  ];
1071
- var ListWorkloads = [
1085
+ var ListWorkloads$ = [
1072
1086
  9,
1073
1087
  n0,
1074
1088
  _LW,
1075
1089
  0,
1076
- () => ListWorkloadsRequest,
1077
- () => ListWorkloadsResponse,
1090
+ () => ListWorkloadsRequest$,
1091
+ () => ListWorkloadsResponse$,
1078
1092
  ];
1079
- var RemoveWorkload = [
1093
+ var RemoveWorkload$ = [
1080
1094
  9,
1081
1095
  n0,
1082
1096
  _RW,
1083
1097
  0,
1084
- () => RemoveWorkloadRequest,
1085
- () => RemoveWorkloadResponse,
1098
+ () => RemoveWorkloadRequest$,
1099
+ () => RemoveWorkloadResponse$,
1086
1100
  ];
1087
- var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
1088
- var UntagResource = [
1101
+ var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
1102
+ var UntagResource$ = [
1089
1103
  9,
1090
1104
  n0,
1091
1105
  _UR,
1092
1106
  0,
1093
- () => UntagResourceRequest,
1094
- () => UntagResourceResponse,
1107
+ () => UntagResourceRequest$,
1108
+ () => UntagResourceResponse$,
1095
1109
  ];
1096
- var UpdateApplication = [
1110
+ var UpdateApplication$ = [
1097
1111
  9,
1098
1112
  n0,
1099
1113
  _UA,
1100
1114
  0,
1101
- () => UpdateApplicationRequest,
1102
- () => UpdateApplicationResponse,
1115
+ () => UpdateApplicationRequest$,
1116
+ () => UpdateApplicationResponse$,
1103
1117
  ];
1104
- var UpdateComponent = [
1118
+ var UpdateComponent$ = [
1105
1119
  9,
1106
1120
  n0,
1107
1121
  _UC,
1108
1122
  0,
1109
- () => UpdateComponentRequest,
1110
- () => UpdateComponentResponse,
1123
+ () => UpdateComponentRequest$,
1124
+ () => UpdateComponentResponse$,
1111
1125
  ];
1112
- var UpdateComponentConfiguration = [
1126
+ var UpdateComponentConfiguration$ = [
1113
1127
  9,
1114
1128
  n0,
1115
1129
  _UCC,
1116
1130
  0,
1117
- () => UpdateComponentConfigurationRequest,
1118
- () => UpdateComponentConfigurationResponse,
1131
+ () => UpdateComponentConfigurationRequest$,
1132
+ () => UpdateComponentConfigurationResponse$,
1119
1133
  ];
1120
- var UpdateLogPattern = [
1134
+ var UpdateLogPattern$ = [
1121
1135
  9,
1122
1136
  n0,
1123
1137
  _ULP,
1124
1138
  0,
1125
- () => UpdateLogPatternRequest,
1126
- () => UpdateLogPatternResponse,
1139
+ () => UpdateLogPatternRequest$,
1140
+ () => UpdateLogPatternResponse$,
1127
1141
  ];
1128
- var UpdateProblem = [
1142
+ var UpdateProblem$ = [
1129
1143
  9,
1130
1144
  n0,
1131
1145
  _UP,
1132
1146
  0,
1133
- () => UpdateProblemRequest,
1134
- () => UpdateProblemResponse,
1147
+ () => UpdateProblemRequest$,
1148
+ () => UpdateProblemResponse$,
1135
1149
  ];
1136
- var UpdateWorkload = [
1150
+ var UpdateWorkload$ = [
1137
1151
  9,
1138
1152
  n0,
1139
1153
  _UW,
1140
1154
  0,
1141
- () => UpdateWorkloadRequest,
1142
- () => UpdateWorkloadResponse,
1155
+ () => UpdateWorkloadRequest$,
1156
+ () => UpdateWorkloadResponse$,
1143
1157
  ];
1144
1158
 
1145
1159
  class AddWorkloadCommand extends smithyClient.Command
@@ -1150,7 +1164,7 @@ class AddWorkloadCommand extends smithyClient.Command
1150
1164
  })
1151
1165
  .s("EC2WindowsBarleyService", "AddWorkload", {})
1152
1166
  .n("ApplicationInsightsClient", "AddWorkloadCommand")
1153
- .sc(AddWorkload)
1167
+ .sc(AddWorkload$)
1154
1168
  .build() {
1155
1169
  }
1156
1170
 
@@ -1162,7 +1176,7 @@ class CreateApplicationCommand extends smithyClient.Command
1162
1176
  })
1163
1177
  .s("EC2WindowsBarleyService", "CreateApplication", {})
1164
1178
  .n("ApplicationInsightsClient", "CreateApplicationCommand")
1165
- .sc(CreateApplication)
1179
+ .sc(CreateApplication$)
1166
1180
  .build() {
1167
1181
  }
1168
1182
 
@@ -1174,7 +1188,7 @@ class CreateComponentCommand extends smithyClient.Command
1174
1188
  })
1175
1189
  .s("EC2WindowsBarleyService", "CreateComponent", {})
1176
1190
  .n("ApplicationInsightsClient", "CreateComponentCommand")
1177
- .sc(CreateComponent)
1191
+ .sc(CreateComponent$)
1178
1192
  .build() {
1179
1193
  }
1180
1194
 
@@ -1186,7 +1200,7 @@ class CreateLogPatternCommand extends smithyClient.Command
1186
1200
  })
1187
1201
  .s("EC2WindowsBarleyService", "CreateLogPattern", {})
1188
1202
  .n("ApplicationInsightsClient", "CreateLogPatternCommand")
1189
- .sc(CreateLogPattern)
1203
+ .sc(CreateLogPattern$)
1190
1204
  .build() {
1191
1205
  }
1192
1206
 
@@ -1198,7 +1212,7 @@ class DeleteApplicationCommand extends smithyClient.Command
1198
1212
  })
1199
1213
  .s("EC2WindowsBarleyService", "DeleteApplication", {})
1200
1214
  .n("ApplicationInsightsClient", "DeleteApplicationCommand")
1201
- .sc(DeleteApplication)
1215
+ .sc(DeleteApplication$)
1202
1216
  .build() {
1203
1217
  }
1204
1218
 
@@ -1210,7 +1224,7 @@ class DeleteComponentCommand extends smithyClient.Command
1210
1224
  })
1211
1225
  .s("EC2WindowsBarleyService", "DeleteComponent", {})
1212
1226
  .n("ApplicationInsightsClient", "DeleteComponentCommand")
1213
- .sc(DeleteComponent)
1227
+ .sc(DeleteComponent$)
1214
1228
  .build() {
1215
1229
  }
1216
1230
 
@@ -1222,7 +1236,7 @@ class DeleteLogPatternCommand extends smithyClient.Command
1222
1236
  })
1223
1237
  .s("EC2WindowsBarleyService", "DeleteLogPattern", {})
1224
1238
  .n("ApplicationInsightsClient", "DeleteLogPatternCommand")
1225
- .sc(DeleteLogPattern)
1239
+ .sc(DeleteLogPattern$)
1226
1240
  .build() {
1227
1241
  }
1228
1242
 
@@ -1234,7 +1248,7 @@ class DescribeApplicationCommand extends smithyClient.Command
1234
1248
  })
1235
1249
  .s("EC2WindowsBarleyService", "DescribeApplication", {})
1236
1250
  .n("ApplicationInsightsClient", "DescribeApplicationCommand")
1237
- .sc(DescribeApplication)
1251
+ .sc(DescribeApplication$)
1238
1252
  .build() {
1239
1253
  }
1240
1254
 
@@ -1246,7 +1260,7 @@ class DescribeComponentCommand extends smithyClient.Command
1246
1260
  })
1247
1261
  .s("EC2WindowsBarleyService", "DescribeComponent", {})
1248
1262
  .n("ApplicationInsightsClient", "DescribeComponentCommand")
1249
- .sc(DescribeComponent)
1263
+ .sc(DescribeComponent$)
1250
1264
  .build() {
1251
1265
  }
1252
1266
 
@@ -1258,7 +1272,7 @@ class DescribeComponentConfigurationCommand extends smithyClient.Command
1258
1272
  })
1259
1273
  .s("EC2WindowsBarleyService", "DescribeComponentConfiguration", {})
1260
1274
  .n("ApplicationInsightsClient", "DescribeComponentConfigurationCommand")
1261
- .sc(DescribeComponentConfiguration)
1275
+ .sc(DescribeComponentConfiguration$)
1262
1276
  .build() {
1263
1277
  }
1264
1278
 
@@ -1270,7 +1284,7 @@ class DescribeComponentConfigurationRecommendationCommand extends smithyClient.C
1270
1284
  })
1271
1285
  .s("EC2WindowsBarleyService", "DescribeComponentConfigurationRecommendation", {})
1272
1286
  .n("ApplicationInsightsClient", "DescribeComponentConfigurationRecommendationCommand")
1273
- .sc(DescribeComponentConfigurationRecommendation)
1287
+ .sc(DescribeComponentConfigurationRecommendation$)
1274
1288
  .build() {
1275
1289
  }
1276
1290
 
@@ -1282,7 +1296,7 @@ class DescribeLogPatternCommand extends smithyClient.Command
1282
1296
  })
1283
1297
  .s("EC2WindowsBarleyService", "DescribeLogPattern", {})
1284
1298
  .n("ApplicationInsightsClient", "DescribeLogPatternCommand")
1285
- .sc(DescribeLogPattern)
1299
+ .sc(DescribeLogPattern$)
1286
1300
  .build() {
1287
1301
  }
1288
1302
 
@@ -1294,7 +1308,7 @@ class DescribeObservationCommand extends smithyClient.Command
1294
1308
  })
1295
1309
  .s("EC2WindowsBarleyService", "DescribeObservation", {})
1296
1310
  .n("ApplicationInsightsClient", "DescribeObservationCommand")
1297
- .sc(DescribeObservation)
1311
+ .sc(DescribeObservation$)
1298
1312
  .build() {
1299
1313
  }
1300
1314
 
@@ -1306,7 +1320,7 @@ class DescribeProblemCommand extends smithyClient.Command
1306
1320
  })
1307
1321
  .s("EC2WindowsBarleyService", "DescribeProblem", {})
1308
1322
  .n("ApplicationInsightsClient", "DescribeProblemCommand")
1309
- .sc(DescribeProblem)
1323
+ .sc(DescribeProblem$)
1310
1324
  .build() {
1311
1325
  }
1312
1326
 
@@ -1318,7 +1332,7 @@ class DescribeProblemObservationsCommand extends smithyClient.Command
1318
1332
  })
1319
1333
  .s("EC2WindowsBarleyService", "DescribeProblemObservations", {})
1320
1334
  .n("ApplicationInsightsClient", "DescribeProblemObservationsCommand")
1321
- .sc(DescribeProblemObservations)
1335
+ .sc(DescribeProblemObservations$)
1322
1336
  .build() {
1323
1337
  }
1324
1338
 
@@ -1330,7 +1344,7 @@ class DescribeWorkloadCommand extends smithyClient.Command
1330
1344
  })
1331
1345
  .s("EC2WindowsBarleyService", "DescribeWorkload", {})
1332
1346
  .n("ApplicationInsightsClient", "DescribeWorkloadCommand")
1333
- .sc(DescribeWorkload)
1347
+ .sc(DescribeWorkload$)
1334
1348
  .build() {
1335
1349
  }
1336
1350
 
@@ -1342,7 +1356,7 @@ class ListApplicationsCommand extends smithyClient.Command
1342
1356
  })
1343
1357
  .s("EC2WindowsBarleyService", "ListApplications", {})
1344
1358
  .n("ApplicationInsightsClient", "ListApplicationsCommand")
1345
- .sc(ListApplications)
1359
+ .sc(ListApplications$)
1346
1360
  .build() {
1347
1361
  }
1348
1362
 
@@ -1354,7 +1368,7 @@ class ListComponentsCommand extends smithyClient.Command
1354
1368
  })
1355
1369
  .s("EC2WindowsBarleyService", "ListComponents", {})
1356
1370
  .n("ApplicationInsightsClient", "ListComponentsCommand")
1357
- .sc(ListComponents)
1371
+ .sc(ListComponents$)
1358
1372
  .build() {
1359
1373
  }
1360
1374
 
@@ -1366,7 +1380,7 @@ class ListConfigurationHistoryCommand extends smithyClient.Command
1366
1380
  })
1367
1381
  .s("EC2WindowsBarleyService", "ListConfigurationHistory", {})
1368
1382
  .n("ApplicationInsightsClient", "ListConfigurationHistoryCommand")
1369
- .sc(ListConfigurationHistory)
1383
+ .sc(ListConfigurationHistory$)
1370
1384
  .build() {
1371
1385
  }
1372
1386
 
@@ -1378,7 +1392,7 @@ class ListLogPatternsCommand extends smithyClient.Command
1378
1392
  })
1379
1393
  .s("EC2WindowsBarleyService", "ListLogPatterns", {})
1380
1394
  .n("ApplicationInsightsClient", "ListLogPatternsCommand")
1381
- .sc(ListLogPatterns)
1395
+ .sc(ListLogPatterns$)
1382
1396
  .build() {
1383
1397
  }
1384
1398
 
@@ -1390,7 +1404,7 @@ class ListLogPatternSetsCommand extends smithyClient.Command
1390
1404
  })
1391
1405
  .s("EC2WindowsBarleyService", "ListLogPatternSets", {})
1392
1406
  .n("ApplicationInsightsClient", "ListLogPatternSetsCommand")
1393
- .sc(ListLogPatternSets)
1407
+ .sc(ListLogPatternSets$)
1394
1408
  .build() {
1395
1409
  }
1396
1410
 
@@ -1402,7 +1416,7 @@ class ListProblemsCommand extends smithyClient.Command
1402
1416
  })
1403
1417
  .s("EC2WindowsBarleyService", "ListProblems", {})
1404
1418
  .n("ApplicationInsightsClient", "ListProblemsCommand")
1405
- .sc(ListProblems)
1419
+ .sc(ListProblems$)
1406
1420
  .build() {
1407
1421
  }
1408
1422
 
@@ -1414,7 +1428,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1414
1428
  })
1415
1429
  .s("EC2WindowsBarleyService", "ListTagsForResource", {})
1416
1430
  .n("ApplicationInsightsClient", "ListTagsForResourceCommand")
1417
- .sc(ListTagsForResource)
1431
+ .sc(ListTagsForResource$)
1418
1432
  .build() {
1419
1433
  }
1420
1434
 
@@ -1426,7 +1440,7 @@ class ListWorkloadsCommand extends smithyClient.Command
1426
1440
  })
1427
1441
  .s("EC2WindowsBarleyService", "ListWorkloads", {})
1428
1442
  .n("ApplicationInsightsClient", "ListWorkloadsCommand")
1429
- .sc(ListWorkloads)
1443
+ .sc(ListWorkloads$)
1430
1444
  .build() {
1431
1445
  }
1432
1446
 
@@ -1438,7 +1452,7 @@ class RemoveWorkloadCommand extends smithyClient.Command
1438
1452
  })
1439
1453
  .s("EC2WindowsBarleyService", "RemoveWorkload", {})
1440
1454
  .n("ApplicationInsightsClient", "RemoveWorkloadCommand")
1441
- .sc(RemoveWorkload)
1455
+ .sc(RemoveWorkload$)
1442
1456
  .build() {
1443
1457
  }
1444
1458
 
@@ -1450,7 +1464,7 @@ class TagResourceCommand extends smithyClient.Command
1450
1464
  })
1451
1465
  .s("EC2WindowsBarleyService", "TagResource", {})
1452
1466
  .n("ApplicationInsightsClient", "TagResourceCommand")
1453
- .sc(TagResource)
1467
+ .sc(TagResource$)
1454
1468
  .build() {
1455
1469
  }
1456
1470
 
@@ -1462,7 +1476,7 @@ class UntagResourceCommand extends smithyClient.Command
1462
1476
  })
1463
1477
  .s("EC2WindowsBarleyService", "UntagResource", {})
1464
1478
  .n("ApplicationInsightsClient", "UntagResourceCommand")
1465
- .sc(UntagResource)
1479
+ .sc(UntagResource$)
1466
1480
  .build() {
1467
1481
  }
1468
1482
 
@@ -1474,7 +1488,7 @@ class UpdateApplicationCommand extends smithyClient.Command
1474
1488
  })
1475
1489
  .s("EC2WindowsBarleyService", "UpdateApplication", {})
1476
1490
  .n("ApplicationInsightsClient", "UpdateApplicationCommand")
1477
- .sc(UpdateApplication)
1491
+ .sc(UpdateApplication$)
1478
1492
  .build() {
1479
1493
  }
1480
1494
 
@@ -1486,7 +1500,7 @@ class UpdateComponentCommand extends smithyClient.Command
1486
1500
  })
1487
1501
  .s("EC2WindowsBarleyService", "UpdateComponent", {})
1488
1502
  .n("ApplicationInsightsClient", "UpdateComponentCommand")
1489
- .sc(UpdateComponent)
1503
+ .sc(UpdateComponent$)
1490
1504
  .build() {
1491
1505
  }
1492
1506
 
@@ -1498,7 +1512,7 @@ class UpdateComponentConfigurationCommand extends smithyClient.Command
1498
1512
  })
1499
1513
  .s("EC2WindowsBarleyService", "UpdateComponentConfiguration", {})
1500
1514
  .n("ApplicationInsightsClient", "UpdateComponentConfigurationCommand")
1501
- .sc(UpdateComponentConfiguration)
1515
+ .sc(UpdateComponentConfiguration$)
1502
1516
  .build() {
1503
1517
  }
1504
1518
 
@@ -1510,7 +1524,7 @@ class UpdateLogPatternCommand extends smithyClient.Command
1510
1524
  })
1511
1525
  .s("EC2WindowsBarleyService", "UpdateLogPattern", {})
1512
1526
  .n("ApplicationInsightsClient", "UpdateLogPatternCommand")
1513
- .sc(UpdateLogPattern)
1527
+ .sc(UpdateLogPattern$)
1514
1528
  .build() {
1515
1529
  }
1516
1530
 
@@ -1522,7 +1536,7 @@ class UpdateProblemCommand extends smithyClient.Command
1522
1536
  })
1523
1537
  .s("EC2WindowsBarleyService", "UpdateProblem", {})
1524
1538
  .n("ApplicationInsightsClient", "UpdateProblemCommand")
1525
- .sc(UpdateProblem)
1539
+ .sc(UpdateProblem$)
1526
1540
  .build() {
1527
1541
  }
1528
1542
 
@@ -1534,7 +1548,7 @@ class UpdateWorkloadCommand extends smithyClient.Command
1534
1548
  })
1535
1549
  .s("EC2WindowsBarleyService", "UpdateWorkload", {})
1536
1550
  .n("ApplicationInsightsClient", "UpdateWorkloadCommand")
1537
- .sc(UpdateWorkload)
1551
+ .sc(UpdateWorkload$)
1538
1552
  .build() {
1539
1553
  }
1540
1554
 
@@ -1696,66 +1710,184 @@ Object.defineProperty(exports, "__Client", {
1696
1710
  enumerable: true,
1697
1711
  get: function () { return smithyClient.Client; }
1698
1712
  });
1699
- exports.AccessDeniedException = AccessDeniedException$1;
1713
+ exports.AccessDeniedException = AccessDeniedException;
1714
+ exports.AccessDeniedException$ = AccessDeniedException$;
1715
+ exports.AddWorkload$ = AddWorkload$;
1700
1716
  exports.AddWorkloadCommand = AddWorkloadCommand;
1717
+ exports.AddWorkloadRequest$ = AddWorkloadRequest$;
1718
+ exports.AddWorkloadResponse$ = AddWorkloadResponse$;
1719
+ exports.ApplicationComponent$ = ApplicationComponent$;
1720
+ exports.ApplicationInfo$ = ApplicationInfo$;
1701
1721
  exports.ApplicationInsights = ApplicationInsights;
1702
1722
  exports.ApplicationInsightsClient = ApplicationInsightsClient;
1703
- exports.ApplicationInsightsServiceException = ApplicationInsightsServiceException$1;
1704
- exports.BadRequestException = BadRequestException$1;
1723
+ exports.ApplicationInsightsServiceException = ApplicationInsightsServiceException;
1724
+ exports.ApplicationInsightsServiceException$ = ApplicationInsightsServiceException$;
1725
+ exports.BadRequestException = BadRequestException;
1726
+ exports.BadRequestException$ = BadRequestException$;
1705
1727
  exports.CloudWatchEventSource = CloudWatchEventSource;
1728
+ exports.ConfigurationEvent$ = ConfigurationEvent$;
1706
1729
  exports.ConfigurationEventResourceType = ConfigurationEventResourceType;
1707
1730
  exports.ConfigurationEventStatus = ConfigurationEventStatus;
1731
+ exports.CreateApplication$ = CreateApplication$;
1708
1732
  exports.CreateApplicationCommand = CreateApplicationCommand;
1733
+ exports.CreateApplicationRequest$ = CreateApplicationRequest$;
1734
+ exports.CreateApplicationResponse$ = CreateApplicationResponse$;
1735
+ exports.CreateComponent$ = CreateComponent$;
1709
1736
  exports.CreateComponentCommand = CreateComponentCommand;
1737
+ exports.CreateComponentRequest$ = CreateComponentRequest$;
1738
+ exports.CreateComponentResponse$ = CreateComponentResponse$;
1739
+ exports.CreateLogPattern$ = CreateLogPattern$;
1710
1740
  exports.CreateLogPatternCommand = CreateLogPatternCommand;
1741
+ exports.CreateLogPatternRequest$ = CreateLogPatternRequest$;
1742
+ exports.CreateLogPatternResponse$ = CreateLogPatternResponse$;
1743
+ exports.DeleteApplication$ = DeleteApplication$;
1711
1744
  exports.DeleteApplicationCommand = DeleteApplicationCommand;
1745
+ exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
1746
+ exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
1747
+ exports.DeleteComponent$ = DeleteComponent$;
1712
1748
  exports.DeleteComponentCommand = DeleteComponentCommand;
1749
+ exports.DeleteComponentRequest$ = DeleteComponentRequest$;
1750
+ exports.DeleteComponentResponse$ = DeleteComponentResponse$;
1751
+ exports.DeleteLogPattern$ = DeleteLogPattern$;
1713
1752
  exports.DeleteLogPatternCommand = DeleteLogPatternCommand;
1753
+ exports.DeleteLogPatternRequest$ = DeleteLogPatternRequest$;
1754
+ exports.DeleteLogPatternResponse$ = DeleteLogPatternResponse$;
1755
+ exports.DescribeApplication$ = DescribeApplication$;
1714
1756
  exports.DescribeApplicationCommand = DescribeApplicationCommand;
1757
+ exports.DescribeApplicationRequest$ = DescribeApplicationRequest$;
1758
+ exports.DescribeApplicationResponse$ = DescribeApplicationResponse$;
1759
+ exports.DescribeComponent$ = DescribeComponent$;
1715
1760
  exports.DescribeComponentCommand = DescribeComponentCommand;
1761
+ exports.DescribeComponentConfiguration$ = DescribeComponentConfiguration$;
1716
1762
  exports.DescribeComponentConfigurationCommand = DescribeComponentConfigurationCommand;
1763
+ exports.DescribeComponentConfigurationRecommendation$ = DescribeComponentConfigurationRecommendation$;
1717
1764
  exports.DescribeComponentConfigurationRecommendationCommand = DescribeComponentConfigurationRecommendationCommand;
1765
+ exports.DescribeComponentConfigurationRecommendationRequest$ = DescribeComponentConfigurationRecommendationRequest$;
1766
+ exports.DescribeComponentConfigurationRecommendationResponse$ = DescribeComponentConfigurationRecommendationResponse$;
1767
+ exports.DescribeComponentConfigurationRequest$ = DescribeComponentConfigurationRequest$;
1768
+ exports.DescribeComponentConfigurationResponse$ = DescribeComponentConfigurationResponse$;
1769
+ exports.DescribeComponentRequest$ = DescribeComponentRequest$;
1770
+ exports.DescribeComponentResponse$ = DescribeComponentResponse$;
1771
+ exports.DescribeLogPattern$ = DescribeLogPattern$;
1718
1772
  exports.DescribeLogPatternCommand = DescribeLogPatternCommand;
1773
+ exports.DescribeLogPatternRequest$ = DescribeLogPatternRequest$;
1774
+ exports.DescribeLogPatternResponse$ = DescribeLogPatternResponse$;
1775
+ exports.DescribeObservation$ = DescribeObservation$;
1719
1776
  exports.DescribeObservationCommand = DescribeObservationCommand;
1777
+ exports.DescribeObservationRequest$ = DescribeObservationRequest$;
1778
+ exports.DescribeObservationResponse$ = DescribeObservationResponse$;
1779
+ exports.DescribeProblem$ = DescribeProblem$;
1720
1780
  exports.DescribeProblemCommand = DescribeProblemCommand;
1781
+ exports.DescribeProblemObservations$ = DescribeProblemObservations$;
1721
1782
  exports.DescribeProblemObservationsCommand = DescribeProblemObservationsCommand;
1783
+ exports.DescribeProblemObservationsRequest$ = DescribeProblemObservationsRequest$;
1784
+ exports.DescribeProblemObservationsResponse$ = DescribeProblemObservationsResponse$;
1785
+ exports.DescribeProblemRequest$ = DescribeProblemRequest$;
1786
+ exports.DescribeProblemResponse$ = DescribeProblemResponse$;
1787
+ exports.DescribeWorkload$ = DescribeWorkload$;
1722
1788
  exports.DescribeWorkloadCommand = DescribeWorkloadCommand;
1789
+ exports.DescribeWorkloadRequest$ = DescribeWorkloadRequest$;
1790
+ exports.DescribeWorkloadResponse$ = DescribeWorkloadResponse$;
1723
1791
  exports.DiscoveryType = DiscoveryType;
1724
1792
  exports.FeedbackKey = FeedbackKey;
1725
1793
  exports.FeedbackValue = FeedbackValue;
1726
1794
  exports.GroupingType = GroupingType;
1727
- exports.InternalServerException = InternalServerException$1;
1795
+ exports.InternalServerException = InternalServerException;
1796
+ exports.InternalServerException$ = InternalServerException$;
1797
+ exports.ListApplications$ = ListApplications$;
1728
1798
  exports.ListApplicationsCommand = ListApplicationsCommand;
1799
+ exports.ListApplicationsRequest$ = ListApplicationsRequest$;
1800
+ exports.ListApplicationsResponse$ = ListApplicationsResponse$;
1801
+ exports.ListComponents$ = ListComponents$;
1729
1802
  exports.ListComponentsCommand = ListComponentsCommand;
1803
+ exports.ListComponentsRequest$ = ListComponentsRequest$;
1804
+ exports.ListComponentsResponse$ = ListComponentsResponse$;
1805
+ exports.ListConfigurationHistory$ = ListConfigurationHistory$;
1730
1806
  exports.ListConfigurationHistoryCommand = ListConfigurationHistoryCommand;
1807
+ exports.ListConfigurationHistoryRequest$ = ListConfigurationHistoryRequest$;
1808
+ exports.ListConfigurationHistoryResponse$ = ListConfigurationHistoryResponse$;
1809
+ exports.ListLogPatternSets$ = ListLogPatternSets$;
1731
1810
  exports.ListLogPatternSetsCommand = ListLogPatternSetsCommand;
1811
+ exports.ListLogPatternSetsRequest$ = ListLogPatternSetsRequest$;
1812
+ exports.ListLogPatternSetsResponse$ = ListLogPatternSetsResponse$;
1813
+ exports.ListLogPatterns$ = ListLogPatterns$;
1732
1814
  exports.ListLogPatternsCommand = ListLogPatternsCommand;
1815
+ exports.ListLogPatternsRequest$ = ListLogPatternsRequest$;
1816
+ exports.ListLogPatternsResponse$ = ListLogPatternsResponse$;
1817
+ exports.ListProblems$ = ListProblems$;
1733
1818
  exports.ListProblemsCommand = ListProblemsCommand;
1819
+ exports.ListProblemsRequest$ = ListProblemsRequest$;
1820
+ exports.ListProblemsResponse$ = ListProblemsResponse$;
1821
+ exports.ListTagsForResource$ = ListTagsForResource$;
1734
1822
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1823
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1824
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1825
+ exports.ListWorkloads$ = ListWorkloads$;
1735
1826
  exports.ListWorkloadsCommand = ListWorkloadsCommand;
1827
+ exports.ListWorkloadsRequest$ = ListWorkloadsRequest$;
1828
+ exports.ListWorkloadsResponse$ = ListWorkloadsResponse$;
1736
1829
  exports.LogFilter = LogFilter;
1830
+ exports.LogPattern$ = LogPattern$;
1831
+ exports.Observation$ = Observation$;
1737
1832
  exports.OsType = OsType;
1833
+ exports.Problem$ = Problem$;
1738
1834
  exports.RecommendationType = RecommendationType;
1835
+ exports.RelatedObservations$ = RelatedObservations$;
1836
+ exports.RemoveWorkload$ = RemoveWorkload$;
1739
1837
  exports.RemoveWorkloadCommand = RemoveWorkloadCommand;
1838
+ exports.RemoveWorkloadRequest$ = RemoveWorkloadRequest$;
1839
+ exports.RemoveWorkloadResponse$ = RemoveWorkloadResponse$;
1740
1840
  exports.ResolutionMethod = ResolutionMethod;
1741
- exports.ResourceInUseException = ResourceInUseException$1;
1742
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1841
+ exports.ResourceInUseException = ResourceInUseException;
1842
+ exports.ResourceInUseException$ = ResourceInUseException$;
1843
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1844
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1743
1845
  exports.SeverityLevel = SeverityLevel;
1744
1846
  exports.Status = Status;
1847
+ exports.Tag$ = Tag$;
1848
+ exports.TagResource$ = TagResource$;
1745
1849
  exports.TagResourceCommand = TagResourceCommand;
1746
- exports.TagsAlreadyExistException = TagsAlreadyExistException$1;
1850
+ exports.TagResourceRequest$ = TagResourceRequest$;
1851
+ exports.TagResourceResponse$ = TagResourceResponse$;
1852
+ exports.TagsAlreadyExistException = TagsAlreadyExistException;
1853
+ exports.TagsAlreadyExistException$ = TagsAlreadyExistException$;
1747
1854
  exports.Tier = Tier;
1748
- exports.TooManyTagsException = TooManyTagsException$1;
1855
+ exports.TooManyTagsException = TooManyTagsException;
1856
+ exports.TooManyTagsException$ = TooManyTagsException$;
1857
+ exports.UntagResource$ = UntagResource$;
1749
1858
  exports.UntagResourceCommand = UntagResourceCommand;
1859
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1860
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1861
+ exports.UpdateApplication$ = UpdateApplication$;
1750
1862
  exports.UpdateApplicationCommand = UpdateApplicationCommand;
1863
+ exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
1864
+ exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
1865
+ exports.UpdateComponent$ = UpdateComponent$;
1751
1866
  exports.UpdateComponentCommand = UpdateComponentCommand;
1867
+ exports.UpdateComponentConfiguration$ = UpdateComponentConfiguration$;
1752
1868
  exports.UpdateComponentConfigurationCommand = UpdateComponentConfigurationCommand;
1869
+ exports.UpdateComponentConfigurationRequest$ = UpdateComponentConfigurationRequest$;
1870
+ exports.UpdateComponentConfigurationResponse$ = UpdateComponentConfigurationResponse$;
1871
+ exports.UpdateComponentRequest$ = UpdateComponentRequest$;
1872
+ exports.UpdateComponentResponse$ = UpdateComponentResponse$;
1873
+ exports.UpdateLogPattern$ = UpdateLogPattern$;
1753
1874
  exports.UpdateLogPatternCommand = UpdateLogPatternCommand;
1875
+ exports.UpdateLogPatternRequest$ = UpdateLogPatternRequest$;
1876
+ exports.UpdateLogPatternResponse$ = UpdateLogPatternResponse$;
1877
+ exports.UpdateProblem$ = UpdateProblem$;
1754
1878
  exports.UpdateProblemCommand = UpdateProblemCommand;
1879
+ exports.UpdateProblemRequest$ = UpdateProblemRequest$;
1880
+ exports.UpdateProblemResponse$ = UpdateProblemResponse$;
1755
1881
  exports.UpdateStatus = UpdateStatus;
1882
+ exports.UpdateWorkload$ = UpdateWorkload$;
1756
1883
  exports.UpdateWorkloadCommand = UpdateWorkloadCommand;
1757
- exports.ValidationException = ValidationException$1;
1884
+ exports.UpdateWorkloadRequest$ = UpdateWorkloadRequest$;
1885
+ exports.UpdateWorkloadResponse$ = UpdateWorkloadResponse$;
1886
+ exports.ValidationException = ValidationException;
1887
+ exports.ValidationException$ = ValidationException$;
1758
1888
  exports.Visibility = Visibility;
1889
+ exports.Workload$ = Workload$;
1890
+ exports.WorkloadConfiguration$ = WorkloadConfiguration$;
1759
1891
  exports.paginateListApplications = paginateListApplications;
1760
1892
  exports.paginateListComponents = paginateListComponents;
1761
1893
  exports.paginateListConfigurationHistory = paginateListConfigurationHistory;