@aws-sdk/client-ssm-sap 3.952.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 (47) hide show
  1. package/dist-cjs/index.js +360 -236
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/DeleteResourcePermissionCommand.js +2 -2
  4. package/dist-es/commands/DeregisterApplicationCommand.js +2 -2
  5. package/dist-es/commands/GetApplicationCommand.js +2 -2
  6. package/dist-es/commands/GetComponentCommand.js +2 -2
  7. package/dist-es/commands/GetConfigurationCheckOperationCommand.js +2 -2
  8. package/dist-es/commands/GetDatabaseCommand.js +2 -2
  9. package/dist-es/commands/GetOperationCommand.js +2 -2
  10. package/dist-es/commands/GetResourcePermissionCommand.js +2 -2
  11. package/dist-es/commands/ListApplicationsCommand.js +2 -2
  12. package/dist-es/commands/ListComponentsCommand.js +2 -2
  13. package/dist-es/commands/ListConfigurationCheckDefinitionsCommand.js +2 -2
  14. package/dist-es/commands/ListConfigurationCheckOperationsCommand.js +2 -2
  15. package/dist-es/commands/ListDatabasesCommand.js +2 -2
  16. package/dist-es/commands/ListOperationEventsCommand.js +2 -2
  17. package/dist-es/commands/ListOperationsCommand.js +2 -2
  18. package/dist-es/commands/ListSubCheckResultsCommand.js +2 -2
  19. package/dist-es/commands/ListSubCheckRuleResultsCommand.js +2 -2
  20. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-es/commands/PutResourcePermissionCommand.js +2 -2
  22. package/dist-es/commands/RegisterApplicationCommand.js +2 -2
  23. package/dist-es/commands/StartApplicationCommand.js +2 -2
  24. package/dist-es/commands/StartApplicationRefreshCommand.js +2 -2
  25. package/dist-es/commands/StartConfigurationChecksCommand.js +2 -2
  26. package/dist-es/commands/StopApplicationCommand.js +2 -2
  27. package/dist-es/commands/TagResourceCommand.js +2 -2
  28. package/dist-es/commands/UntagResourceCommand.js +2 -2
  29. package/dist-es/commands/UpdateApplicationSettingsCommand.js +2 -2
  30. package/dist-es/index.js +1 -0
  31. package/dist-es/runtimeConfig.shared.js +6 -1
  32. package/dist-es/schemas/schemas_0.js +223 -209
  33. package/dist-types/SsmSapClient.d.ts +1 -10
  34. package/dist-types/index.d.ts +1 -0
  35. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  36. package/dist-types/runtimeConfig.d.ts +6 -2
  37. package/dist-types/runtimeConfig.native.d.ts +6 -2
  38. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  39. package/dist-types/schemas/schemas_0.d.ts +111 -139
  40. package/dist-types/ts3.4/SsmSapClient.d.ts +0 -4
  41. package/dist-types/ts3.4/index.d.ts +1 -0
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -141
  47. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class SsmSapClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let SsmSapServiceException$1 = class SsmSapServiceException extends smithyClient.ServiceException {
113
+ class SsmSapServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, SsmSapServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let ConflictException$1 = class ConflictException extends SsmSapServiceException$1 {
120
+ class ConflictException extends SsmSapServiceException {
121
121
  name = "ConflictException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ let ConflictException$1 = class ConflictException extends SsmSapServiceException
130
130
  Object.setPrototypeOf(this, ConflictException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let InternalServerException$1 = class InternalServerException extends SsmSapServiceException$1 {
133
+ }
134
+ class InternalServerException extends SsmSapServiceException {
135
135
  name = "InternalServerException";
136
136
  $fault = "server";
137
137
  Message;
@@ -144,8 +144,8 @@ let InternalServerException$1 = class InternalServerException extends SsmSapServ
144
144
  Object.setPrototypeOf(this, InternalServerException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends SsmSapServiceException$1 {
147
+ }
148
+ class ResourceNotFoundException extends SsmSapServiceException {
149
149
  name = "ResourceNotFoundException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,8 +158,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends SsmSap
158
158
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- };
162
- let ValidationException$1 = class ValidationException extends SsmSapServiceException$1 {
161
+ }
162
+ class ValidationException extends SsmSapServiceException {
163
163
  name = "ValidationException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let ValidationException$1 = class ValidationException extends SsmSapServiceExcep
172
172
  Object.setPrototypeOf(this, ValidationException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let UnauthorizedException$1 = class UnauthorizedException extends SsmSapServiceException$1 {
175
+ }
176
+ class UnauthorizedException extends SsmSapServiceException {
177
177
  name = "UnauthorizedException";
178
178
  $fault = "client";
179
179
  Message;
@@ -186,7 +186,7 @@ let UnauthorizedException$1 = class UnauthorizedException extends SsmSapServiceE
186
186
  Object.setPrototypeOf(this, UnauthorizedException.prototype);
187
187
  this.Message = opts.Message;
188
188
  }
189
- };
189
+ }
190
190
 
191
191
  const _A = "Application";
192
192
  const _AA = "ApplicationArn";
@@ -432,7 +432,7 @@ const _t = "tags";
432
432
  const _tK = "tagKeys";
433
433
  const n0 = "com.amazonaws.ssmsap";
434
434
  var SecretId = [0, n0, _SI, 8, 0];
435
- var Application = [
435
+ var Application$ = [
436
436
  3,
437
437
  n0,
438
438
  _A,
@@ -440,9 +440,16 @@ var Application = [
440
440
  [_I, _T, _Ar, _ARA, _S, _DS, _C, _LU, _SM, _AAA],
441
441
  [0, 0, 0, 0, 0, 0, 64 | 0, 4, 0, 64 | 0],
442
442
  ];
443
- var ApplicationCredential = [3, n0, _AC, 0, [_DN, _CT, _SI], [0, 0, [() => SecretId, 0]]];
444
- var ApplicationSummary = [3, n0, _AS, 0, [_I, _DS, _T, _Ar, _Ta], [0, 0, 0, 0, 128 | 0]];
445
- var AssociatedHost = [
443
+ var ApplicationCredential$ = [
444
+ 3,
445
+ n0,
446
+ _AC,
447
+ 0,
448
+ [_DN, _CT, _SI],
449
+ [0, 0, [() => SecretId, 0]],
450
+ ];
451
+ var ApplicationSummary$ = [3, n0, _AS, 0, [_I, _DS, _T, _Ar, _Ta], [0, 0, 0, 0, 128 | 0]];
452
+ var AssociatedHost$ = [
446
453
  3,
447
454
  n0,
448
455
  _AH,
@@ -450,8 +457,8 @@ var AssociatedHost = [
450
457
  [_H, _EII, _IA, _OV],
451
458
  [0, 0, () => IpAddressList, 0],
452
459
  ];
453
- var BackintConfig = [3, n0, _BC, 0, [_BM, _ENBIP], [0, 2]];
454
- var Component = [
460
+ var BackintConfig$ = [3, n0, _BC, 0, [_BM, _ENBIP], [0, 2]];
461
+ var Component$ = [
455
462
  3,
456
463
  n0,
457
464
  _Co,
@@ -470,19 +477,26 @@ var Component = [
470
477
  0,
471
478
  0,
472
479
  0,
473
- () => Resilience,
474
- () => AssociatedHost,
480
+ () => Resilience$,
481
+ () => AssociatedHost$,
475
482
  64 | 0,
476
483
  () => HostList,
477
484
  0,
478
- () => DatabaseConnection,
485
+ () => DatabaseConnection$,
479
486
  4,
480
487
  0,
481
488
  ],
482
489
  ];
483
- var ComponentInfo = [3, n0, _CIo, 0, [_CTo, _Si, _EII], [0, 0, 0]];
484
- var ComponentSummary = [3, n0, _CS, 0, [_AI, _CI, _CTo, _Ta, _Ar], [0, 0, 0, 128 | 0, 0]];
485
- var ConfigurationCheckDefinition = [
490
+ var ComponentInfo$ = [3, n0, _CIo, 0, [_CTo, _Si, _EII], [0, 0, 0]];
491
+ var ComponentSummary$ = [
492
+ 3,
493
+ n0,
494
+ _CS,
495
+ 0,
496
+ [_AI, _CI, _CTo, _Ta, _Ar],
497
+ [0, 0, 0, 128 | 0, 0],
498
+ ];
499
+ var ConfigurationCheckDefinition$ = [
486
500
  3,
487
501
  n0,
488
502
  _CCD,
@@ -490,17 +504,17 @@ var ConfigurationCheckDefinition = [
490
504
  [_I, _N, _De, _AAT],
491
505
  [0, 0, 0, 64 | 0],
492
506
  ];
493
- var ConfigurationCheckOperation = [
507
+ var ConfigurationCheckOperation$ = [
494
508
  3,
495
509
  n0,
496
510
  _CCO,
497
511
  0,
498
512
  [_I, _AI, _S, _SM, _CCI, _CCN, _CCDo, _ST, _ET, _RSC],
499
- [0, 0, 0, 0, 0, 0, 0, 4, 4, () => RuleStatusCounts],
513
+ [0, 0, 0, 0, 0, 0, 0, 4, 4, () => RuleStatusCounts$],
500
514
  ];
501
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
502
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
503
- var Database = [
515
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
516
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
517
+ var Database$ = [
504
518
  3,
505
519
  n0,
506
520
  _Da,
@@ -508,8 +522,8 @@ var Database = [
508
522
  [_AI, _CI, _Cr, _DI, _DN, _DT, _Ar, _S, _PH, _SQLP, _LU, _CCA],
509
523
  [0, 0, [() => ApplicationCredentialList, 0], 0, 0, 0, 0, 0, 0, 1, 4, 64 | 0],
510
524
  ];
511
- var DatabaseConnection = [3, n0, _DC, 0, [_DCM, _DA, _CIon], [0, 0, 0]];
512
- var DatabaseSummary = [
525
+ var DatabaseConnection$ = [3, n0, _DC, 0, [_DCM, _DA, _CIon], [0, 0, 0]];
526
+ var DatabaseSummary$ = [
513
527
  3,
514
528
  n0,
515
529
  _DSa,
@@ -517,36 +531,36 @@ var DatabaseSummary = [
517
531
  [_AI, _CI, _DI, _DT, _Ar, _Ta],
518
532
  [0, 0, 0, 0, 0, 128 | 0],
519
533
  ];
520
- var DeleteResourcePermissionInput = [3, n0, _DRPI, 0, [_AT, _SRA, _RA], [0, 0, 0]];
521
- var DeleteResourcePermissionOutput = [3, n0, _DRPO, 0, [_P], [0]];
522
- var DeregisterApplicationInput = [3, n0, _DAI, 0, [_AI], [0]];
523
- var DeregisterApplicationOutput = [3, n0, _DAO, 0, [], []];
524
- var Filter = [3, n0, _F, 0, [_N, _V, _O], [0, 0, 0]];
525
- var GetApplicationInput = [3, n0, _GAI, 0, [_AI, _AA, _ARA], [0, 0, 0]];
526
- var GetApplicationOutput = [3, n0, _GAO, 0, [_A, _Ta], [() => Application, 128 | 0]];
527
- var GetComponentInput = [3, n0, _GCI, 0, [_AI, _CI], [0, 0]];
528
- var GetComponentOutput = [3, n0, _GCO, 0, [_Co, _Ta], [() => Component, 128 | 0]];
529
- var GetConfigurationCheckOperationInput = [3, n0, _GCCOI, 0, [_OI], [0]];
530
- var GetConfigurationCheckOperationOutput = [
534
+ var DeleteResourcePermissionInput$ = [3, n0, _DRPI, 0, [_AT, _SRA, _RA], [0, 0, 0]];
535
+ var DeleteResourcePermissionOutput$ = [3, n0, _DRPO, 0, [_P], [0]];
536
+ var DeregisterApplicationInput$ = [3, n0, _DAI, 0, [_AI], [0]];
537
+ var DeregisterApplicationOutput$ = [3, n0, _DAO, 0, [], []];
538
+ var Filter$ = [3, n0, _F, 0, [_N, _V, _O], [0, 0, 0]];
539
+ var GetApplicationInput$ = [3, n0, _GAI, 0, [_AI, _AA, _ARA], [0, 0, 0]];
540
+ var GetApplicationOutput$ = [3, n0, _GAO, 0, [_A, _Ta], [() => Application$, 128 | 0]];
541
+ var GetComponentInput$ = [3, n0, _GCI, 0, [_AI, _CI], [0, 0]];
542
+ var GetComponentOutput$ = [3, n0, _GCO, 0, [_Co, _Ta], [() => Component$, 128 | 0]];
543
+ var GetConfigurationCheckOperationInput$ = [3, n0, _GCCOI, 0, [_OI], [0]];
544
+ var GetConfigurationCheckOperationOutput$ = [
531
545
  3,
532
546
  n0,
533
547
  _GCCOO,
534
548
  0,
535
549
  [_CCO],
536
- [() => ConfigurationCheckOperation],
550
+ [() => ConfigurationCheckOperation$],
537
551
  ];
538
- var GetDatabaseInput = [3, n0, _GDI, 0, [_AI, _CI, _DI, _DA], [0, 0, 0, 0]];
539
- var GetDatabaseOutput = [3, n0, _GDO, 0, [_Da, _Ta], [[() => Database, 0], 128 | 0]];
540
- var GetOperationInput = [3, n0, _GOI, 0, [_OI], [0]];
541
- var GetOperationOutput = [3, n0, _GOO, 0, [_Op], [[() => Operation, 0]]];
542
- var GetResourcePermissionInput = [3, n0, _GRPI, 0, [_AT, _RA], [0, 0]];
543
- var GetResourcePermissionOutput = [3, n0, _GRPO, 0, [_P], [0]];
544
- var Host = [3, n0, _Hos, 0, [_HN, _HI, _ECII, _II, _HR, _OV], [0, 0, 0, 0, 0, 0]];
545
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
546
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
547
- var IpAddressMember = [3, n0, _IAM, 0, [_IAp, _Pr, _ATl], [0, 2, 0]];
548
- var ListApplicationsInput = [3, n0, _LAI, 0, [_NT, _MR, _Fi], [0, 1, () => FilterList]];
549
- var ListApplicationsOutput = [
552
+ var GetDatabaseInput$ = [3, n0, _GDI, 0, [_AI, _CI, _DI, _DA], [0, 0, 0, 0]];
553
+ var GetDatabaseOutput$ = [3, n0, _GDO, 0, [_Da, _Ta], [[() => Database$, 0], 128 | 0]];
554
+ var GetOperationInput$ = [3, n0, _GOI, 0, [_OI], [0]];
555
+ var GetOperationOutput$ = [3, n0, _GOO, 0, [_Op], [[() => Operation$, 0]]];
556
+ var GetResourcePermissionInput$ = [3, n0, _GRPI, 0, [_AT, _RA], [0, 0]];
557
+ var GetResourcePermissionOutput$ = [3, n0, _GRPO, 0, [_P], [0]];
558
+ var Host$ = [3, n0, _Hos, 0, [_HN, _HI, _ECII, _II, _HR, _OV], [0, 0, 0, 0, 0, 0]];
559
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
560
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
561
+ var IpAddressMember$ = [3, n0, _IAM, 0, [_IAp, _Pr, _ATl], [0, 2, 0]];
562
+ var ListApplicationsInput$ = [3, n0, _LAI, 0, [_NT, _MR, _Fi], [0, 1, () => FilterList]];
563
+ var ListApplicationsOutput$ = [
550
564
  3,
551
565
  n0,
552
566
  _LAO,
@@ -554,10 +568,10 @@ var ListApplicationsOutput = [
554
568
  [_Ap, _NT],
555
569
  [() => ApplicationSummaryList, 0],
556
570
  ];
557
- var ListComponentsInput = [3, n0, _LCI, 0, [_AI, _NT, _MR], [0, 0, 1]];
558
- var ListComponentsOutput = [3, n0, _LCO, 0, [_C, _NT], [() => ComponentSummaryList, 0]];
559
- var ListConfigurationCheckDefinitionsInput = [3, n0, _LCCDI, 0, [_MR, _NT], [1, 0]];
560
- var ListConfigurationCheckDefinitionsOutput = [
571
+ var ListComponentsInput$ = [3, n0, _LCI, 0, [_AI, _NT, _MR], [0, 0, 1]];
572
+ var ListComponentsOutput$ = [3, n0, _LCO, 0, [_C, _NT], [() => ComponentSummaryList, 0]];
573
+ var ListConfigurationCheckDefinitionsInput$ = [3, n0, _LCCDI, 0, [_MR, _NT], [1, 0]];
574
+ var ListConfigurationCheckDefinitionsOutput$ = [
561
575
  3,
562
576
  n0,
563
577
  _LCCDO,
@@ -565,7 +579,7 @@ var ListConfigurationCheckDefinitionsOutput = [
565
579
  [_CCo, _NT],
566
580
  [() => ConfigurationCheckDefinitionList, 0],
567
581
  ];
568
- var ListConfigurationCheckOperationsInput = [
582
+ var ListConfigurationCheckOperationsInput$ = [
569
583
  3,
570
584
  n0,
571
585
  _LCCOI,
@@ -573,7 +587,7 @@ var ListConfigurationCheckOperationsInput = [
573
587
  [_AI, _LM, _MR, _NT, _Fi],
574
588
  [0, 0, 1, 0, () => FilterList],
575
589
  ];
576
- var ListConfigurationCheckOperationsOutput = [
590
+ var ListConfigurationCheckOperationsOutput$ = [
577
591
  3,
578
592
  n0,
579
593
  _LCCOO,
@@ -581,9 +595,9 @@ var ListConfigurationCheckOperationsOutput = [
581
595
  [_CCOo, _NT],
582
596
  [() => ConfigurationCheckOperationList, 0],
583
597
  ];
584
- var ListDatabasesInput = [3, n0, _LDI, 0, [_AI, _CI, _NT, _MR], [0, 0, 0, 1]];
585
- var ListDatabasesOutput = [3, n0, _LDO, 0, [_D, _NT], [() => DatabaseSummaryList, 0]];
586
- var ListOperationEventsInput = [
598
+ var ListDatabasesInput$ = [3, n0, _LDI, 0, [_AI, _CI, _NT, _MR], [0, 0, 0, 1]];
599
+ var ListDatabasesOutput$ = [3, n0, _LDO, 0, [_D, _NT], [() => DatabaseSummaryList, 0]];
600
+ var ListOperationEventsInput$ = [
587
601
  3,
588
602
  n0,
589
603
  _LOEI,
@@ -591,7 +605,7 @@ var ListOperationEventsInput = [
591
605
  [_OI, _MR, _NT, _Fi],
592
606
  [0, 1, 0, () => FilterList],
593
607
  ];
594
- var ListOperationEventsOutput = [
608
+ var ListOperationEventsOutput$ = [
595
609
  3,
596
610
  n0,
597
611
  _LOEO,
@@ -599,7 +613,7 @@ var ListOperationEventsOutput = [
599
613
  [_OE, _NT],
600
614
  [() => OperationEventList, 0],
601
615
  ];
602
- var ListOperationsInput = [
616
+ var ListOperationsInput$ = [
603
617
  3,
604
618
  n0,
605
619
  _LOI,
@@ -607,9 +621,9 @@ var ListOperationsInput = [
607
621
  [_AI, _MR, _NT, _Fi],
608
622
  [0, 1, 0, () => FilterList],
609
623
  ];
610
- var ListOperationsOutput = [3, n0, _LOO, 0, [_Ope, _NT], [[() => OperationList, 0], 0]];
611
- var ListSubCheckResultsInput = [3, n0, _LSCRI, 0, [_OI, _MR, _NT], [0, 1, 0]];
612
- var ListSubCheckResultsOutput = [
624
+ var ListOperationsOutput$ = [3, n0, _LOO, 0, [_Ope, _NT], [[() => OperationList, 0], 0]];
625
+ var ListSubCheckResultsInput$ = [3, n0, _LSCRI, 0, [_OI, _MR, _NT], [0, 1, 0]];
626
+ var ListSubCheckResultsOutput$ = [
613
627
  3,
614
628
  n0,
615
629
  _LSCRO,
@@ -617,8 +631,8 @@ var ListSubCheckResultsOutput = [
617
631
  [_SCR, _NT],
618
632
  [() => SubCheckResultList, 0],
619
633
  ];
620
- var ListSubCheckRuleResultsInput = [3, n0, _LSCRRI, 0, [_SCRI, _MR, _NT], [0, 1, 0]];
621
- var ListSubCheckRuleResultsOutput = [
634
+ var ListSubCheckRuleResultsInput$ = [3, n0, _LSCRRI, 0, [_SCRI, _MR, _NT], [0, 1, 0]];
635
+ var ListSubCheckRuleResultsOutput$ = [
622
636
  3,
623
637
  n0,
624
638
  _LSCRRO,
@@ -626,9 +640,9 @@ var ListSubCheckRuleResultsOutput = [
626
640
  [_RR, _NT],
627
641
  [() => RuleResultList, 0],
628
642
  ];
629
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
630
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
631
- var Operation = [
643
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
644
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
645
+ var Operation$ = [
632
646
  3,
633
647
  n0,
634
648
  _Op,
@@ -636,17 +650,17 @@ var Operation = [
636
650
  [_I, _T, _S, _SM, _Pro, _RT, _RI, _RA, _ST, _ET, _LUT],
637
651
  [0, 0, 0, 0, [() => OperationProperties, 0], 0, 0, 0, 4, 4, 4],
638
652
  ];
639
- var OperationEvent = [
653
+ var OperationEvent$ = [
640
654
  3,
641
655
  n0,
642
656
  _OEp,
643
657
  0,
644
658
  [_De, _Re, _S, _SM, _Ti],
645
- [0, () => Resource, 0, 0, 4],
659
+ [0, () => Resource$, 0, 0, 4],
646
660
  ];
647
- var PutResourcePermissionInput = [3, n0, _PRPI, 0, [_AT, _SRA, _RA], [0, 0, 0]];
648
- var PutResourcePermissionOutput = [3, n0, _PRPO, 0, [_P], [0]];
649
- var RegisterApplicationInput = [
661
+ var PutResourcePermissionInput$ = [3, n0, _PRPI, 0, [_AT, _SRA, _RA], [0, 0, 0]];
662
+ var PutResourcePermissionOutput$ = [3, n0, _PRPO, 0, [_P], [0]];
663
+ var RegisterApplicationInput$ = [
650
664
  3,
651
665
  n0,
652
666
  _RAI,
@@ -654,19 +668,19 @@ var RegisterApplicationInput = [
654
668
  [_AI, _ATp, _In, _SIN, _Si, _Ta, _Cr, _DA, _CIom],
655
669
  [0, 0, 64 | 0, 0, 0, 128 | 0, [() => ApplicationCredentialList, 0], 0, () => ComponentInfoList],
656
670
  ];
657
- var RegisterApplicationOutput = [3, n0, _RAO, 0, [_A, _OI], [() => Application, 0]];
658
- var Resilience = [3, n0, _R, 0, [_HT, _HRM, _HOM, _CSl, _ER], [0, 0, 0, 0, 2]];
659
- var Resource = [3, n0, _Re, 0, [_RA, _RT], [0, 0]];
660
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
661
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
662
- var RuleResult = [3, n0, _RRu, 0, [_I, _De, _S, _M, _Me], [0, 0, 0, 0, 128 | 0]];
663
- var RuleStatusCounts = [3, n0, _RSC, 0, [_Fa, _W, _Inf, _Pa, _U], [1, 1, 1, 1, 1]];
664
- var StartApplicationInput = [3, n0, _SAI, 0, [_AI], [0]];
665
- var StartApplicationOutput = [3, n0, _SAO, 0, [_OI], [0]];
666
- var StartApplicationRefreshInput = [3, n0, _SARI, 0, [_AI], [0]];
667
- var StartApplicationRefreshOutput = [3, n0, _SARO, 0, [_OI], [0]];
668
- var StartConfigurationChecksInput = [3, n0, _SCCI, 0, [_AI, _CCIo], [0, 64 | 0]];
669
- var StartConfigurationChecksOutput = [
671
+ var RegisterApplicationOutput$ = [3, n0, _RAO, 0, [_A, _OI], [() => Application$, 0]];
672
+ var Resilience$ = [3, n0, _R, 0, [_HT, _HRM, _HOM, _CSl, _ER], [0, 0, 0, 0, 2]];
673
+ var Resource$ = [3, n0, _Re, 0, [_RA, _RT], [0, 0]];
674
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
675
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
676
+ var RuleResult$ = [3, n0, _RRu, 0, [_I, _De, _S, _M, _Me], [0, 0, 0, 0, 128 | 0]];
677
+ var RuleStatusCounts$ = [3, n0, _RSC, 0, [_Fa, _W, _Inf, _Pa, _U], [1, 1, 1, 1, 1]];
678
+ var StartApplicationInput$ = [3, n0, _SAI, 0, [_AI], [0]];
679
+ var StartApplicationOutput$ = [3, n0, _SAO, 0, [_OI], [0]];
680
+ var StartApplicationRefreshInput$ = [3, n0, _SARI, 0, [_AI], [0]];
681
+ var StartApplicationRefreshOutput$ = [3, n0, _SARO, 0, [_OI], [0]];
682
+ var StartConfigurationChecksInput$ = [3, n0, _SCCI, 0, [_AI, _CCIo], [0, 64 | 0]];
683
+ var StartConfigurationChecksOutput$ = [
670
684
  3,
671
685
  n0,
672
686
  _SCCO,
@@ -674,14 +688,14 @@ var StartConfigurationChecksOutput = [
674
688
  [_CCOo],
675
689
  [() => ConfigurationCheckOperationList],
676
690
  ];
677
- var StopApplicationInput = [3, n0, _SAIt, 0, [_AI, _SCE, _IEIS], [0, 0, 2]];
678
- var StopApplicationOutput = [3, n0, _SAOt, 0, [_OI], [0]];
679
- var SubCheckResult = [3, n0, _SCRu, 0, [_I, _N, _De, _Ref], [0, 0, 0, 64 | 0]];
680
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
681
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
682
- var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
683
- schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
684
- var UntagResourceRequest = [
691
+ var StopApplicationInput$ = [3, n0, _SAIt, 0, [_AI, _SCE, _IEIS], [0, 0, 2]];
692
+ var StopApplicationOutput$ = [3, n0, _SAOt, 0, [_OI], [0]];
693
+ var SubCheckResult$ = [3, n0, _SCRu, 0, [_I, _N, _De, _Ref], [0, 0, 0, 64 | 0]];
694
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
695
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
696
+ var UnauthorizedException$ = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
697
+ schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
698
+ var UntagResourceRequest$ = [
685
699
  3,
686
700
  n0,
687
701
  _URR,
@@ -692,250 +706,250 @@ var UntagResourceRequest = [
692
706
  [64 | 0, { [_hQ]: _tK }],
693
707
  ],
694
708
  ];
695
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
696
- var UpdateApplicationSettingsInput = [
709
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
710
+ var UpdateApplicationSettingsInput$ = [
697
711
  3,
698
712
  n0,
699
713
  _UASI,
700
714
  0,
701
715
  [_AI, _CTAOU, _CTR, _B, _DA],
702
- [0, [() => ApplicationCredentialList, 0], [() => ApplicationCredentialList, 0], () => BackintConfig, 0],
716
+ [0, [() => ApplicationCredentialList, 0], [() => ApplicationCredentialList, 0], () => BackintConfig$, 0],
703
717
  ];
704
- var UpdateApplicationSettingsOutput = [3, n0, _UASO, 0, [_M, _OIp], [0, 64 | 0]];
705
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
706
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
707
- var SsmSapServiceException = [-3, _sm, "SsmSapServiceException", 0, [], []];
708
- schema.TypeRegistry.for(_sm).registerError(SsmSapServiceException, SsmSapServiceException$1);
709
- var ApplicationCredentialList = [1, n0, _ACL, 0, [() => ApplicationCredential, 0]];
710
- var ApplicationSummaryList = [1, n0, _ASL, 0, () => ApplicationSummary];
711
- var ComponentInfoList = [1, n0, _CIL, 0, () => ComponentInfo];
712
- var ComponentSummaryList = [1, n0, _CSL, 0, () => ComponentSummary];
713
- var ConfigurationCheckDefinitionList = [1, n0, _CCDL, 0, () => ConfigurationCheckDefinition];
714
- var ConfigurationCheckOperationList = [1, n0, _CCOL, 0, () => ConfigurationCheckOperation];
715
- var DatabaseSummaryList = [1, n0, _DSL, 0, () => DatabaseSummary];
716
- var FilterList = [1, n0, _FL, 0, () => Filter];
717
- var HostList = [1, n0, _HL, 0, () => Host];
718
- var IpAddressList = [1, n0, _IAL, 0, () => IpAddressMember];
719
- var OperationEventList = [1, n0, _OEL, 0, () => OperationEvent];
720
- var OperationList = [1, n0, _OL, 0, [() => Operation, 0]];
721
- var RuleResultList = [1, n0, _RRL, 0, () => RuleResult];
722
- var SubCheckResultList = [1, n0, _SCRL, 0, () => SubCheckResult];
718
+ var UpdateApplicationSettingsOutput$ = [3, n0, _UASO, 0, [_M, _OIp], [0, 64 | 0]];
719
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
720
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
721
+ var SsmSapServiceException$ = [-3, _sm, "SsmSapServiceException", 0, [], []];
722
+ schema.TypeRegistry.for(_sm).registerError(SsmSapServiceException$, SsmSapServiceException);
723
+ var ApplicationCredentialList = [1, n0, _ACL, 0, [() => ApplicationCredential$, 0]];
724
+ var ApplicationSummaryList = [1, n0, _ASL, 0, () => ApplicationSummary$];
725
+ var ComponentInfoList = [1, n0, _CIL, 0, () => ComponentInfo$];
726
+ var ComponentSummaryList = [1, n0, _CSL, 0, () => ComponentSummary$];
727
+ var ConfigurationCheckDefinitionList = [1, n0, _CCDL, 0, () => ConfigurationCheckDefinition$];
728
+ var ConfigurationCheckOperationList = [1, n0, _CCOL, 0, () => ConfigurationCheckOperation$];
729
+ var DatabaseSummaryList = [1, n0, _DSL, 0, () => DatabaseSummary$];
730
+ var FilterList = [1, n0, _FL, 0, () => Filter$];
731
+ var HostList = [1, n0, _HL, 0, () => Host$];
732
+ var IpAddressList = [1, n0, _IAL, 0, () => IpAddressMember$];
733
+ var OperationEventList = [1, n0, _OEL, 0, () => OperationEvent$];
734
+ var OperationList = [1, n0, _OL, 0, [() => Operation$, 0]];
735
+ var RuleResultList = [1, n0, _RRL, 0, () => RuleResult$];
736
+ var SubCheckResultList = [1, n0, _SCRL, 0, () => SubCheckResult$];
723
737
  var OperationProperties = [2, n0, _OP, { [_sp]: 1 }, 0, 0];
724
- var DeleteResourcePermission = [
738
+ var DeleteResourcePermission$ = [
725
739
  9,
726
740
  n0,
727
741
  _DRP,
728
742
  { [_h]: ["POST", "/delete-resource-permission", 200] },
729
- () => DeleteResourcePermissionInput,
730
- () => DeleteResourcePermissionOutput,
743
+ () => DeleteResourcePermissionInput$,
744
+ () => DeleteResourcePermissionOutput$,
731
745
  ];
732
- var DeregisterApplication = [
746
+ var DeregisterApplication$ = [
733
747
  9,
734
748
  n0,
735
749
  _DAe,
736
750
  { [_h]: ["POST", "/deregister-application", 200] },
737
- () => DeregisterApplicationInput,
738
- () => DeregisterApplicationOutput,
751
+ () => DeregisterApplicationInput$,
752
+ () => DeregisterApplicationOutput$,
739
753
  ];
740
- var GetApplication = [
754
+ var GetApplication$ = [
741
755
  9,
742
756
  n0,
743
757
  _GA,
744
758
  { [_h]: ["POST", "/get-application", 200] },
745
- () => GetApplicationInput,
746
- () => GetApplicationOutput,
759
+ () => GetApplicationInput$,
760
+ () => GetApplicationOutput$,
747
761
  ];
748
- var GetComponent = [
762
+ var GetComponent$ = [
749
763
  9,
750
764
  n0,
751
765
  _GC,
752
766
  { [_h]: ["POST", "/get-component", 200] },
753
- () => GetComponentInput,
754
- () => GetComponentOutput,
767
+ () => GetComponentInput$,
768
+ () => GetComponentOutput$,
755
769
  ];
756
- var GetConfigurationCheckOperation = [
770
+ var GetConfigurationCheckOperation$ = [
757
771
  9,
758
772
  n0,
759
773
  _GCCO,
760
774
  { [_h]: ["POST", "/get-configuration-check-operation", 200] },
761
- () => GetConfigurationCheckOperationInput,
762
- () => GetConfigurationCheckOperationOutput,
775
+ () => GetConfigurationCheckOperationInput$,
776
+ () => GetConfigurationCheckOperationOutput$,
763
777
  ];
764
- var GetDatabase = [
778
+ var GetDatabase$ = [
765
779
  9,
766
780
  n0,
767
781
  _GD,
768
782
  { [_h]: ["POST", "/get-database", 200] },
769
- () => GetDatabaseInput,
770
- () => GetDatabaseOutput,
783
+ () => GetDatabaseInput$,
784
+ () => GetDatabaseOutput$,
771
785
  ];
772
- var GetOperation = [
786
+ var GetOperation$ = [
773
787
  9,
774
788
  n0,
775
789
  _GO,
776
790
  { [_h]: ["POST", "/get-operation", 200] },
777
- () => GetOperationInput,
778
- () => GetOperationOutput,
791
+ () => GetOperationInput$,
792
+ () => GetOperationOutput$,
779
793
  ];
780
- var GetResourcePermission = [
794
+ var GetResourcePermission$ = [
781
795
  9,
782
796
  n0,
783
797
  _GRP,
784
798
  { [_h]: ["POST", "/get-resource-permission", 200] },
785
- () => GetResourcePermissionInput,
786
- () => GetResourcePermissionOutput,
799
+ () => GetResourcePermissionInput$,
800
+ () => GetResourcePermissionOutput$,
787
801
  ];
788
- var ListApplications = [
802
+ var ListApplications$ = [
789
803
  9,
790
804
  n0,
791
805
  _LA,
792
806
  { [_h]: ["POST", "/list-applications", 200] },
793
- () => ListApplicationsInput,
794
- () => ListApplicationsOutput,
807
+ () => ListApplicationsInput$,
808
+ () => ListApplicationsOutput$,
795
809
  ];
796
- var ListComponents = [
810
+ var ListComponents$ = [
797
811
  9,
798
812
  n0,
799
813
  _LC,
800
814
  { [_h]: ["POST", "/list-components", 200] },
801
- () => ListComponentsInput,
802
- () => ListComponentsOutput,
815
+ () => ListComponentsInput$,
816
+ () => ListComponentsOutput$,
803
817
  ];
804
- var ListConfigurationCheckDefinitions = [
818
+ var ListConfigurationCheckDefinitions$ = [
805
819
  9,
806
820
  n0,
807
821
  _LCCD,
808
822
  { [_h]: ["POST", "/list-configuration-check-definitions", 200] },
809
- () => ListConfigurationCheckDefinitionsInput,
810
- () => ListConfigurationCheckDefinitionsOutput,
823
+ () => ListConfigurationCheckDefinitionsInput$,
824
+ () => ListConfigurationCheckDefinitionsOutput$,
811
825
  ];
812
- var ListConfigurationCheckOperations = [
826
+ var ListConfigurationCheckOperations$ = [
813
827
  9,
814
828
  n0,
815
829
  _LCCO,
816
830
  { [_h]: ["POST", "/list-configuration-check-operations", 200] },
817
- () => ListConfigurationCheckOperationsInput,
818
- () => ListConfigurationCheckOperationsOutput,
831
+ () => ListConfigurationCheckOperationsInput$,
832
+ () => ListConfigurationCheckOperationsOutput$,
819
833
  ];
820
- var ListDatabases = [
834
+ var ListDatabases$ = [
821
835
  9,
822
836
  n0,
823
837
  _LD,
824
838
  { [_h]: ["POST", "/list-databases", 200] },
825
- () => ListDatabasesInput,
826
- () => ListDatabasesOutput,
839
+ () => ListDatabasesInput$,
840
+ () => ListDatabasesOutput$,
827
841
  ];
828
- var ListOperationEvents = [
842
+ var ListOperationEvents$ = [
829
843
  9,
830
844
  n0,
831
845
  _LOE,
832
846
  { [_h]: ["POST", "/list-operation-events", 200] },
833
- () => ListOperationEventsInput,
834
- () => ListOperationEventsOutput,
847
+ () => ListOperationEventsInput$,
848
+ () => ListOperationEventsOutput$,
835
849
  ];
836
- var ListOperations = [
850
+ var ListOperations$ = [
837
851
  9,
838
852
  n0,
839
853
  _LO,
840
854
  { [_h]: ["POST", "/list-operations", 200] },
841
- () => ListOperationsInput,
842
- () => ListOperationsOutput,
855
+ () => ListOperationsInput$,
856
+ () => ListOperationsOutput$,
843
857
  ];
844
- var ListSubCheckResults = [
858
+ var ListSubCheckResults$ = [
845
859
  9,
846
860
  n0,
847
861
  _LSCR,
848
862
  { [_h]: ["POST", "/list-sub-check-results", 200] },
849
- () => ListSubCheckResultsInput,
850
- () => ListSubCheckResultsOutput,
863
+ () => ListSubCheckResultsInput$,
864
+ () => ListSubCheckResultsOutput$,
851
865
  ];
852
- var ListSubCheckRuleResults = [
866
+ var ListSubCheckRuleResults$ = [
853
867
  9,
854
868
  n0,
855
869
  _LSCRR,
856
870
  { [_h]: ["POST", "/list-sub-check-rule-results", 200] },
857
- () => ListSubCheckRuleResultsInput,
858
- () => ListSubCheckRuleResultsOutput,
871
+ () => ListSubCheckRuleResultsInput$,
872
+ () => ListSubCheckRuleResultsOutput$,
859
873
  ];
860
- var ListTagsForResource = [
874
+ var ListTagsForResource$ = [
861
875
  9,
862
876
  n0,
863
877
  _LTFR,
864
878
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
865
- () => ListTagsForResourceRequest,
866
- () => ListTagsForResourceResponse,
879
+ () => ListTagsForResourceRequest$,
880
+ () => ListTagsForResourceResponse$,
867
881
  ];
868
- var PutResourcePermission = [
882
+ var PutResourcePermission$ = [
869
883
  9,
870
884
  n0,
871
885
  _PRP,
872
886
  { [_h]: ["POST", "/put-resource-permission", 200] },
873
- () => PutResourcePermissionInput,
874
- () => PutResourcePermissionOutput,
887
+ () => PutResourcePermissionInput$,
888
+ () => PutResourcePermissionOutput$,
875
889
  ];
876
- var RegisterApplication = [
890
+ var RegisterApplication$ = [
877
891
  9,
878
892
  n0,
879
893
  _RAe,
880
894
  { [_h]: ["POST", "/register-application", 200] },
881
- () => RegisterApplicationInput,
882
- () => RegisterApplicationOutput,
895
+ () => RegisterApplicationInput$,
896
+ () => RegisterApplicationOutput$,
883
897
  ];
884
- var StartApplication = [
898
+ var StartApplication$ = [
885
899
  9,
886
900
  n0,
887
901
  _SA,
888
902
  { [_h]: ["POST", "/start-application", 200] },
889
- () => StartApplicationInput,
890
- () => StartApplicationOutput,
903
+ () => StartApplicationInput$,
904
+ () => StartApplicationOutput$,
891
905
  ];
892
- var StartApplicationRefresh = [
906
+ var StartApplicationRefresh$ = [
893
907
  9,
894
908
  n0,
895
909
  _SAR,
896
910
  { [_h]: ["POST", "/start-application-refresh", 200] },
897
- () => StartApplicationRefreshInput,
898
- () => StartApplicationRefreshOutput,
911
+ () => StartApplicationRefreshInput$,
912
+ () => StartApplicationRefreshOutput$,
899
913
  ];
900
- var StartConfigurationChecks = [
914
+ var StartConfigurationChecks$ = [
901
915
  9,
902
916
  n0,
903
917
  _SCC,
904
918
  { [_h]: ["POST", "/start-configuration-checks", 200] },
905
- () => StartConfigurationChecksInput,
906
- () => StartConfigurationChecksOutput,
919
+ () => StartConfigurationChecksInput$,
920
+ () => StartConfigurationChecksOutput$,
907
921
  ];
908
- var StopApplication = [
922
+ var StopApplication$ = [
909
923
  9,
910
924
  n0,
911
925
  _SAt,
912
926
  { [_h]: ["POST", "/stop-application", 200] },
913
- () => StopApplicationInput,
914
- () => StopApplicationOutput,
927
+ () => StopApplicationInput$,
928
+ () => StopApplicationOutput$,
915
929
  ];
916
- var TagResource = [
930
+ var TagResource$ = [
917
931
  9,
918
932
  n0,
919
933
  _TR,
920
934
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
921
- () => TagResourceRequest,
922
- () => TagResourceResponse,
935
+ () => TagResourceRequest$,
936
+ () => TagResourceResponse$,
923
937
  ];
924
- var UntagResource = [
938
+ var UntagResource$ = [
925
939
  9,
926
940
  n0,
927
941
  _UR,
928
942
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
929
- () => UntagResourceRequest,
930
- () => UntagResourceResponse,
943
+ () => UntagResourceRequest$,
944
+ () => UntagResourceResponse$,
931
945
  ];
932
- var UpdateApplicationSettings = [
946
+ var UpdateApplicationSettings$ = [
933
947
  9,
934
948
  n0,
935
949
  _UAS,
936
950
  { [_h]: ["POST", "/update-application-settings", 200] },
937
- () => UpdateApplicationSettingsInput,
938
- () => UpdateApplicationSettingsOutput,
951
+ () => UpdateApplicationSettingsInput$,
952
+ () => UpdateApplicationSettingsOutput$,
939
953
  ];
940
954
 
941
955
  class DeleteResourcePermissionCommand extends smithyClient.Command
@@ -946,7 +960,7 @@ class DeleteResourcePermissionCommand extends smithyClient.Command
946
960
  })
947
961
  .s("SsmSap", "DeleteResourcePermission", {})
948
962
  .n("SsmSapClient", "DeleteResourcePermissionCommand")
949
- .sc(DeleteResourcePermission)
963
+ .sc(DeleteResourcePermission$)
950
964
  .build() {
951
965
  }
952
966
 
@@ -958,7 +972,7 @@ class DeregisterApplicationCommand extends smithyClient.Command
958
972
  })
959
973
  .s("SsmSap", "DeregisterApplication", {})
960
974
  .n("SsmSapClient", "DeregisterApplicationCommand")
961
- .sc(DeregisterApplication)
975
+ .sc(DeregisterApplication$)
962
976
  .build() {
963
977
  }
964
978
 
@@ -970,7 +984,7 @@ class GetApplicationCommand extends smithyClient.Command
970
984
  })
971
985
  .s("SsmSap", "GetApplication", {})
972
986
  .n("SsmSapClient", "GetApplicationCommand")
973
- .sc(GetApplication)
987
+ .sc(GetApplication$)
974
988
  .build() {
975
989
  }
976
990
 
@@ -982,7 +996,7 @@ class GetComponentCommand extends smithyClient.Command
982
996
  })
983
997
  .s("SsmSap", "GetComponent", {})
984
998
  .n("SsmSapClient", "GetComponentCommand")
985
- .sc(GetComponent)
999
+ .sc(GetComponent$)
986
1000
  .build() {
987
1001
  }
988
1002
 
@@ -994,7 +1008,7 @@ class GetConfigurationCheckOperationCommand extends smithyClient.Command
994
1008
  })
995
1009
  .s("SsmSap", "GetConfigurationCheckOperation", {})
996
1010
  .n("SsmSapClient", "GetConfigurationCheckOperationCommand")
997
- .sc(GetConfigurationCheckOperation)
1011
+ .sc(GetConfigurationCheckOperation$)
998
1012
  .build() {
999
1013
  }
1000
1014
 
@@ -1006,7 +1020,7 @@ class GetDatabaseCommand extends smithyClient.Command
1006
1020
  })
1007
1021
  .s("SsmSap", "GetDatabase", {})
1008
1022
  .n("SsmSapClient", "GetDatabaseCommand")
1009
- .sc(GetDatabase)
1023
+ .sc(GetDatabase$)
1010
1024
  .build() {
1011
1025
  }
1012
1026
 
@@ -1018,7 +1032,7 @@ class GetOperationCommand extends smithyClient.Command
1018
1032
  })
1019
1033
  .s("SsmSap", "GetOperation", {})
1020
1034
  .n("SsmSapClient", "GetOperationCommand")
1021
- .sc(GetOperation)
1035
+ .sc(GetOperation$)
1022
1036
  .build() {
1023
1037
  }
1024
1038
 
@@ -1030,7 +1044,7 @@ class GetResourcePermissionCommand extends smithyClient.Command
1030
1044
  })
1031
1045
  .s("SsmSap", "GetResourcePermission", {})
1032
1046
  .n("SsmSapClient", "GetResourcePermissionCommand")
1033
- .sc(GetResourcePermission)
1047
+ .sc(GetResourcePermission$)
1034
1048
  .build() {
1035
1049
  }
1036
1050
 
@@ -1042,7 +1056,7 @@ class ListApplicationsCommand extends smithyClient.Command
1042
1056
  })
1043
1057
  .s("SsmSap", "ListApplications", {})
1044
1058
  .n("SsmSapClient", "ListApplicationsCommand")
1045
- .sc(ListApplications)
1059
+ .sc(ListApplications$)
1046
1060
  .build() {
1047
1061
  }
1048
1062
 
@@ -1054,7 +1068,7 @@ class ListComponentsCommand extends smithyClient.Command
1054
1068
  })
1055
1069
  .s("SsmSap", "ListComponents", {})
1056
1070
  .n("SsmSapClient", "ListComponentsCommand")
1057
- .sc(ListComponents)
1071
+ .sc(ListComponents$)
1058
1072
  .build() {
1059
1073
  }
1060
1074
 
@@ -1066,7 +1080,7 @@ class ListConfigurationCheckDefinitionsCommand extends smithyClient.Command
1066
1080
  })
1067
1081
  .s("SsmSap", "ListConfigurationCheckDefinitions", {})
1068
1082
  .n("SsmSapClient", "ListConfigurationCheckDefinitionsCommand")
1069
- .sc(ListConfigurationCheckDefinitions)
1083
+ .sc(ListConfigurationCheckDefinitions$)
1070
1084
  .build() {
1071
1085
  }
1072
1086
 
@@ -1078,7 +1092,7 @@ class ListConfigurationCheckOperationsCommand extends smithyClient.Command
1078
1092
  })
1079
1093
  .s("SsmSap", "ListConfigurationCheckOperations", {})
1080
1094
  .n("SsmSapClient", "ListConfigurationCheckOperationsCommand")
1081
- .sc(ListConfigurationCheckOperations)
1095
+ .sc(ListConfigurationCheckOperations$)
1082
1096
  .build() {
1083
1097
  }
1084
1098
 
@@ -1090,7 +1104,7 @@ class ListDatabasesCommand extends smithyClient.Command
1090
1104
  })
1091
1105
  .s("SsmSap", "ListDatabases", {})
1092
1106
  .n("SsmSapClient", "ListDatabasesCommand")
1093
- .sc(ListDatabases)
1107
+ .sc(ListDatabases$)
1094
1108
  .build() {
1095
1109
  }
1096
1110
 
@@ -1102,7 +1116,7 @@ class ListOperationEventsCommand extends smithyClient.Command
1102
1116
  })
1103
1117
  .s("SsmSap", "ListOperationEvents", {})
1104
1118
  .n("SsmSapClient", "ListOperationEventsCommand")
1105
- .sc(ListOperationEvents)
1119
+ .sc(ListOperationEvents$)
1106
1120
  .build() {
1107
1121
  }
1108
1122
 
@@ -1114,7 +1128,7 @@ class ListOperationsCommand extends smithyClient.Command
1114
1128
  })
1115
1129
  .s("SsmSap", "ListOperations", {})
1116
1130
  .n("SsmSapClient", "ListOperationsCommand")
1117
- .sc(ListOperations)
1131
+ .sc(ListOperations$)
1118
1132
  .build() {
1119
1133
  }
1120
1134
 
@@ -1126,7 +1140,7 @@ class ListSubCheckResultsCommand extends smithyClient.Command
1126
1140
  })
1127
1141
  .s("SsmSap", "ListSubCheckResults", {})
1128
1142
  .n("SsmSapClient", "ListSubCheckResultsCommand")
1129
- .sc(ListSubCheckResults)
1143
+ .sc(ListSubCheckResults$)
1130
1144
  .build() {
1131
1145
  }
1132
1146
 
@@ -1138,7 +1152,7 @@ class ListSubCheckRuleResultsCommand extends smithyClient.Command
1138
1152
  })
1139
1153
  .s("SsmSap", "ListSubCheckRuleResults", {})
1140
1154
  .n("SsmSapClient", "ListSubCheckRuleResultsCommand")
1141
- .sc(ListSubCheckRuleResults)
1155
+ .sc(ListSubCheckRuleResults$)
1142
1156
  .build() {
1143
1157
  }
1144
1158
 
@@ -1150,7 +1164,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1150
1164
  })
1151
1165
  .s("SsmSap", "ListTagsForResource", {})
1152
1166
  .n("SsmSapClient", "ListTagsForResourceCommand")
1153
- .sc(ListTagsForResource)
1167
+ .sc(ListTagsForResource$)
1154
1168
  .build() {
1155
1169
  }
1156
1170
 
@@ -1162,7 +1176,7 @@ class PutResourcePermissionCommand extends smithyClient.Command
1162
1176
  })
1163
1177
  .s("SsmSap", "PutResourcePermission", {})
1164
1178
  .n("SsmSapClient", "PutResourcePermissionCommand")
1165
- .sc(PutResourcePermission)
1179
+ .sc(PutResourcePermission$)
1166
1180
  .build() {
1167
1181
  }
1168
1182
 
@@ -1174,7 +1188,7 @@ class RegisterApplicationCommand extends smithyClient.Command
1174
1188
  })
1175
1189
  .s("SsmSap", "RegisterApplication", {})
1176
1190
  .n("SsmSapClient", "RegisterApplicationCommand")
1177
- .sc(RegisterApplication)
1191
+ .sc(RegisterApplication$)
1178
1192
  .build() {
1179
1193
  }
1180
1194
 
@@ -1186,7 +1200,7 @@ class StartApplicationCommand extends smithyClient.Command
1186
1200
  })
1187
1201
  .s("SsmSap", "StartApplication", {})
1188
1202
  .n("SsmSapClient", "StartApplicationCommand")
1189
- .sc(StartApplication)
1203
+ .sc(StartApplication$)
1190
1204
  .build() {
1191
1205
  }
1192
1206
 
@@ -1198,7 +1212,7 @@ class StartApplicationRefreshCommand extends smithyClient.Command
1198
1212
  })
1199
1213
  .s("SsmSap", "StartApplicationRefresh", {})
1200
1214
  .n("SsmSapClient", "StartApplicationRefreshCommand")
1201
- .sc(StartApplicationRefresh)
1215
+ .sc(StartApplicationRefresh$)
1202
1216
  .build() {
1203
1217
  }
1204
1218
 
@@ -1210,7 +1224,7 @@ class StartConfigurationChecksCommand extends smithyClient.Command
1210
1224
  })
1211
1225
  .s("SsmSap", "StartConfigurationChecks", {})
1212
1226
  .n("SsmSapClient", "StartConfigurationChecksCommand")
1213
- .sc(StartConfigurationChecks)
1227
+ .sc(StartConfigurationChecks$)
1214
1228
  .build() {
1215
1229
  }
1216
1230
 
@@ -1222,7 +1236,7 @@ class StopApplicationCommand extends smithyClient.Command
1222
1236
  })
1223
1237
  .s("SsmSap", "StopApplication", {})
1224
1238
  .n("SsmSapClient", "StopApplicationCommand")
1225
- .sc(StopApplication)
1239
+ .sc(StopApplication$)
1226
1240
  .build() {
1227
1241
  }
1228
1242
 
@@ -1234,7 +1248,7 @@ class TagResourceCommand extends smithyClient.Command
1234
1248
  })
1235
1249
  .s("SsmSap", "TagResource", {})
1236
1250
  .n("SsmSapClient", "TagResourceCommand")
1237
- .sc(TagResource)
1251
+ .sc(TagResource$)
1238
1252
  .build() {
1239
1253
  }
1240
1254
 
@@ -1246,7 +1260,7 @@ class UntagResourceCommand extends smithyClient.Command
1246
1260
  })
1247
1261
  .s("SsmSap", "UntagResource", {})
1248
1262
  .n("SsmSapClient", "UntagResourceCommand")
1249
- .sc(UntagResource)
1263
+ .sc(UntagResource$)
1250
1264
  .build() {
1251
1265
  }
1252
1266
 
@@ -1258,7 +1272,7 @@ class UpdateApplicationSettingsCommand extends smithyClient.Command
1258
1272
  })
1259
1273
  .s("SsmSap", "UpdateApplicationSettings", {})
1260
1274
  .n("SsmSapClient", "UpdateApplicationSettingsCommand")
1261
- .sc(UpdateApplicationSettings)
1275
+ .sc(UpdateApplicationSettings$)
1262
1276
  .build() {
1263
1277
  }
1264
1278
 
@@ -1455,63 +1469,173 @@ Object.defineProperty(exports, "__Client", {
1455
1469
  get: function () { return smithyClient.Client; }
1456
1470
  });
1457
1471
  exports.AllocationType = AllocationType;
1472
+ exports.Application$ = Application$;
1473
+ exports.ApplicationCredential$ = ApplicationCredential$;
1458
1474
  exports.ApplicationDiscoveryStatus = ApplicationDiscoveryStatus;
1459
1475
  exports.ApplicationStatus = ApplicationStatus;
1476
+ exports.ApplicationSummary$ = ApplicationSummary$;
1460
1477
  exports.ApplicationType = ApplicationType;
1478
+ exports.AssociatedHost$ = AssociatedHost$;
1479
+ exports.BackintConfig$ = BackintConfig$;
1461
1480
  exports.BackintMode = BackintMode;
1462
1481
  exports.ClusterStatus = ClusterStatus;
1482
+ exports.Component$ = Component$;
1483
+ exports.ComponentInfo$ = ComponentInfo$;
1463
1484
  exports.ComponentStatus = ComponentStatus;
1485
+ exports.ComponentSummary$ = ComponentSummary$;
1464
1486
  exports.ComponentType = ComponentType;
1487
+ exports.ConfigurationCheckDefinition$ = ConfigurationCheckDefinition$;
1488
+ exports.ConfigurationCheckOperation$ = ConfigurationCheckOperation$;
1465
1489
  exports.ConfigurationCheckOperationListingMode = ConfigurationCheckOperationListingMode;
1466
1490
  exports.ConfigurationCheckType = ConfigurationCheckType;
1467
- exports.ConflictException = ConflictException$1;
1491
+ exports.ConflictException = ConflictException;
1492
+ exports.ConflictException$ = ConflictException$;
1468
1493
  exports.ConnectedEntityType = ConnectedEntityType;
1469
1494
  exports.CredentialType = CredentialType;
1495
+ exports.Database$ = Database$;
1496
+ exports.DatabaseConnection$ = DatabaseConnection$;
1470
1497
  exports.DatabaseConnectionMethod = DatabaseConnectionMethod;
1471
1498
  exports.DatabaseStatus = DatabaseStatus;
1499
+ exports.DatabaseSummary$ = DatabaseSummary$;
1472
1500
  exports.DatabaseType = DatabaseType;
1501
+ exports.DeleteResourcePermission$ = DeleteResourcePermission$;
1473
1502
  exports.DeleteResourcePermissionCommand = DeleteResourcePermissionCommand;
1503
+ exports.DeleteResourcePermissionInput$ = DeleteResourcePermissionInput$;
1504
+ exports.DeleteResourcePermissionOutput$ = DeleteResourcePermissionOutput$;
1505
+ exports.DeregisterApplication$ = DeregisterApplication$;
1474
1506
  exports.DeregisterApplicationCommand = DeregisterApplicationCommand;
1507
+ exports.DeregisterApplicationInput$ = DeregisterApplicationInput$;
1508
+ exports.DeregisterApplicationOutput$ = DeregisterApplicationOutput$;
1509
+ exports.Filter$ = Filter$;
1475
1510
  exports.FilterOperator = FilterOperator;
1511
+ exports.GetApplication$ = GetApplication$;
1476
1512
  exports.GetApplicationCommand = GetApplicationCommand;
1513
+ exports.GetApplicationInput$ = GetApplicationInput$;
1514
+ exports.GetApplicationOutput$ = GetApplicationOutput$;
1515
+ exports.GetComponent$ = GetComponent$;
1477
1516
  exports.GetComponentCommand = GetComponentCommand;
1517
+ exports.GetComponentInput$ = GetComponentInput$;
1518
+ exports.GetComponentOutput$ = GetComponentOutput$;
1519
+ exports.GetConfigurationCheckOperation$ = GetConfigurationCheckOperation$;
1478
1520
  exports.GetConfigurationCheckOperationCommand = GetConfigurationCheckOperationCommand;
1521
+ exports.GetConfigurationCheckOperationInput$ = GetConfigurationCheckOperationInput$;
1522
+ exports.GetConfigurationCheckOperationOutput$ = GetConfigurationCheckOperationOutput$;
1523
+ exports.GetDatabase$ = GetDatabase$;
1479
1524
  exports.GetDatabaseCommand = GetDatabaseCommand;
1525
+ exports.GetDatabaseInput$ = GetDatabaseInput$;
1526
+ exports.GetDatabaseOutput$ = GetDatabaseOutput$;
1527
+ exports.GetOperation$ = GetOperation$;
1480
1528
  exports.GetOperationCommand = GetOperationCommand;
1529
+ exports.GetOperationInput$ = GetOperationInput$;
1530
+ exports.GetOperationOutput$ = GetOperationOutput$;
1531
+ exports.GetResourcePermission$ = GetResourcePermission$;
1481
1532
  exports.GetResourcePermissionCommand = GetResourcePermissionCommand;
1533
+ exports.GetResourcePermissionInput$ = GetResourcePermissionInput$;
1534
+ exports.GetResourcePermissionOutput$ = GetResourcePermissionOutput$;
1535
+ exports.Host$ = Host$;
1482
1536
  exports.HostRole = HostRole;
1483
- exports.InternalServerException = InternalServerException$1;
1537
+ exports.InternalServerException = InternalServerException;
1538
+ exports.InternalServerException$ = InternalServerException$;
1539
+ exports.IpAddressMember$ = IpAddressMember$;
1540
+ exports.ListApplications$ = ListApplications$;
1484
1541
  exports.ListApplicationsCommand = ListApplicationsCommand;
1542
+ exports.ListApplicationsInput$ = ListApplicationsInput$;
1543
+ exports.ListApplicationsOutput$ = ListApplicationsOutput$;
1544
+ exports.ListComponents$ = ListComponents$;
1485
1545
  exports.ListComponentsCommand = ListComponentsCommand;
1546
+ exports.ListComponentsInput$ = ListComponentsInput$;
1547
+ exports.ListComponentsOutput$ = ListComponentsOutput$;
1548
+ exports.ListConfigurationCheckDefinitions$ = ListConfigurationCheckDefinitions$;
1486
1549
  exports.ListConfigurationCheckDefinitionsCommand = ListConfigurationCheckDefinitionsCommand;
1550
+ exports.ListConfigurationCheckDefinitionsInput$ = ListConfigurationCheckDefinitionsInput$;
1551
+ exports.ListConfigurationCheckDefinitionsOutput$ = ListConfigurationCheckDefinitionsOutput$;
1552
+ exports.ListConfigurationCheckOperations$ = ListConfigurationCheckOperations$;
1487
1553
  exports.ListConfigurationCheckOperationsCommand = ListConfigurationCheckOperationsCommand;
1554
+ exports.ListConfigurationCheckOperationsInput$ = ListConfigurationCheckOperationsInput$;
1555
+ exports.ListConfigurationCheckOperationsOutput$ = ListConfigurationCheckOperationsOutput$;
1556
+ exports.ListDatabases$ = ListDatabases$;
1488
1557
  exports.ListDatabasesCommand = ListDatabasesCommand;
1558
+ exports.ListDatabasesInput$ = ListDatabasesInput$;
1559
+ exports.ListDatabasesOutput$ = ListDatabasesOutput$;
1560
+ exports.ListOperationEvents$ = ListOperationEvents$;
1489
1561
  exports.ListOperationEventsCommand = ListOperationEventsCommand;
1562
+ exports.ListOperationEventsInput$ = ListOperationEventsInput$;
1563
+ exports.ListOperationEventsOutput$ = ListOperationEventsOutput$;
1564
+ exports.ListOperations$ = ListOperations$;
1490
1565
  exports.ListOperationsCommand = ListOperationsCommand;
1566
+ exports.ListOperationsInput$ = ListOperationsInput$;
1567
+ exports.ListOperationsOutput$ = ListOperationsOutput$;
1568
+ exports.ListSubCheckResults$ = ListSubCheckResults$;
1491
1569
  exports.ListSubCheckResultsCommand = ListSubCheckResultsCommand;
1570
+ exports.ListSubCheckResultsInput$ = ListSubCheckResultsInput$;
1571
+ exports.ListSubCheckResultsOutput$ = ListSubCheckResultsOutput$;
1572
+ exports.ListSubCheckRuleResults$ = ListSubCheckRuleResults$;
1492
1573
  exports.ListSubCheckRuleResultsCommand = ListSubCheckRuleResultsCommand;
1574
+ exports.ListSubCheckRuleResultsInput$ = ListSubCheckRuleResultsInput$;
1575
+ exports.ListSubCheckRuleResultsOutput$ = ListSubCheckRuleResultsOutput$;
1576
+ exports.ListTagsForResource$ = ListTagsForResource$;
1493
1577
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1578
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1579
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1580
+ exports.Operation$ = Operation$;
1581
+ exports.OperationEvent$ = OperationEvent$;
1494
1582
  exports.OperationEventStatus = OperationEventStatus;
1495
1583
  exports.OperationMode = OperationMode;
1496
1584
  exports.OperationStatus = OperationStatus;
1497
1585
  exports.PermissionActionType = PermissionActionType;
1586
+ exports.PutResourcePermission$ = PutResourcePermission$;
1498
1587
  exports.PutResourcePermissionCommand = PutResourcePermissionCommand;
1588
+ exports.PutResourcePermissionInput$ = PutResourcePermissionInput$;
1589
+ exports.PutResourcePermissionOutput$ = PutResourcePermissionOutput$;
1590
+ exports.RegisterApplication$ = RegisterApplication$;
1499
1591
  exports.RegisterApplicationCommand = RegisterApplicationCommand;
1592
+ exports.RegisterApplicationInput$ = RegisterApplicationInput$;
1593
+ exports.RegisterApplicationOutput$ = RegisterApplicationOutput$;
1500
1594
  exports.ReplicationMode = ReplicationMode;
1501
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1595
+ exports.Resilience$ = Resilience$;
1596
+ exports.Resource$ = Resource$;
1597
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1598
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1599
+ exports.RuleResult$ = RuleResult$;
1502
1600
  exports.RuleResultStatus = RuleResultStatus;
1601
+ exports.RuleStatusCounts$ = RuleStatusCounts$;
1503
1602
  exports.SsmSap = SsmSap;
1504
1603
  exports.SsmSapClient = SsmSapClient;
1505
- exports.SsmSapServiceException = SsmSapServiceException$1;
1604
+ exports.SsmSapServiceException = SsmSapServiceException;
1605
+ exports.SsmSapServiceException$ = SsmSapServiceException$;
1606
+ exports.StartApplication$ = StartApplication$;
1506
1607
  exports.StartApplicationCommand = StartApplicationCommand;
1608
+ exports.StartApplicationInput$ = StartApplicationInput$;
1609
+ exports.StartApplicationOutput$ = StartApplicationOutput$;
1610
+ exports.StartApplicationRefresh$ = StartApplicationRefresh$;
1507
1611
  exports.StartApplicationRefreshCommand = StartApplicationRefreshCommand;
1612
+ exports.StartApplicationRefreshInput$ = StartApplicationRefreshInput$;
1613
+ exports.StartApplicationRefreshOutput$ = StartApplicationRefreshOutput$;
1614
+ exports.StartConfigurationChecks$ = StartConfigurationChecks$;
1508
1615
  exports.StartConfigurationChecksCommand = StartConfigurationChecksCommand;
1616
+ exports.StartConfigurationChecksInput$ = StartConfigurationChecksInput$;
1617
+ exports.StartConfigurationChecksOutput$ = StartConfigurationChecksOutput$;
1618
+ exports.StopApplication$ = StopApplication$;
1509
1619
  exports.StopApplicationCommand = StopApplicationCommand;
1620
+ exports.StopApplicationInput$ = StopApplicationInput$;
1621
+ exports.StopApplicationOutput$ = StopApplicationOutput$;
1622
+ exports.SubCheckResult$ = SubCheckResult$;
1623
+ exports.TagResource$ = TagResource$;
1510
1624
  exports.TagResourceCommand = TagResourceCommand;
1511
- exports.UnauthorizedException = UnauthorizedException$1;
1625
+ exports.TagResourceRequest$ = TagResourceRequest$;
1626
+ exports.TagResourceResponse$ = TagResourceResponse$;
1627
+ exports.UnauthorizedException = UnauthorizedException;
1628
+ exports.UnauthorizedException$ = UnauthorizedException$;
1629
+ exports.UntagResource$ = UntagResource$;
1512
1630
  exports.UntagResourceCommand = UntagResourceCommand;
1631
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1632
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1633
+ exports.UpdateApplicationSettings$ = UpdateApplicationSettings$;
1513
1634
  exports.UpdateApplicationSettingsCommand = UpdateApplicationSettingsCommand;
1514
- exports.ValidationException = ValidationException$1;
1635
+ exports.UpdateApplicationSettingsInput$ = UpdateApplicationSettingsInput$;
1636
+ exports.UpdateApplicationSettingsOutput$ = UpdateApplicationSettingsOutput$;
1637
+ exports.ValidationException = ValidationException;
1638
+ exports.ValidationException$ = ValidationException$;
1515
1639
  exports.paginateListApplications = paginateListApplications;
1516
1640
  exports.paginateListComponents = paginateListComponents;
1517
1641
  exports.paginateListConfigurationCheckDefinitions = paginateListConfigurationCheckDefinitions;