@aws-sdk/client-appconfig 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 (65) hide show
  1. package/dist-cjs/index.js +437 -300
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateApplicationCommand.js +2 -2
  4. package/dist-es/commands/CreateConfigurationProfileCommand.js +2 -2
  5. package/dist-es/commands/CreateDeploymentStrategyCommand.js +2 -2
  6. package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
  7. package/dist-es/commands/CreateExtensionAssociationCommand.js +2 -2
  8. package/dist-es/commands/CreateExtensionCommand.js +2 -2
  9. package/dist-es/commands/CreateHostedConfigurationVersionCommand.js +2 -2
  10. package/dist-es/commands/DeleteApplicationCommand.js +2 -2
  11. package/dist-es/commands/DeleteConfigurationProfileCommand.js +2 -2
  12. package/dist-es/commands/DeleteDeploymentStrategyCommand.js +2 -2
  13. package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
  14. package/dist-es/commands/DeleteExtensionAssociationCommand.js +2 -2
  15. package/dist-es/commands/DeleteExtensionCommand.js +2 -2
  16. package/dist-es/commands/DeleteHostedConfigurationVersionCommand.js +2 -2
  17. package/dist-es/commands/GetAccountSettingsCommand.js +2 -2
  18. package/dist-es/commands/GetApplicationCommand.js +2 -2
  19. package/dist-es/commands/GetConfigurationCommand.js +2 -2
  20. package/dist-es/commands/GetConfigurationProfileCommand.js +2 -2
  21. package/dist-es/commands/GetDeploymentCommand.js +2 -2
  22. package/dist-es/commands/GetDeploymentStrategyCommand.js +2 -2
  23. package/dist-es/commands/GetEnvironmentCommand.js +2 -2
  24. package/dist-es/commands/GetExtensionAssociationCommand.js +2 -2
  25. package/dist-es/commands/GetExtensionCommand.js +2 -2
  26. package/dist-es/commands/GetHostedConfigurationVersionCommand.js +2 -2
  27. package/dist-es/commands/ListApplicationsCommand.js +2 -2
  28. package/dist-es/commands/ListConfigurationProfilesCommand.js +2 -2
  29. package/dist-es/commands/ListDeploymentStrategiesCommand.js +2 -2
  30. package/dist-es/commands/ListDeploymentsCommand.js +2 -2
  31. package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
  32. package/dist-es/commands/ListExtensionAssociationsCommand.js +2 -2
  33. package/dist-es/commands/ListExtensionsCommand.js +2 -2
  34. package/dist-es/commands/ListHostedConfigurationVersionsCommand.js +2 -2
  35. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  36. package/dist-es/commands/StartDeploymentCommand.js +2 -2
  37. package/dist-es/commands/StopDeploymentCommand.js +2 -2
  38. package/dist-es/commands/TagResourceCommand.js +2 -2
  39. package/dist-es/commands/UntagResourceCommand.js +2 -2
  40. package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -2
  41. package/dist-es/commands/UpdateApplicationCommand.js +2 -2
  42. package/dist-es/commands/UpdateConfigurationProfileCommand.js +2 -2
  43. package/dist-es/commands/UpdateDeploymentStrategyCommand.js +2 -2
  44. package/dist-es/commands/UpdateEnvironmentCommand.js +2 -2
  45. package/dist-es/commands/UpdateExtensionAssociationCommand.js +2 -2
  46. package/dist-es/commands/UpdateExtensionCommand.js +2 -2
  47. package/dist-es/commands/ValidateConfigurationCommand.js +2 -2
  48. package/dist-es/index.js +1 -0
  49. package/dist-es/runtimeConfig.shared.js +6 -1
  50. package/dist-es/schemas/schemas_0.js +254 -247
  51. package/dist-types/AppConfigClient.d.ts +1 -10
  52. package/dist-types/index.d.ts +1 -0
  53. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  54. package/dist-types/runtimeConfig.d.ts +6 -2
  55. package/dist-types/runtimeConfig.native.d.ts +6 -2
  56. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  57. package/dist-types/schemas/schemas_0.d.ts +131 -156
  58. package/dist-types/ts3.4/AppConfigClient.d.ts +0 -4
  59. package/dist-types/ts3.4/index.d.ts +1 -0
  60. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  61. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  62. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  63. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  64. package/dist-types/ts3.4/schemas/schemas_0.d.ts +130 -158
  65. package/package.json +36 -36
package/dist-cjs/index.js CHANGED
@@ -111,14 +111,14 @@ class AppConfigClient extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- let AppConfigServiceException$1 = class AppConfigServiceException extends smithyClient.ServiceException {
114
+ class AppConfigServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, AppConfigServiceException.prototype);
118
118
  }
119
- };
119
+ }
120
120
 
121
- let BadRequestException$1 = class BadRequestException extends AppConfigServiceException$1 {
121
+ class BadRequestException extends AppConfigServiceException {
122
122
  name = "BadRequestException";
123
123
  $fault = "client";
124
124
  Message;
@@ -135,8 +135,8 @@ let BadRequestException$1 = class BadRequestException extends AppConfigServiceEx
135
135
  this.Reason = opts.Reason;
136
136
  this.Details = opts.Details;
137
137
  }
138
- };
139
- let InternalServerException$1 = class InternalServerException extends AppConfigServiceException$1 {
138
+ }
139
+ class InternalServerException extends AppConfigServiceException {
140
140
  name = "InternalServerException";
141
141
  $fault = "server";
142
142
  Message;
@@ -149,8 +149,8 @@ let InternalServerException$1 = class InternalServerException extends AppConfigS
149
149
  Object.setPrototypeOf(this, InternalServerException.prototype);
150
150
  this.Message = opts.Message;
151
151
  }
152
- };
153
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends AppConfigServiceException$1 {
152
+ }
153
+ class ServiceQuotaExceededException extends AppConfigServiceException {
154
154
  name = "ServiceQuotaExceededException";
155
155
  $fault = "client";
156
156
  Message;
@@ -163,8 +163,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
163
163
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
164
164
  this.Message = opts.Message;
165
165
  }
166
- };
167
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppConfigServiceException$1 {
166
+ }
167
+ class ResourceNotFoundException extends AppConfigServiceException {
168
168
  name = "ResourceNotFoundException";
169
169
  $fault = "client";
170
170
  Message;
@@ -179,8 +179,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppCon
179
179
  this.Message = opts.Message;
180
180
  this.ResourceName = opts.ResourceName;
181
181
  }
182
- };
183
- let ConflictException$1 = class ConflictException extends AppConfigServiceException$1 {
182
+ }
183
+ class ConflictException extends AppConfigServiceException {
184
184
  name = "ConflictException";
185
185
  $fault = "client";
186
186
  Message;
@@ -193,8 +193,8 @@ let ConflictException$1 = class ConflictException extends AppConfigServiceExcept
193
193
  Object.setPrototypeOf(this, ConflictException.prototype);
194
194
  this.Message = opts.Message;
195
195
  }
196
- };
197
- let PayloadTooLargeException$1 = class PayloadTooLargeException extends AppConfigServiceException$1 {
196
+ }
197
+ class PayloadTooLargeException extends AppConfigServiceException {
198
198
  name = "PayloadTooLargeException";
199
199
  $fault = "client";
200
200
  Message;
@@ -213,7 +213,7 @@ let PayloadTooLargeException$1 = class PayloadTooLargeException extends AppConfi
213
213
  this.Limit = opts.Limit;
214
214
  this.Size = opts.Size;
215
215
  }
216
- };
216
+ }
217
217
 
218
218
  const _A = "Action";
219
219
  const _AA = "AlarmArn";
@@ -478,9 +478,9 @@ const _xadpc = "x-amzn-deletion-protection-check";
478
478
  const n0 = "com.amazonaws.appconfig";
479
479
  var _Blob = [0, n0, _B, 8, 21];
480
480
  var StringWithLengthBetween0And32768 = [0, n0, _SWLBA, 8, 0];
481
- var AccountSettings = [3, n0, _AS, 0, [_DP], [() => DeletionProtectionSettings]];
482
- var Action = [3, n0, _A, 0, [_N, _D, _U, _RA], [0, 0, 0, 0]];
483
- var ActionInvocation = [
481
+ var AccountSettings$ = [3, n0, _AS, 0, [_DP], [() => DeletionProtectionSettings$]];
482
+ var Action$ = [3, n0, _A, 0, [_N, _D, _U, _RA], [0, 0, 0, 0]];
483
+ var ActionInvocation$ = [
484
484
  3,
485
485
  n0,
486
486
  _AI,
@@ -488,19 +488,19 @@ var ActionInvocation = [
488
488
  [_EI, _AN, _U, _RA, _EM, _EC, _II],
489
489
  [0, 0, 0, 0, 0, 0, 0],
490
490
  ];
491
- var Application = [3, n0, _Ap, 0, [_I, _N, _D], [0, 0, 0]];
492
- var Applications = [3, n0, _App, 0, [_It, _NT], [() => ApplicationList, 0]];
493
- var AppliedExtension = [3, n0, _AE, 0, [_EIx, _EAI, _VN, _P], [0, 0, 1, 128 | 0]];
494
- var BadRequestException = [
491
+ var Application$ = [3, n0, _Ap, 0, [_I, _N, _D], [0, 0, 0]];
492
+ var Applications$ = [3, n0, _App, 0, [_It, _NT], [() => ApplicationList, 0]];
493
+ var AppliedExtension$ = [3, n0, _AE, 0, [_EIx, _EAI, _VN, _P], [0, 0, 1, 128 | 0]];
494
+ var BadRequestException$ = [
495
495
  -3,
496
496
  n0,
497
497
  _BRE,
498
498
  { [_e]: _c, [_hE]: 400 },
499
499
  [_M, _R, _De],
500
- [0, 0, () => BadRequestDetails],
500
+ [0, 0, () => BadRequestDetails$],
501
501
  ];
502
- schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
503
- var Configuration = [
502
+ schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
503
+ var Configuration$ = [
504
504
  3,
505
505
  n0,
506
506
  _C,
@@ -512,7 +512,7 @@ var Configuration = [
512
512
  [0, { [_hH]: _CT_ }],
513
513
  ],
514
514
  ];
515
- var ConfigurationProfile = [
515
+ var ConfigurationProfile$ = [
516
516
  3,
517
517
  n0,
518
518
  _CP,
@@ -520,7 +520,7 @@ var ConfigurationProfile = [
520
520
  [_AIp, _I, _N, _D, _LU, _RRA, _V, _T, _KKA, _KKI],
521
521
  [0, 0, 0, 0, 0, 0, [() => ValidatorList, 0], 0, 0, 0],
522
522
  ];
523
- var ConfigurationProfiles = [
523
+ var ConfigurationProfiles$ = [
524
524
  3,
525
525
  n0,
526
526
  _CPo,
@@ -528,7 +528,7 @@ var ConfigurationProfiles = [
528
528
  [_It, _NT],
529
529
  [() => ConfigurationProfileSummaryList, 0],
530
530
  ];
531
- var ConfigurationProfileSummary = [
531
+ var ConfigurationProfileSummary$ = [
532
532
  3,
533
533
  n0,
534
534
  _CPS,
@@ -536,10 +536,10 @@ var ConfigurationProfileSummary = [
536
536
  [_AIp, _I, _N, _LU, _VT, _T],
537
537
  [0, 0, 0, 0, 64 | 0, 0],
538
538
  ];
539
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
540
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
541
- var CreateApplicationRequest = [3, n0, _CAR, 0, [_N, _D, _Ta], [0, 0, 128 | 0]];
542
- var CreateConfigurationProfileRequest = [
539
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
540
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
541
+ var CreateApplicationRequest$ = [3, n0, _CAR, 0, [_N, _D, _Ta], [0, 0, 128 | 0]];
542
+ var CreateConfigurationProfileRequest$ = [
543
543
  3,
544
544
  n0,
545
545
  _CCPR,
@@ -547,7 +547,7 @@ var CreateConfigurationProfileRequest = [
547
547
  [_AIp, _N, _D, _LU, _RRA, _V, _Ta, _T, _KKI],
548
548
  [[0, 1], 0, 0, 0, 0, [() => ValidatorList, 0], 128 | 0, 0, 0],
549
549
  ];
550
- var CreateDeploymentStrategyRequest = [
550
+ var CreateDeploymentStrategyRequest$ = [
551
551
  3,
552
552
  n0,
553
553
  _CDSR,
@@ -555,7 +555,7 @@ var CreateDeploymentStrategyRequest = [
555
555
  [_N, _D, _DDIM, _FBTIM, _GF, _GT, _RT, _Ta],
556
556
  [0, 0, 1, 1, 1, 0, 0, 128 | 0],
557
557
  ];
558
- var CreateEnvironmentRequest = [
558
+ var CreateEnvironmentRequest$ = [
559
559
  3,
560
560
  n0,
561
561
  _CER,
@@ -563,7 +563,7 @@ var CreateEnvironmentRequest = [
563
563
  [_AIp, _N, _D, _Mo, _Ta],
564
564
  [[0, 1], 0, 0, () => MonitorList, 128 | 0],
565
565
  ];
566
- var CreateExtensionAssociationRequest = [
566
+ var CreateExtensionAssociationRequest$ = [
567
567
  3,
568
568
  n0,
569
569
  _CEAR,
@@ -571,7 +571,7 @@ var CreateExtensionAssociationRequest = [
571
571
  [_EI, _EVN, _RI, _P, _Ta],
572
572
  [0, 1, 0, 128 | 0, 128 | 0],
573
573
  ];
574
- var CreateExtensionRequest = [
574
+ var CreateExtensionRequest$ = [
575
575
  3,
576
576
  n0,
577
577
  _CERr,
@@ -579,7 +579,7 @@ var CreateExtensionRequest = [
579
579
  [_N, _D, _Ac, _P, _Ta, _LVN],
580
580
  [0, 0, () => ActionsMap, () => ParameterMap, 128 | 0, [1, { [_hH]: _LVN_ }]],
581
581
  ];
582
- var CreateHostedConfigurationVersionRequest = [
582
+ var CreateHostedConfigurationVersionRequest$ = [
583
583
  3,
584
584
  n0,
585
585
  _CHCVR,
@@ -595,8 +595,8 @@ var CreateHostedConfigurationVersionRequest = [
595
595
  [0, { [_hH]: _VL }],
596
596
  ],
597
597
  ];
598
- var DeleteApplicationRequest = [3, n0, _DAR, 0, [_AIp], [[0, 1]]];
599
- var DeleteConfigurationProfileRequest = [
598
+ var DeleteApplicationRequest$ = [3, n0, _DAR, 0, [_AIp], [[0, 1]]];
599
+ var DeleteConfigurationProfileRequest$ = [
600
600
  3,
601
601
  n0,
602
602
  _DCPR,
@@ -608,8 +608,8 @@ var DeleteConfigurationProfileRequest = [
608
608
  [0, { [_hH]: _xadpc }],
609
609
  ],
610
610
  ];
611
- var DeleteDeploymentStrategyRequest = [3, n0, _DDSR, 0, [_DSI], [[0, 1]]];
612
- var DeleteEnvironmentRequest = [
611
+ var DeleteDeploymentStrategyRequest$ = [3, n0, _DDSR, 0, [_DSI], [[0, 1]]];
612
+ var DeleteEnvironmentRequest$ = [
613
613
  3,
614
614
  n0,
615
615
  _DER,
@@ -621,8 +621,8 @@ var DeleteEnvironmentRequest = [
621
621
  [0, { [_hH]: _xadpc }],
622
622
  ],
623
623
  ];
624
- var DeleteExtensionAssociationRequest = [3, n0, _DEAR, 0, [_EAI], [[0, 1]]];
625
- var DeleteExtensionRequest = [
624
+ var DeleteExtensionAssociationRequest$ = [3, n0, _DEAR, 0, [_EAI], [[0, 1]]];
625
+ var DeleteExtensionRequest$ = [
626
626
  3,
627
627
  n0,
628
628
  _DERe,
@@ -633,7 +633,7 @@ var DeleteExtensionRequest = [
633
633
  [1, { [_hQ]: _v }],
634
634
  ],
635
635
  ];
636
- var DeleteHostedConfigurationVersionRequest = [
636
+ var DeleteHostedConfigurationVersionRequest$ = [
637
637
  3,
638
638
  n0,
639
639
  _DHCVR,
@@ -645,8 +645,8 @@ var DeleteHostedConfigurationVersionRequest = [
645
645
  [1, 1],
646
646
  ],
647
647
  ];
648
- var DeletionProtectionSettings = [3, n0, _DPS, 0, [_E, _PPIM], [2, 1]];
649
- var Deployment = [
648
+ var DeletionProtectionSettings$ = [3, n0, _DPS, 0, [_E, _PPIM], [2, 1]];
649
+ var Deployment$ = [
650
650
  3,
651
651
  n0,
652
652
  _Dep,
@@ -677,7 +677,7 @@ var Deployment = [
677
677
  ],
678
678
  [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, () => DeploymentEvents, 1, 5, 5, () => AppliedExtensions, 0, 0, 0],
679
679
  ];
680
- var DeploymentEvent = [
680
+ var DeploymentEvent$ = [
681
681
  3,
682
682
  n0,
683
683
  _DE,
@@ -685,9 +685,16 @@ var DeploymentEvent = [
685
685
  [_ET, _TB, _D, _AIc, _OA],
686
686
  [0, 0, 0, () => ActionInvocations, 5],
687
687
  ];
688
- var Deployments = [3, n0, _Depl, 0, [_It, _NT], [() => DeploymentList, 0]];
689
- var DeploymentStrategies = [3, n0, _DS, 0, [_It, _NT], [() => DeploymentStrategyList, 0]];
690
- var DeploymentStrategy = [
688
+ var Deployments$ = [3, n0, _Depl, 0, [_It, _NT], [() => DeploymentList, 0]];
689
+ var DeploymentStrategies$ = [
690
+ 3,
691
+ n0,
692
+ _DS,
693
+ 0,
694
+ [_It, _NT],
695
+ [() => DeploymentStrategyList, 0],
696
+ ];
697
+ var DeploymentStrategy$ = [
691
698
  3,
692
699
  n0,
693
700
  _DSe,
@@ -695,7 +702,7 @@ var DeploymentStrategy = [
695
702
  [_I, _N, _D, _DDIM, _GT, _GF, _FBTIM, _RT],
696
703
  [0, 0, 0, 1, 0, 1, 1, 0],
697
704
  ];
698
- var DeploymentSummary = [
705
+ var DeploymentSummary$ = [
699
706
  3,
700
707
  n0,
701
708
  _DSep,
@@ -703,7 +710,7 @@ var DeploymentSummary = [
703
710
  [_DN, _CN, _CV, _DDIM, _GT, _GF, _FBTIM, _S, _PC, _SA, _CA, _VL],
704
711
  [1, 0, 0, 1, 0, 1, 1, 0, 1, 5, 5, 0],
705
712
  ];
706
- var Environment = [
713
+ var Environment$ = [
707
714
  3,
708
715
  n0,
709
716
  _En,
@@ -711,8 +718,8 @@ var Environment = [
711
718
  [_AIp, _I, _N, _D, _S, _Mo],
712
719
  [0, 0, 0, 0, 0, () => MonitorList],
713
720
  ];
714
- var Environments = [3, n0, _Env, 0, [_It, _NT], [() => EnvironmentList, 0]];
715
- var Extension = [
721
+ var Environments$ = [3, n0, _Env, 0, [_It, _NT], [() => EnvironmentList, 0]];
722
+ var Extension$ = [
716
723
  3,
717
724
  n0,
718
725
  _Ex,
@@ -720,7 +727,7 @@ var Extension = [
720
727
  [_I, _N, _VN, _Ar, _D, _Ac, _P],
721
728
  [0, 0, 1, 0, 0, () => ActionsMap, () => ParameterMap],
722
729
  ];
723
- var ExtensionAssociation = [
730
+ var ExtensionAssociation$ = [
724
731
  3,
725
732
  n0,
726
733
  _EA,
@@ -728,7 +735,7 @@ var ExtensionAssociation = [
728
735
  [_I, _EAx, _RAe, _Ar, _P, _EVN],
729
736
  [0, 0, 0, 0, 128 | 0, 1],
730
737
  ];
731
- var ExtensionAssociations = [
738
+ var ExtensionAssociations$ = [
732
739
  3,
733
740
  n0,
734
741
  _EAxt,
@@ -736,11 +743,11 @@ var ExtensionAssociations = [
736
743
  [_It, _NT],
737
744
  [() => ExtensionAssociationSummaries, 0],
738
745
  ];
739
- var ExtensionAssociationSummary = [3, n0, _EAS, 0, [_I, _EAx, _RAe], [0, 0, 0]];
740
- var Extensions = [3, n0, _Ext, 0, [_It, _NT], [() => ExtensionSummaries, 0]];
741
- var ExtensionSummary = [3, n0, _ES, 0, [_I, _N, _VN, _Ar, _D], [0, 0, 1, 0, 0]];
742
- var GetApplicationRequest = [3, n0, _GAR, 0, [_AIp], [[0, 1]]];
743
- var GetConfigurationProfileRequest = [
746
+ var ExtensionAssociationSummary$ = [3, n0, _EAS, 0, [_I, _EAx, _RAe], [0, 0, 0]];
747
+ var Extensions$ = [3, n0, _Ext, 0, [_It, _NT], [() => ExtensionSummaries, 0]];
748
+ var ExtensionSummary$ = [3, n0, _ES, 0, [_I, _N, _VN, _Ar, _D], [0, 0, 1, 0, 0]];
749
+ var GetApplicationRequest$ = [3, n0, _GAR, 0, [_AIp], [[0, 1]]];
750
+ var GetConfigurationProfileRequest$ = [
744
751
  3,
745
752
  n0,
746
753
  _GCPR,
@@ -751,7 +758,7 @@ var GetConfigurationProfileRequest = [
751
758
  [0, 1],
752
759
  ],
753
760
  ];
754
- var GetConfigurationRequest = [
761
+ var GetConfigurationRequest$ = [
755
762
  3,
756
763
  n0,
757
764
  _GCR,
@@ -765,7 +772,7 @@ var GetConfigurationRequest = [
765
772
  [0, { [_hQ]: _ccv }],
766
773
  ],
767
774
  ];
768
- var GetDeploymentRequest = [
775
+ var GetDeploymentRequest$ = [
769
776
  3,
770
777
  n0,
771
778
  _GDR,
@@ -777,8 +784,8 @@ var GetDeploymentRequest = [
777
784
  [1, 1],
778
785
  ],
779
786
  ];
780
- var GetDeploymentStrategyRequest = [3, n0, _GDSR, 0, [_DSI], [[0, 1]]];
781
- var GetEnvironmentRequest = [
787
+ var GetDeploymentStrategyRequest$ = [3, n0, _GDSR, 0, [_DSI], [[0, 1]]];
788
+ var GetEnvironmentRequest$ = [
782
789
  3,
783
790
  n0,
784
791
  _GER,
@@ -789,8 +796,8 @@ var GetEnvironmentRequest = [
789
796
  [0, 1],
790
797
  ],
791
798
  ];
792
- var GetExtensionAssociationRequest = [3, n0, _GEAR, 0, [_EAI], [[0, 1]]];
793
- var GetExtensionRequest = [
799
+ var GetExtensionAssociationRequest$ = [3, n0, _GEAR, 0, [_EAI], [[0, 1]]];
800
+ var GetExtensionRequest$ = [
794
801
  3,
795
802
  n0,
796
803
  _GERe,
@@ -801,7 +808,7 @@ var GetExtensionRequest = [
801
808
  [1, { [_hQ]: _vn }],
802
809
  ],
803
810
  ];
804
- var GetHostedConfigurationVersionRequest = [
811
+ var GetHostedConfigurationVersionRequest$ = [
805
812
  3,
806
813
  n0,
807
814
  _GHCVR,
@@ -813,7 +820,7 @@ var GetHostedConfigurationVersionRequest = [
813
820
  [1, 1],
814
821
  ],
815
822
  ];
816
- var HostedConfigurationVersion = [
823
+ var HostedConfigurationVersion$ = [
817
824
  3,
818
825
  n0,
819
826
  _HCV,
@@ -830,7 +837,7 @@ var HostedConfigurationVersion = [
830
837
  [0, { [_hH]: _KKA }],
831
838
  ],
832
839
  ];
833
- var HostedConfigurationVersions = [
840
+ var HostedConfigurationVersions$ = [
834
841
  3,
835
842
  n0,
836
843
  _HCVo,
@@ -838,7 +845,7 @@ var HostedConfigurationVersions = [
838
845
  [_It, _NT],
839
846
  [() => HostedConfigurationVersionSummaryList, 0],
840
847
  ];
841
- var HostedConfigurationVersionSummary = [
848
+ var HostedConfigurationVersionSummary$ = [
842
849
  3,
843
850
  n0,
844
851
  _HCVS,
@@ -846,9 +853,9 @@ var HostedConfigurationVersionSummary = [
846
853
  [_AIp, _CPI, _VN, _D, _CT, _VL, _KKA],
847
854
  [0, 0, 1, 0, 0, 0, 0],
848
855
  ];
849
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
850
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
851
- var InvalidConfigurationDetail = [
856
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
857
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
858
+ var InvalidConfigurationDetail$ = [
852
859
  3,
853
860
  n0,
854
861
  _ICD,
@@ -856,7 +863,7 @@ var InvalidConfigurationDetail = [
856
863
  [_Con, _L, _R, _T, _Va],
857
864
  [0, 0, 0, 0, 0],
858
865
  ];
859
- var ListApplicationsRequest = [
866
+ var ListApplicationsRequest$ = [
860
867
  3,
861
868
  n0,
862
869
  _LAR,
@@ -867,7 +874,7 @@ var ListApplicationsRequest = [
867
874
  [0, { [_hQ]: _nt }],
868
875
  ],
869
876
  ];
870
- var ListConfigurationProfilesRequest = [
877
+ var ListConfigurationProfilesRequest$ = [
871
878
  3,
872
879
  n0,
873
880
  _LCPR,
@@ -880,7 +887,7 @@ var ListConfigurationProfilesRequest = [
880
887
  [0, { [_hQ]: _t }],
881
888
  ],
882
889
  ];
883
- var ListDeploymentsRequest = [
890
+ var ListDeploymentsRequest$ = [
884
891
  3,
885
892
  n0,
886
893
  _LDR,
@@ -893,7 +900,7 @@ var ListDeploymentsRequest = [
893
900
  [0, { [_hQ]: _nt }],
894
901
  ],
895
902
  ];
896
- var ListDeploymentStrategiesRequest = [
903
+ var ListDeploymentStrategiesRequest$ = [
897
904
  3,
898
905
  n0,
899
906
  _LDSR,
@@ -904,7 +911,7 @@ var ListDeploymentStrategiesRequest = [
904
911
  [0, { [_hQ]: _nt }],
905
912
  ],
906
913
  ];
907
- var ListEnvironmentsRequest = [
914
+ var ListEnvironmentsRequest$ = [
908
915
  3,
909
916
  n0,
910
917
  _LER,
@@ -916,7 +923,7 @@ var ListEnvironmentsRequest = [
916
923
  [0, { [_hQ]: _nt }],
917
924
  ],
918
925
  ];
919
- var ListExtensionAssociationsRequest = [
926
+ var ListExtensionAssociationsRequest$ = [
920
927
  3,
921
928
  n0,
922
929
  _LEAR,
@@ -930,7 +937,7 @@ var ListExtensionAssociationsRequest = [
930
937
  [0, { [_hQ]: _nt }],
931
938
  ],
932
939
  ];
933
- var ListExtensionsRequest = [
940
+ var ListExtensionsRequest$ = [
934
941
  3,
935
942
  n0,
936
943
  _LERi,
@@ -942,7 +949,7 @@ var ListExtensionsRequest = [
942
949
  [0, { [_hQ]: _n }],
943
950
  ],
944
951
  ];
945
- var ListHostedConfigurationVersionsRequest = [
952
+ var ListHostedConfigurationVersionsRequest$ = [
946
953
  3,
947
954
  n0,
948
955
  _LHCVR,
@@ -956,10 +963,10 @@ var ListHostedConfigurationVersionsRequest = [
956
963
  [0, { [_hQ]: _vl }],
957
964
  ],
958
965
  ];
959
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
960
- var Monitor = [3, n0, _Mon, 0, [_AA, _ARA], [0, 0]];
961
- var Parameter = [3, n0, _Pa, 0, [_D, _Re, _Dy], [0, 2, 2]];
962
- var PayloadTooLargeException = [
966
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
967
+ var Monitor$ = [3, n0, _Mon, 0, [_AA, _ARA], [0, 0]];
968
+ var Parameter$ = [3, n0, _Pa, 0, [_D, _Re, _Dy], [0, 2, 2]];
969
+ var PayloadTooLargeException$ = [
963
970
  -3,
964
971
  n0,
965
972
  _PTLE,
@@ -967,13 +974,13 @@ var PayloadTooLargeException = [
967
974
  [_M, _Me, _Li, _Si],
968
975
  [0, 0, 1, 1],
969
976
  ];
970
- schema.TypeRegistry.for(n0).registerError(PayloadTooLargeException, PayloadTooLargeException$1);
971
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M, _RN], [0, 0]];
972
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
973
- var ResourceTags = [3, n0, _RTe, 0, [_Ta], [128 | 0]];
974
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
975
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
976
- var StartDeploymentRequest = [
977
+ schema.TypeRegistry.for(n0).registerError(PayloadTooLargeException$, PayloadTooLargeException);
978
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M, _RN], [0, 0]];
979
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
980
+ var ResourceTags$ = [3, n0, _RTe, 0, [_Ta], [128 | 0]];
981
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
982
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
983
+ var StartDeploymentRequest$ = [
977
984
  3,
978
985
  n0,
979
986
  _SDR,
@@ -981,7 +988,7 @@ var StartDeploymentRequest = [
981
988
  [_AIp, _EIn, _DSI, _CPI, _CV, _D, _Ta, _KKI, _DEP],
982
989
  [[0, 1], [0, 1], 0, 0, 0, 0, 128 | 0, 0, [() => DynamicParameterMap, 0]],
983
990
  ];
984
- var StopDeploymentRequest = [
991
+ var StopDeploymentRequest$ = [
985
992
  3,
986
993
  n0,
987
994
  _SDRt,
@@ -994,8 +1001,8 @@ var StopDeploymentRequest = [
994
1001
  [2, { [_hH]: _AR_ }],
995
1002
  ],
996
1003
  ];
997
- var TagResourceRequest = [3, n0, _TRR, 0, [_RAe, _Ta], [[0, 1], 128 | 0]];
998
- var UntagResourceRequest = [
1004
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RAe, _Ta], [[0, 1], 128 | 0]];
1005
+ var UntagResourceRequest$ = [
999
1006
  3,
1000
1007
  n0,
1001
1008
  _URR,
@@ -1006,16 +1013,16 @@ var UntagResourceRequest = [
1006
1013
  [64 | 0, { [_hQ]: _tK }],
1007
1014
  ],
1008
1015
  ];
1009
- var UpdateAccountSettingsRequest = [
1016
+ var UpdateAccountSettingsRequest$ = [
1010
1017
  3,
1011
1018
  n0,
1012
1019
  _UASR,
1013
1020
  0,
1014
1021
  [_DP],
1015
- [() => DeletionProtectionSettings],
1022
+ [() => DeletionProtectionSettings$],
1016
1023
  ];
1017
- var UpdateApplicationRequest = [3, n0, _UAR, 0, [_AIp, _N, _D], [[0, 1], 0, 0]];
1018
- var UpdateConfigurationProfileRequest = [
1024
+ var UpdateApplicationRequest$ = [3, n0, _UAR, 0, [_AIp, _N, _D], [[0, 1], 0, 0]];
1025
+ var UpdateConfigurationProfileRequest$ = [
1019
1026
  3,
1020
1027
  n0,
1021
1028
  _UCPR,
@@ -1023,7 +1030,7 @@ var UpdateConfigurationProfileRequest = [
1023
1030
  [_AIp, _CPI, _N, _D, _RRA, _V, _KKI],
1024
1031
  [[0, 1], [0, 1], 0, 0, 0, [() => ValidatorList, 0], 0],
1025
1032
  ];
1026
- var UpdateDeploymentStrategyRequest = [
1033
+ var UpdateDeploymentStrategyRequest$ = [
1027
1034
  3,
1028
1035
  n0,
1029
1036
  _UDSR,
@@ -1031,7 +1038,7 @@ var UpdateDeploymentStrategyRequest = [
1031
1038
  [_DSI, _D, _DDIM, _FBTIM, _GF, _GT],
1032
1039
  [[0, 1], 0, 1, 1, 1, 0],
1033
1040
  ];
1034
- var UpdateEnvironmentRequest = [
1041
+ var UpdateEnvironmentRequest$ = [
1035
1042
  3,
1036
1043
  n0,
1037
1044
  _UER,
@@ -1039,8 +1046,8 @@ var UpdateEnvironmentRequest = [
1039
1046
  [_AIp, _EIn, _N, _D, _Mo],
1040
1047
  [[0, 1], [0, 1], 0, 0, () => MonitorList],
1041
1048
  ];
1042
- var UpdateExtensionAssociationRequest = [3, n0, _UEAR, 0, [_EAI, _P], [[0, 1], 128 | 0]];
1043
- var UpdateExtensionRequest = [
1049
+ var UpdateExtensionAssociationRequest$ = [3, n0, _UEAR, 0, [_EAI, _P], [[0, 1], 128 | 0]];
1050
+ var UpdateExtensionRequest$ = [
1044
1051
  3,
1045
1052
  n0,
1046
1053
  _UERp,
@@ -1048,7 +1055,7 @@ var UpdateExtensionRequest = [
1048
1055
  [_EI, _D, _Ac, _P, _VN],
1049
1056
  [[0, 1], 0, () => ActionsMap, () => ParameterMap, 1],
1050
1057
  ];
1051
- var ValidateConfigurationRequest = [
1058
+ var ValidateConfigurationRequest$ = [
1052
1059
  3,
1053
1060
  n0,
1054
1061
  _VCR,
@@ -1060,7 +1067,7 @@ var ValidateConfigurationRequest = [
1060
1067
  [0, { [_hQ]: _cv }],
1061
1068
  ],
1062
1069
  ];
1063
- var Validator = [
1070
+ var Validator$ = [
1064
1071
  3,
1065
1072
  n0,
1066
1073
  _Val,
@@ -1069,82 +1076,82 @@ var Validator = [
1069
1076
  [0, [() => StringWithLengthBetween0And32768, 0]],
1070
1077
  ];
1071
1078
  var __Unit = "unit";
1072
- var AppConfigServiceException = [-3, _sm, "AppConfigServiceException", 0, [], []];
1073
- schema.TypeRegistry.for(_sm).registerError(AppConfigServiceException, AppConfigServiceException$1);
1074
- var ActionInvocations = [1, n0, _AIc, 0, () => ActionInvocation];
1075
- var ActionList = [1, n0, _AL, 0, () => Action];
1076
- var ApplicationList = [1, n0, _ALp, 0, () => Application];
1077
- var AppliedExtensions = [1, n0, _AEp, 0, () => AppliedExtension];
1078
- var ConfigurationProfileSummaryList = [1, n0, _CPSL, 0, () => ConfigurationProfileSummary];
1079
- var DeploymentEvents = [1, n0, _DEe, 0, () => DeploymentEvent];
1080
- var DeploymentList = [1, n0, _DL, 0, () => DeploymentSummary];
1081
- var DeploymentStrategyList = [1, n0, _DSL, 0, () => DeploymentStrategy];
1082
- var EnvironmentList = [1, n0, _ELn, 0, () => Environment];
1083
- var ExtensionAssociationSummaries = [1, n0, _EASx, 0, () => ExtensionAssociationSummary];
1084
- var ExtensionSummaries = [1, n0, _ESx, 0, () => ExtensionSummary];
1079
+ var AppConfigServiceException$ = [-3, _sm, "AppConfigServiceException", 0, [], []];
1080
+ schema.TypeRegistry.for(_sm).registerError(AppConfigServiceException$, AppConfigServiceException);
1081
+ var ActionInvocations = [1, n0, _AIc, 0, () => ActionInvocation$];
1082
+ var ActionList = [1, n0, _AL, 0, () => Action$];
1083
+ var ApplicationList = [1, n0, _ALp, 0, () => Application$];
1084
+ var AppliedExtensions = [1, n0, _AEp, 0, () => AppliedExtension$];
1085
+ var ConfigurationProfileSummaryList = [1, n0, _CPSL, 0, () => ConfigurationProfileSummary$];
1086
+ var DeploymentEvents = [1, n0, _DEe, 0, () => DeploymentEvent$];
1087
+ var DeploymentList = [1, n0, _DL, 0, () => DeploymentSummary$];
1088
+ var DeploymentStrategyList = [1, n0, _DSL, 0, () => DeploymentStrategy$];
1089
+ var EnvironmentList = [1, n0, _ELn, 0, () => Environment$];
1090
+ var ExtensionAssociationSummaries = [1, n0, _EASx, 0, () => ExtensionAssociationSummary$];
1091
+ var ExtensionSummaries = [1, n0, _ESx, 0, () => ExtensionSummary$];
1085
1092
  var HostedConfigurationVersionSummaryList = [
1086
1093
  1,
1087
1094
  n0,
1088
1095
  _HCVSL,
1089
1096
  0,
1090
- () => HostedConfigurationVersionSummary,
1097
+ () => HostedConfigurationVersionSummary$,
1091
1098
  ];
1092
- var InvalidConfigurationDetailList = [1, n0, _ICDL, 0, () => InvalidConfigurationDetail];
1093
- var MonitorList = [1, n0, _ML, 0, () => Monitor];
1094
- var ValidatorList = [1, n0, _VLa, 0, [() => Validator, 0]];
1099
+ var InvalidConfigurationDetailList = [1, n0, _ICDL, 0, () => InvalidConfigurationDetail$];
1100
+ var MonitorList = [1, n0, _ML, 0, () => Monitor$];
1101
+ var ValidatorList = [1, n0, _VLa, 0, [() => Validator$, 0]];
1095
1102
  var ActionsMap = [2, n0, _AM, 0, 0, () => ActionList];
1096
1103
  var DynamicParameterMap = [2, n0, _DPM, 8, 0, 0];
1097
- var ParameterMap = [2, n0, _PM, 0, 0, () => Parameter];
1098
- var BadRequestDetails = [3, n0, _BRD, 0, [_IC], [() => InvalidConfigurationDetailList]];
1099
- var CreateApplication = [
1104
+ var ParameterMap = [2, n0, _PM, 0, 0, () => Parameter$];
1105
+ var BadRequestDetails$ = [3, n0, _BRD, 0, [_IC], [() => InvalidConfigurationDetailList]];
1106
+ var CreateApplication$ = [
1100
1107
  9,
1101
1108
  n0,
1102
1109
  _CAr,
1103
1110
  { [_h]: ["POST", "/applications", 201] },
1104
- () => CreateApplicationRequest,
1105
- () => Application,
1111
+ () => CreateApplicationRequest$,
1112
+ () => Application$,
1106
1113
  ];
1107
- var CreateConfigurationProfile = [
1114
+ var CreateConfigurationProfile$ = [
1108
1115
  9,
1109
1116
  n0,
1110
1117
  _CCP,
1111
1118
  { [_h]: ["POST", "/applications/{ApplicationId}/configurationprofiles", 201] },
1112
- () => CreateConfigurationProfileRequest,
1113
- () => ConfigurationProfile,
1119
+ () => CreateConfigurationProfileRequest$,
1120
+ () => ConfigurationProfile$,
1114
1121
  ];
1115
- var CreateDeploymentStrategy = [
1122
+ var CreateDeploymentStrategy$ = [
1116
1123
  9,
1117
1124
  n0,
1118
1125
  _CDS,
1119
1126
  { [_h]: ["POST", "/deploymentstrategies", 201] },
1120
- () => CreateDeploymentStrategyRequest,
1121
- () => DeploymentStrategy,
1127
+ () => CreateDeploymentStrategyRequest$,
1128
+ () => DeploymentStrategy$,
1122
1129
  ];
1123
- var CreateEnvironment = [
1130
+ var CreateEnvironment$ = [
1124
1131
  9,
1125
1132
  n0,
1126
1133
  _CEr,
1127
1134
  { [_h]: ["POST", "/applications/{ApplicationId}/environments", 201] },
1128
- () => CreateEnvironmentRequest,
1129
- () => Environment,
1135
+ () => CreateEnvironmentRequest$,
1136
+ () => Environment$,
1130
1137
  ];
1131
- var CreateExtension = [
1138
+ var CreateExtension$ = [
1132
1139
  9,
1133
1140
  n0,
1134
1141
  _CEre,
1135
1142
  { [_h]: ["POST", "/extensions", 201] },
1136
- () => CreateExtensionRequest,
1137
- () => Extension,
1143
+ () => CreateExtensionRequest$,
1144
+ () => Extension$,
1138
1145
  ];
1139
- var CreateExtensionAssociation = [
1146
+ var CreateExtensionAssociation$ = [
1140
1147
  9,
1141
1148
  n0,
1142
1149
  _CEA,
1143
1150
  { [_h]: ["POST", "/extensionassociations", 201] },
1144
- () => CreateExtensionAssociationRequest,
1145
- () => ExtensionAssociation,
1151
+ () => CreateExtensionAssociationRequest$,
1152
+ () => ExtensionAssociation$,
1146
1153
  ];
1147
- var CreateHostedConfigurationVersion = [
1154
+ var CreateHostedConfigurationVersion$ = [
1148
1155
  9,
1149
1156
  n0,
1150
1157
  _CHCV,
@@ -1155,58 +1162,58 @@ var CreateHostedConfigurationVersion = [
1155
1162
  201,
1156
1163
  ],
1157
1164
  },
1158
- () => CreateHostedConfigurationVersionRequest,
1159
- () => HostedConfigurationVersion,
1165
+ () => CreateHostedConfigurationVersionRequest$,
1166
+ () => HostedConfigurationVersion$,
1160
1167
  ];
1161
- var DeleteApplication = [
1168
+ var DeleteApplication$ = [
1162
1169
  9,
1163
1170
  n0,
1164
1171
  _DA,
1165
1172
  { [_h]: ["DELETE", "/applications/{ApplicationId}", 204] },
1166
- () => DeleteApplicationRequest,
1173
+ () => DeleteApplicationRequest$,
1167
1174
  () => __Unit,
1168
1175
  ];
1169
- var DeleteConfigurationProfile = [
1176
+ var DeleteConfigurationProfile$ = [
1170
1177
  9,
1171
1178
  n0,
1172
1179
  _DCP,
1173
1180
  { [_h]: ["DELETE", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 204] },
1174
- () => DeleteConfigurationProfileRequest,
1181
+ () => DeleteConfigurationProfileRequest$,
1175
1182
  () => __Unit,
1176
1183
  ];
1177
- var DeleteDeploymentStrategy = [
1184
+ var DeleteDeploymentStrategy$ = [
1178
1185
  9,
1179
1186
  n0,
1180
1187
  _DDS,
1181
1188
  { [_h]: ["DELETE", "/deployementstrategies/{DeploymentStrategyId}", 204] },
1182
- () => DeleteDeploymentStrategyRequest,
1189
+ () => DeleteDeploymentStrategyRequest$,
1183
1190
  () => __Unit,
1184
1191
  ];
1185
- var DeleteEnvironment = [
1192
+ var DeleteEnvironment$ = [
1186
1193
  9,
1187
1194
  n0,
1188
1195
  _DEel,
1189
1196
  { [_h]: ["DELETE", "/applications/{ApplicationId}/environments/{EnvironmentId}", 204] },
1190
- () => DeleteEnvironmentRequest,
1197
+ () => DeleteEnvironmentRequest$,
1191
1198
  () => __Unit,
1192
1199
  ];
1193
- var DeleteExtension = [
1200
+ var DeleteExtension$ = [
1194
1201
  9,
1195
1202
  n0,
1196
1203
  _DEele,
1197
1204
  { [_h]: ["DELETE", "/extensions/{ExtensionIdentifier}", 204] },
1198
- () => DeleteExtensionRequest,
1205
+ () => DeleteExtensionRequest$,
1199
1206
  () => __Unit,
1200
1207
  ];
1201
- var DeleteExtensionAssociation = [
1208
+ var DeleteExtensionAssociation$ = [
1202
1209
  9,
1203
1210
  n0,
1204
1211
  _DEA,
1205
1212
  { [_h]: ["DELETE", "/extensionassociations/{ExtensionAssociationId}", 204] },
1206
- () => DeleteExtensionAssociationRequest,
1213
+ () => DeleteExtensionAssociationRequest$,
1207
1214
  () => __Unit,
1208
1215
  ];
1209
- var DeleteHostedConfigurationVersion = [
1216
+ var DeleteHostedConfigurationVersion$ = [
1210
1217
  9,
1211
1218
  n0,
1212
1219
  _DHCV,
@@ -1217,82 +1224,82 @@ var DeleteHostedConfigurationVersion = [
1217
1224
  204,
1218
1225
  ],
1219
1226
  },
1220
- () => DeleteHostedConfigurationVersionRequest,
1227
+ () => DeleteHostedConfigurationVersionRequest$,
1221
1228
  () => __Unit,
1222
1229
  ];
1223
- var GetAccountSettings = [
1230
+ var GetAccountSettings$ = [
1224
1231
  9,
1225
1232
  n0,
1226
1233
  _GAS,
1227
1234
  { [_h]: ["GET", "/settings", 200] },
1228
1235
  () => __Unit,
1229
- () => AccountSettings,
1236
+ () => AccountSettings$,
1230
1237
  ];
1231
- var GetApplication = [
1238
+ var GetApplication$ = [
1232
1239
  9,
1233
1240
  n0,
1234
1241
  _GA,
1235
1242
  { [_h]: ["GET", "/applications/{ApplicationId}", 200] },
1236
- () => GetApplicationRequest,
1237
- () => Application,
1243
+ () => GetApplicationRequest$,
1244
+ () => Application$,
1238
1245
  ];
1239
- var GetConfiguration = [
1246
+ var GetConfiguration$ = [
1240
1247
  9,
1241
1248
  n0,
1242
1249
  _GC,
1243
1250
  { [_h]: ["GET", "/applications/{Application}/environments/{Environment}/configurations/{Configuration}", 200] },
1244
- () => GetConfigurationRequest,
1245
- () => Configuration,
1251
+ () => GetConfigurationRequest$,
1252
+ () => Configuration$,
1246
1253
  ];
1247
- var GetConfigurationProfile = [
1254
+ var GetConfigurationProfile$ = [
1248
1255
  9,
1249
1256
  n0,
1250
1257
  _GCP,
1251
1258
  { [_h]: ["GET", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 200] },
1252
- () => GetConfigurationProfileRequest,
1253
- () => ConfigurationProfile,
1259
+ () => GetConfigurationProfileRequest$,
1260
+ () => ConfigurationProfile$,
1254
1261
  ];
1255
- var GetDeployment = [
1262
+ var GetDeployment$ = [
1256
1263
  9,
1257
1264
  n0,
1258
1265
  _GD,
1259
1266
  { [_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", 200] },
1260
- () => GetDeploymentRequest,
1261
- () => Deployment,
1267
+ () => GetDeploymentRequest$,
1268
+ () => Deployment$,
1262
1269
  ];
1263
- var GetDeploymentStrategy = [
1270
+ var GetDeploymentStrategy$ = [
1264
1271
  9,
1265
1272
  n0,
1266
1273
  _GDS,
1267
1274
  { [_h]: ["GET", "/deploymentstrategies/{DeploymentStrategyId}", 200] },
1268
- () => GetDeploymentStrategyRequest,
1269
- () => DeploymentStrategy,
1275
+ () => GetDeploymentStrategyRequest$,
1276
+ () => DeploymentStrategy$,
1270
1277
  ];
1271
- var GetEnvironment = [
1278
+ var GetEnvironment$ = [
1272
1279
  9,
1273
1280
  n0,
1274
1281
  _GE,
1275
1282
  { [_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}", 200] },
1276
- () => GetEnvironmentRequest,
1277
- () => Environment,
1283
+ () => GetEnvironmentRequest$,
1284
+ () => Environment$,
1278
1285
  ];
1279
- var GetExtension = [
1286
+ var GetExtension$ = [
1280
1287
  9,
1281
1288
  n0,
1282
1289
  _GEe,
1283
1290
  { [_h]: ["GET", "/extensions/{ExtensionIdentifier}", 200] },
1284
- () => GetExtensionRequest,
1285
- () => Extension,
1291
+ () => GetExtensionRequest$,
1292
+ () => Extension$,
1286
1293
  ];
1287
- var GetExtensionAssociation = [
1294
+ var GetExtensionAssociation$ = [
1288
1295
  9,
1289
1296
  n0,
1290
1297
  _GEA,
1291
1298
  { [_h]: ["GET", "/extensionassociations/{ExtensionAssociationId}", 200] },
1292
- () => GetExtensionAssociationRequest,
1293
- () => ExtensionAssociation,
1299
+ () => GetExtensionAssociationRequest$,
1300
+ () => ExtensionAssociation$,
1294
1301
  ];
1295
- var GetHostedConfigurationVersion = [
1302
+ var GetHostedConfigurationVersion$ = [
1296
1303
  9,
1297
1304
  n0,
1298
1305
  _GHCV,
@@ -1303,66 +1310,66 @@ var GetHostedConfigurationVersion = [
1303
1310
  200,
1304
1311
  ],
1305
1312
  },
1306
- () => GetHostedConfigurationVersionRequest,
1307
- () => HostedConfigurationVersion,
1313
+ () => GetHostedConfigurationVersionRequest$,
1314
+ () => HostedConfigurationVersion$,
1308
1315
  ];
1309
- var ListApplications = [
1316
+ var ListApplications$ = [
1310
1317
  9,
1311
1318
  n0,
1312
1319
  _LA,
1313
1320
  { [_h]: ["GET", "/applications", 200] },
1314
- () => ListApplicationsRequest,
1315
- () => Applications,
1321
+ () => ListApplicationsRequest$,
1322
+ () => Applications$,
1316
1323
  ];
1317
- var ListConfigurationProfiles = [
1324
+ var ListConfigurationProfiles$ = [
1318
1325
  9,
1319
1326
  n0,
1320
1327
  _LCP,
1321
1328
  { [_h]: ["GET", "/applications/{ApplicationId}/configurationprofiles", 200] },
1322
- () => ListConfigurationProfilesRequest,
1323
- () => ConfigurationProfiles,
1329
+ () => ListConfigurationProfilesRequest$,
1330
+ () => ConfigurationProfiles$,
1324
1331
  ];
1325
- var ListDeployments = [
1332
+ var ListDeployments$ = [
1326
1333
  9,
1327
1334
  n0,
1328
1335
  _LD,
1329
1336
  { [_h]: ["GET", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", 200] },
1330
- () => ListDeploymentsRequest,
1331
- () => Deployments,
1337
+ () => ListDeploymentsRequest$,
1338
+ () => Deployments$,
1332
1339
  ];
1333
- var ListDeploymentStrategies = [
1340
+ var ListDeploymentStrategies$ = [
1334
1341
  9,
1335
1342
  n0,
1336
1343
  _LDS,
1337
1344
  { [_h]: ["GET", "/deploymentstrategies", 200] },
1338
- () => ListDeploymentStrategiesRequest,
1339
- () => DeploymentStrategies,
1345
+ () => ListDeploymentStrategiesRequest$,
1346
+ () => DeploymentStrategies$,
1340
1347
  ];
1341
- var ListEnvironments = [
1348
+ var ListEnvironments$ = [
1342
1349
  9,
1343
1350
  n0,
1344
1351
  _LE,
1345
1352
  { [_h]: ["GET", "/applications/{ApplicationId}/environments", 200] },
1346
- () => ListEnvironmentsRequest,
1347
- () => Environments,
1353
+ () => ListEnvironmentsRequest$,
1354
+ () => Environments$,
1348
1355
  ];
1349
- var ListExtensionAssociations = [
1356
+ var ListExtensionAssociations$ = [
1350
1357
  9,
1351
1358
  n0,
1352
1359
  _LEA,
1353
1360
  { [_h]: ["GET", "/extensionassociations", 200] },
1354
- () => ListExtensionAssociationsRequest,
1355
- () => ExtensionAssociations,
1361
+ () => ListExtensionAssociationsRequest$,
1362
+ () => ExtensionAssociations$,
1356
1363
  ];
1357
- var ListExtensions = [
1364
+ var ListExtensions$ = [
1358
1365
  9,
1359
1366
  n0,
1360
1367
  _LEi,
1361
1368
  { [_h]: ["GET", "/extensions", 200] },
1362
- () => ListExtensionsRequest,
1363
- () => Extensions,
1369
+ () => ListExtensionsRequest$,
1370
+ () => Extensions$,
1364
1371
  ];
1365
- var ListHostedConfigurationVersions = [
1372
+ var ListHostedConfigurationVersions$ = [
1366
1373
  9,
1367
1374
  n0,
1368
1375
  _LHCV,
@@ -1373,113 +1380,113 @@ var ListHostedConfigurationVersions = [
1373
1380
  200,
1374
1381
  ],
1375
1382
  },
1376
- () => ListHostedConfigurationVersionsRequest,
1377
- () => HostedConfigurationVersions,
1383
+ () => ListHostedConfigurationVersionsRequest$,
1384
+ () => HostedConfigurationVersions$,
1378
1385
  ];
1379
- var ListTagsForResource = [
1386
+ var ListTagsForResource$ = [
1380
1387
  9,
1381
1388
  n0,
1382
1389
  _LTFR,
1383
1390
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] },
1384
- () => ListTagsForResourceRequest,
1385
- () => ResourceTags,
1391
+ () => ListTagsForResourceRequest$,
1392
+ () => ResourceTags$,
1386
1393
  ];
1387
- var StartDeployment = [
1394
+ var StartDeployment$ = [
1388
1395
  9,
1389
1396
  n0,
1390
1397
  _SD,
1391
1398
  { [_h]: ["POST", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", 201] },
1392
- () => StartDeploymentRequest,
1393
- () => Deployment,
1399
+ () => StartDeploymentRequest$,
1400
+ () => Deployment$,
1394
1401
  ];
1395
- var StopDeployment = [
1402
+ var StopDeployment$ = [
1396
1403
  9,
1397
1404
  n0,
1398
1405
  _SDt,
1399
1406
  {
1400
1407
  [_h]: ["DELETE", "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", 202],
1401
1408
  },
1402
- () => StopDeploymentRequest,
1403
- () => Deployment,
1409
+ () => StopDeploymentRequest$,
1410
+ () => Deployment$,
1404
1411
  ];
1405
- var TagResource = [
1412
+ var TagResource$ = [
1406
1413
  9,
1407
1414
  n0,
1408
1415
  _TR,
1409
1416
  { [_h]: ["POST", "/tags/{ResourceArn}", 204] },
1410
- () => TagResourceRequest,
1417
+ () => TagResourceRequest$,
1411
1418
  () => __Unit,
1412
1419
  ];
1413
- var UntagResource = [
1420
+ var UntagResource$ = [
1414
1421
  9,
1415
1422
  n0,
1416
1423
  _UR,
1417
1424
  { [_h]: ["DELETE", "/tags/{ResourceArn}", 204] },
1418
- () => UntagResourceRequest,
1425
+ () => UntagResourceRequest$,
1419
1426
  () => __Unit,
1420
1427
  ];
1421
- var UpdateAccountSettings = [
1428
+ var UpdateAccountSettings$ = [
1422
1429
  9,
1423
1430
  n0,
1424
1431
  _UAS,
1425
1432
  { [_h]: ["PATCH", "/settings", 200] },
1426
- () => UpdateAccountSettingsRequest,
1427
- () => AccountSettings,
1433
+ () => UpdateAccountSettingsRequest$,
1434
+ () => AccountSettings$,
1428
1435
  ];
1429
- var UpdateApplication = [
1436
+ var UpdateApplication$ = [
1430
1437
  9,
1431
1438
  n0,
1432
1439
  _UA,
1433
1440
  { [_h]: ["PATCH", "/applications/{ApplicationId}", 200] },
1434
- () => UpdateApplicationRequest,
1435
- () => Application,
1441
+ () => UpdateApplicationRequest$,
1442
+ () => Application$,
1436
1443
  ];
1437
- var UpdateConfigurationProfile = [
1444
+ var UpdateConfigurationProfile$ = [
1438
1445
  9,
1439
1446
  n0,
1440
1447
  _UCP,
1441
1448
  { [_h]: ["PATCH", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", 200] },
1442
- () => UpdateConfigurationProfileRequest,
1443
- () => ConfigurationProfile,
1449
+ () => UpdateConfigurationProfileRequest$,
1450
+ () => ConfigurationProfile$,
1444
1451
  ];
1445
- var UpdateDeploymentStrategy = [
1452
+ var UpdateDeploymentStrategy$ = [
1446
1453
  9,
1447
1454
  n0,
1448
1455
  _UDS,
1449
1456
  { [_h]: ["PATCH", "/deploymentstrategies/{DeploymentStrategyId}", 200] },
1450
- () => UpdateDeploymentStrategyRequest,
1451
- () => DeploymentStrategy,
1457
+ () => UpdateDeploymentStrategyRequest$,
1458
+ () => DeploymentStrategy$,
1452
1459
  ];
1453
- var UpdateEnvironment = [
1460
+ var UpdateEnvironment$ = [
1454
1461
  9,
1455
1462
  n0,
1456
1463
  _UE,
1457
1464
  { [_h]: ["PATCH", "/applications/{ApplicationId}/environments/{EnvironmentId}", 200] },
1458
- () => UpdateEnvironmentRequest,
1459
- () => Environment,
1465
+ () => UpdateEnvironmentRequest$,
1466
+ () => Environment$,
1460
1467
  ];
1461
- var UpdateExtension = [
1468
+ var UpdateExtension$ = [
1462
1469
  9,
1463
1470
  n0,
1464
1471
  _UEp,
1465
1472
  { [_h]: ["PATCH", "/extensions/{ExtensionIdentifier}", 200] },
1466
- () => UpdateExtensionRequest,
1467
- () => Extension,
1473
+ () => UpdateExtensionRequest$,
1474
+ () => Extension$,
1468
1475
  ];
1469
- var UpdateExtensionAssociation = [
1476
+ var UpdateExtensionAssociation$ = [
1470
1477
  9,
1471
1478
  n0,
1472
1479
  _UEA,
1473
1480
  { [_h]: ["PATCH", "/extensionassociations/{ExtensionAssociationId}", 200] },
1474
- () => UpdateExtensionAssociationRequest,
1475
- () => ExtensionAssociation,
1481
+ () => UpdateExtensionAssociationRequest$,
1482
+ () => ExtensionAssociation$,
1476
1483
  ];
1477
- var ValidateConfiguration = [
1484
+ var ValidateConfiguration$ = [
1478
1485
  9,
1479
1486
  n0,
1480
1487
  _VC,
1481
1488
  { [_h]: ["POST", "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/validators", 204] },
1482
- () => ValidateConfigurationRequest,
1489
+ () => ValidateConfigurationRequest$,
1483
1490
  () => __Unit,
1484
1491
  ];
1485
1492
 
@@ -1491,7 +1498,7 @@ class CreateApplicationCommand extends smithyClient.Command
1491
1498
  })
1492
1499
  .s("AmazonAppConfig", "CreateApplication", {})
1493
1500
  .n("AppConfigClient", "CreateApplicationCommand")
1494
- .sc(CreateApplication)
1501
+ .sc(CreateApplication$)
1495
1502
  .build() {
1496
1503
  }
1497
1504
 
@@ -1503,7 +1510,7 @@ class CreateConfigurationProfileCommand extends smithyClient.Command
1503
1510
  })
1504
1511
  .s("AmazonAppConfig", "CreateConfigurationProfile", {})
1505
1512
  .n("AppConfigClient", "CreateConfigurationProfileCommand")
1506
- .sc(CreateConfigurationProfile)
1513
+ .sc(CreateConfigurationProfile$)
1507
1514
  .build() {
1508
1515
  }
1509
1516
 
@@ -1515,7 +1522,7 @@ class CreateDeploymentStrategyCommand extends smithyClient.Command
1515
1522
  })
1516
1523
  .s("AmazonAppConfig", "CreateDeploymentStrategy", {})
1517
1524
  .n("AppConfigClient", "CreateDeploymentStrategyCommand")
1518
- .sc(CreateDeploymentStrategy)
1525
+ .sc(CreateDeploymentStrategy$)
1519
1526
  .build() {
1520
1527
  }
1521
1528
 
@@ -1527,7 +1534,7 @@ class CreateEnvironmentCommand extends smithyClient.Command
1527
1534
  })
1528
1535
  .s("AmazonAppConfig", "CreateEnvironment", {})
1529
1536
  .n("AppConfigClient", "CreateEnvironmentCommand")
1530
- .sc(CreateEnvironment)
1537
+ .sc(CreateEnvironment$)
1531
1538
  .build() {
1532
1539
  }
1533
1540
 
@@ -1539,7 +1546,7 @@ class CreateExtensionAssociationCommand extends smithyClient.Command
1539
1546
  })
1540
1547
  .s("AmazonAppConfig", "CreateExtensionAssociation", {})
1541
1548
  .n("AppConfigClient", "CreateExtensionAssociationCommand")
1542
- .sc(CreateExtensionAssociation)
1549
+ .sc(CreateExtensionAssociation$)
1543
1550
  .build() {
1544
1551
  }
1545
1552
 
@@ -1551,7 +1558,7 @@ class CreateExtensionCommand extends smithyClient.Command
1551
1558
  })
1552
1559
  .s("AmazonAppConfig", "CreateExtension", {})
1553
1560
  .n("AppConfigClient", "CreateExtensionCommand")
1554
- .sc(CreateExtension)
1561
+ .sc(CreateExtension$)
1555
1562
  .build() {
1556
1563
  }
1557
1564
 
@@ -1563,7 +1570,7 @@ class CreateHostedConfigurationVersionCommand extends smithyClient.Command
1563
1570
  })
1564
1571
  .s("AmazonAppConfig", "CreateHostedConfigurationVersion", {})
1565
1572
  .n("AppConfigClient", "CreateHostedConfigurationVersionCommand")
1566
- .sc(CreateHostedConfigurationVersion)
1573
+ .sc(CreateHostedConfigurationVersion$)
1567
1574
  .build() {
1568
1575
  }
1569
1576
 
@@ -1575,7 +1582,7 @@ class DeleteApplicationCommand extends smithyClient.Command
1575
1582
  })
1576
1583
  .s("AmazonAppConfig", "DeleteApplication", {})
1577
1584
  .n("AppConfigClient", "DeleteApplicationCommand")
1578
- .sc(DeleteApplication)
1585
+ .sc(DeleteApplication$)
1579
1586
  .build() {
1580
1587
  }
1581
1588
 
@@ -1587,7 +1594,7 @@ class DeleteConfigurationProfileCommand extends smithyClient.Command
1587
1594
  })
1588
1595
  .s("AmazonAppConfig", "DeleteConfigurationProfile", {})
1589
1596
  .n("AppConfigClient", "DeleteConfigurationProfileCommand")
1590
- .sc(DeleteConfigurationProfile)
1597
+ .sc(DeleteConfigurationProfile$)
1591
1598
  .build() {
1592
1599
  }
1593
1600
 
@@ -1599,7 +1606,7 @@ class DeleteDeploymentStrategyCommand extends smithyClient.Command
1599
1606
  })
1600
1607
  .s("AmazonAppConfig", "DeleteDeploymentStrategy", {})
1601
1608
  .n("AppConfigClient", "DeleteDeploymentStrategyCommand")
1602
- .sc(DeleteDeploymentStrategy)
1609
+ .sc(DeleteDeploymentStrategy$)
1603
1610
  .build() {
1604
1611
  }
1605
1612
 
@@ -1611,7 +1618,7 @@ class DeleteEnvironmentCommand extends smithyClient.Command
1611
1618
  })
1612
1619
  .s("AmazonAppConfig", "DeleteEnvironment", {})
1613
1620
  .n("AppConfigClient", "DeleteEnvironmentCommand")
1614
- .sc(DeleteEnvironment)
1621
+ .sc(DeleteEnvironment$)
1615
1622
  .build() {
1616
1623
  }
1617
1624
 
@@ -1623,7 +1630,7 @@ class DeleteExtensionAssociationCommand extends smithyClient.Command
1623
1630
  })
1624
1631
  .s("AmazonAppConfig", "DeleteExtensionAssociation", {})
1625
1632
  .n("AppConfigClient", "DeleteExtensionAssociationCommand")
1626
- .sc(DeleteExtensionAssociation)
1633
+ .sc(DeleteExtensionAssociation$)
1627
1634
  .build() {
1628
1635
  }
1629
1636
 
@@ -1635,7 +1642,7 @@ class DeleteExtensionCommand extends smithyClient.Command
1635
1642
  })
1636
1643
  .s("AmazonAppConfig", "DeleteExtension", {})
1637
1644
  .n("AppConfigClient", "DeleteExtensionCommand")
1638
- .sc(DeleteExtension)
1645
+ .sc(DeleteExtension$)
1639
1646
  .build() {
1640
1647
  }
1641
1648
 
@@ -1647,7 +1654,7 @@ class DeleteHostedConfigurationVersionCommand extends smithyClient.Command
1647
1654
  })
1648
1655
  .s("AmazonAppConfig", "DeleteHostedConfigurationVersion", {})
1649
1656
  .n("AppConfigClient", "DeleteHostedConfigurationVersionCommand")
1650
- .sc(DeleteHostedConfigurationVersion)
1657
+ .sc(DeleteHostedConfigurationVersion$)
1651
1658
  .build() {
1652
1659
  }
1653
1660
 
@@ -1659,7 +1666,7 @@ class GetAccountSettingsCommand extends smithyClient.Command
1659
1666
  })
1660
1667
  .s("AmazonAppConfig", "GetAccountSettings", {})
1661
1668
  .n("AppConfigClient", "GetAccountSettingsCommand")
1662
- .sc(GetAccountSettings)
1669
+ .sc(GetAccountSettings$)
1663
1670
  .build() {
1664
1671
  }
1665
1672
 
@@ -1671,7 +1678,7 @@ class GetApplicationCommand extends smithyClient.Command
1671
1678
  })
1672
1679
  .s("AmazonAppConfig", "GetApplication", {})
1673
1680
  .n("AppConfigClient", "GetApplicationCommand")
1674
- .sc(GetApplication)
1681
+ .sc(GetApplication$)
1675
1682
  .build() {
1676
1683
  }
1677
1684
 
@@ -1683,7 +1690,7 @@ class GetConfigurationCommand extends smithyClient.Command
1683
1690
  })
1684
1691
  .s("AmazonAppConfig", "GetConfiguration", {})
1685
1692
  .n("AppConfigClient", "GetConfigurationCommand")
1686
- .sc(GetConfiguration)
1693
+ .sc(GetConfiguration$)
1687
1694
  .build() {
1688
1695
  }
1689
1696
 
@@ -1695,7 +1702,7 @@ class GetConfigurationProfileCommand extends smithyClient.Command
1695
1702
  })
1696
1703
  .s("AmazonAppConfig", "GetConfigurationProfile", {})
1697
1704
  .n("AppConfigClient", "GetConfigurationProfileCommand")
1698
- .sc(GetConfigurationProfile)
1705
+ .sc(GetConfigurationProfile$)
1699
1706
  .build() {
1700
1707
  }
1701
1708
 
@@ -1707,7 +1714,7 @@ class GetDeploymentCommand extends smithyClient.Command
1707
1714
  })
1708
1715
  .s("AmazonAppConfig", "GetDeployment", {})
1709
1716
  .n("AppConfigClient", "GetDeploymentCommand")
1710
- .sc(GetDeployment)
1717
+ .sc(GetDeployment$)
1711
1718
  .build() {
1712
1719
  }
1713
1720
 
@@ -1719,7 +1726,7 @@ class GetDeploymentStrategyCommand extends smithyClient.Command
1719
1726
  })
1720
1727
  .s("AmazonAppConfig", "GetDeploymentStrategy", {})
1721
1728
  .n("AppConfigClient", "GetDeploymentStrategyCommand")
1722
- .sc(GetDeploymentStrategy)
1729
+ .sc(GetDeploymentStrategy$)
1723
1730
  .build() {
1724
1731
  }
1725
1732
 
@@ -1731,7 +1738,7 @@ class GetEnvironmentCommand extends smithyClient.Command
1731
1738
  })
1732
1739
  .s("AmazonAppConfig", "GetEnvironment", {})
1733
1740
  .n("AppConfigClient", "GetEnvironmentCommand")
1734
- .sc(GetEnvironment)
1741
+ .sc(GetEnvironment$)
1735
1742
  .build() {
1736
1743
  }
1737
1744
 
@@ -1743,7 +1750,7 @@ class GetExtensionAssociationCommand extends smithyClient.Command
1743
1750
  })
1744
1751
  .s("AmazonAppConfig", "GetExtensionAssociation", {})
1745
1752
  .n("AppConfigClient", "GetExtensionAssociationCommand")
1746
- .sc(GetExtensionAssociation)
1753
+ .sc(GetExtensionAssociation$)
1747
1754
  .build() {
1748
1755
  }
1749
1756
 
@@ -1755,7 +1762,7 @@ class GetExtensionCommand extends smithyClient.Command
1755
1762
  })
1756
1763
  .s("AmazonAppConfig", "GetExtension", {})
1757
1764
  .n("AppConfigClient", "GetExtensionCommand")
1758
- .sc(GetExtension)
1765
+ .sc(GetExtension$)
1759
1766
  .build() {
1760
1767
  }
1761
1768
 
@@ -1767,7 +1774,7 @@ class GetHostedConfigurationVersionCommand extends smithyClient.Command
1767
1774
  })
1768
1775
  .s("AmazonAppConfig", "GetHostedConfigurationVersion", {})
1769
1776
  .n("AppConfigClient", "GetHostedConfigurationVersionCommand")
1770
- .sc(GetHostedConfigurationVersion)
1777
+ .sc(GetHostedConfigurationVersion$)
1771
1778
  .build() {
1772
1779
  }
1773
1780
 
@@ -1779,7 +1786,7 @@ class ListApplicationsCommand extends smithyClient.Command
1779
1786
  })
1780
1787
  .s("AmazonAppConfig", "ListApplications", {})
1781
1788
  .n("AppConfigClient", "ListApplicationsCommand")
1782
- .sc(ListApplications)
1789
+ .sc(ListApplications$)
1783
1790
  .build() {
1784
1791
  }
1785
1792
 
@@ -1791,7 +1798,7 @@ class ListConfigurationProfilesCommand extends smithyClient.Command
1791
1798
  })
1792
1799
  .s("AmazonAppConfig", "ListConfigurationProfiles", {})
1793
1800
  .n("AppConfigClient", "ListConfigurationProfilesCommand")
1794
- .sc(ListConfigurationProfiles)
1801
+ .sc(ListConfigurationProfiles$)
1795
1802
  .build() {
1796
1803
  }
1797
1804
 
@@ -1803,7 +1810,7 @@ class ListDeploymentsCommand extends smithyClient.Command
1803
1810
  })
1804
1811
  .s("AmazonAppConfig", "ListDeployments", {})
1805
1812
  .n("AppConfigClient", "ListDeploymentsCommand")
1806
- .sc(ListDeployments)
1813
+ .sc(ListDeployments$)
1807
1814
  .build() {
1808
1815
  }
1809
1816
 
@@ -1815,7 +1822,7 @@ class ListDeploymentStrategiesCommand extends smithyClient.Command
1815
1822
  })
1816
1823
  .s("AmazonAppConfig", "ListDeploymentStrategies", {})
1817
1824
  .n("AppConfigClient", "ListDeploymentStrategiesCommand")
1818
- .sc(ListDeploymentStrategies)
1825
+ .sc(ListDeploymentStrategies$)
1819
1826
  .build() {
1820
1827
  }
1821
1828
 
@@ -1827,7 +1834,7 @@ class ListEnvironmentsCommand extends smithyClient.Command
1827
1834
  })
1828
1835
  .s("AmazonAppConfig", "ListEnvironments", {})
1829
1836
  .n("AppConfigClient", "ListEnvironmentsCommand")
1830
- .sc(ListEnvironments)
1837
+ .sc(ListEnvironments$)
1831
1838
  .build() {
1832
1839
  }
1833
1840
 
@@ -1839,7 +1846,7 @@ class ListExtensionAssociationsCommand extends smithyClient.Command
1839
1846
  })
1840
1847
  .s("AmazonAppConfig", "ListExtensionAssociations", {})
1841
1848
  .n("AppConfigClient", "ListExtensionAssociationsCommand")
1842
- .sc(ListExtensionAssociations)
1849
+ .sc(ListExtensionAssociations$)
1843
1850
  .build() {
1844
1851
  }
1845
1852
 
@@ -1851,7 +1858,7 @@ class ListExtensionsCommand extends smithyClient.Command
1851
1858
  })
1852
1859
  .s("AmazonAppConfig", "ListExtensions", {})
1853
1860
  .n("AppConfigClient", "ListExtensionsCommand")
1854
- .sc(ListExtensions)
1861
+ .sc(ListExtensions$)
1855
1862
  .build() {
1856
1863
  }
1857
1864
 
@@ -1863,7 +1870,7 @@ class ListHostedConfigurationVersionsCommand extends smithyClient.Command
1863
1870
  })
1864
1871
  .s("AmazonAppConfig", "ListHostedConfigurationVersions", {})
1865
1872
  .n("AppConfigClient", "ListHostedConfigurationVersionsCommand")
1866
- .sc(ListHostedConfigurationVersions)
1873
+ .sc(ListHostedConfigurationVersions$)
1867
1874
  .build() {
1868
1875
  }
1869
1876
 
@@ -1875,7 +1882,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1875
1882
  })
1876
1883
  .s("AmazonAppConfig", "ListTagsForResource", {})
1877
1884
  .n("AppConfigClient", "ListTagsForResourceCommand")
1878
- .sc(ListTagsForResource)
1885
+ .sc(ListTagsForResource$)
1879
1886
  .build() {
1880
1887
  }
1881
1888
 
@@ -1887,7 +1894,7 @@ class StartDeploymentCommand extends smithyClient.Command
1887
1894
  })
1888
1895
  .s("AmazonAppConfig", "StartDeployment", {})
1889
1896
  .n("AppConfigClient", "StartDeploymentCommand")
1890
- .sc(StartDeployment)
1897
+ .sc(StartDeployment$)
1891
1898
  .build() {
1892
1899
  }
1893
1900
 
@@ -1899,7 +1906,7 @@ class StopDeploymentCommand extends smithyClient.Command
1899
1906
  })
1900
1907
  .s("AmazonAppConfig", "StopDeployment", {})
1901
1908
  .n("AppConfigClient", "StopDeploymentCommand")
1902
- .sc(StopDeployment)
1909
+ .sc(StopDeployment$)
1903
1910
  .build() {
1904
1911
  }
1905
1912
 
@@ -1911,7 +1918,7 @@ class TagResourceCommand extends smithyClient.Command
1911
1918
  })
1912
1919
  .s("AmazonAppConfig", "TagResource", {})
1913
1920
  .n("AppConfigClient", "TagResourceCommand")
1914
- .sc(TagResource)
1921
+ .sc(TagResource$)
1915
1922
  .build() {
1916
1923
  }
1917
1924
 
@@ -1923,7 +1930,7 @@ class UntagResourceCommand extends smithyClient.Command
1923
1930
  })
1924
1931
  .s("AmazonAppConfig", "UntagResource", {})
1925
1932
  .n("AppConfigClient", "UntagResourceCommand")
1926
- .sc(UntagResource)
1933
+ .sc(UntagResource$)
1927
1934
  .build() {
1928
1935
  }
1929
1936
 
@@ -1935,7 +1942,7 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
1935
1942
  })
1936
1943
  .s("AmazonAppConfig", "UpdateAccountSettings", {})
1937
1944
  .n("AppConfigClient", "UpdateAccountSettingsCommand")
1938
- .sc(UpdateAccountSettings)
1945
+ .sc(UpdateAccountSettings$)
1939
1946
  .build() {
1940
1947
  }
1941
1948
 
@@ -1947,7 +1954,7 @@ class UpdateApplicationCommand extends smithyClient.Command
1947
1954
  })
1948
1955
  .s("AmazonAppConfig", "UpdateApplication", {})
1949
1956
  .n("AppConfigClient", "UpdateApplicationCommand")
1950
- .sc(UpdateApplication)
1957
+ .sc(UpdateApplication$)
1951
1958
  .build() {
1952
1959
  }
1953
1960
 
@@ -1959,7 +1966,7 @@ class UpdateConfigurationProfileCommand extends smithyClient.Command
1959
1966
  })
1960
1967
  .s("AmazonAppConfig", "UpdateConfigurationProfile", {})
1961
1968
  .n("AppConfigClient", "UpdateConfigurationProfileCommand")
1962
- .sc(UpdateConfigurationProfile)
1969
+ .sc(UpdateConfigurationProfile$)
1963
1970
  .build() {
1964
1971
  }
1965
1972
 
@@ -1971,7 +1978,7 @@ class UpdateDeploymentStrategyCommand extends smithyClient.Command
1971
1978
  })
1972
1979
  .s("AmazonAppConfig", "UpdateDeploymentStrategy", {})
1973
1980
  .n("AppConfigClient", "UpdateDeploymentStrategyCommand")
1974
- .sc(UpdateDeploymentStrategy)
1981
+ .sc(UpdateDeploymentStrategy$)
1975
1982
  .build() {
1976
1983
  }
1977
1984
 
@@ -1983,7 +1990,7 @@ class UpdateEnvironmentCommand extends smithyClient.Command
1983
1990
  })
1984
1991
  .s("AmazonAppConfig", "UpdateEnvironment", {})
1985
1992
  .n("AppConfigClient", "UpdateEnvironmentCommand")
1986
- .sc(UpdateEnvironment)
1993
+ .sc(UpdateEnvironment$)
1987
1994
  .build() {
1988
1995
  }
1989
1996
 
@@ -1995,7 +2002,7 @@ class UpdateExtensionAssociationCommand extends smithyClient.Command
1995
2002
  })
1996
2003
  .s("AmazonAppConfig", "UpdateExtensionAssociation", {})
1997
2004
  .n("AppConfigClient", "UpdateExtensionAssociationCommand")
1998
- .sc(UpdateExtensionAssociation)
2005
+ .sc(UpdateExtensionAssociation$)
1999
2006
  .build() {
2000
2007
  }
2001
2008
 
@@ -2007,7 +2014,7 @@ class UpdateExtensionCommand extends smithyClient.Command
2007
2014
  })
2008
2015
  .s("AmazonAppConfig", "UpdateExtension", {})
2009
2016
  .n("AppConfigClient", "UpdateExtensionCommand")
2010
- .sc(UpdateExtension)
2017
+ .sc(UpdateExtension$)
2011
2018
  .build() {
2012
2019
  }
2013
2020
 
@@ -2019,7 +2026,7 @@ class ValidateConfigurationCommand extends smithyClient.Command
2019
2026
  })
2020
2027
  .s("AmazonAppConfig", "ValidateConfiguration", {})
2021
2028
  .n("AppConfigClient", "ValidateConfigurationCommand")
2022
- .sc(ValidateConfiguration)
2029
+ .sc(ValidateConfiguration$)
2023
2030
  .build() {
2024
2031
  }
2025
2032
 
@@ -2259,70 +2266,200 @@ Object.defineProperty(exports, "__Client", {
2259
2266
  enumerable: true,
2260
2267
  get: function () { return smithyClient.Client; }
2261
2268
  });
2269
+ exports.AccountSettings$ = AccountSettings$;
2270
+ exports.Action$ = Action$;
2271
+ exports.ActionInvocation$ = ActionInvocation$;
2262
2272
  exports.ActionPoint = ActionPoint;
2263
2273
  exports.AppConfig = AppConfig;
2264
2274
  exports.AppConfigClient = AppConfigClient;
2265
- exports.AppConfigServiceException = AppConfigServiceException$1;
2266
- exports.BadRequestException = BadRequestException$1;
2275
+ exports.AppConfigServiceException = AppConfigServiceException;
2276
+ exports.AppConfigServiceException$ = AppConfigServiceException$;
2277
+ exports.Application$ = Application$;
2278
+ exports.Applications$ = Applications$;
2279
+ exports.AppliedExtension$ = AppliedExtension$;
2280
+ exports.BadRequestDetails$ = BadRequestDetails$;
2281
+ exports.BadRequestException = BadRequestException;
2282
+ exports.BadRequestException$ = BadRequestException$;
2267
2283
  exports.BadRequestReason = BadRequestReason;
2268
2284
  exports.BytesMeasure = BytesMeasure;
2269
- exports.ConflictException = ConflictException$1;
2285
+ exports.Configuration$ = Configuration$;
2286
+ exports.ConfigurationProfile$ = ConfigurationProfile$;
2287
+ exports.ConfigurationProfileSummary$ = ConfigurationProfileSummary$;
2288
+ exports.ConfigurationProfiles$ = ConfigurationProfiles$;
2289
+ exports.ConflictException = ConflictException;
2290
+ exports.ConflictException$ = ConflictException$;
2291
+ exports.CreateApplication$ = CreateApplication$;
2270
2292
  exports.CreateApplicationCommand = CreateApplicationCommand;
2293
+ exports.CreateApplicationRequest$ = CreateApplicationRequest$;
2294
+ exports.CreateConfigurationProfile$ = CreateConfigurationProfile$;
2271
2295
  exports.CreateConfigurationProfileCommand = CreateConfigurationProfileCommand;
2296
+ exports.CreateConfigurationProfileRequest$ = CreateConfigurationProfileRequest$;
2297
+ exports.CreateDeploymentStrategy$ = CreateDeploymentStrategy$;
2272
2298
  exports.CreateDeploymentStrategyCommand = CreateDeploymentStrategyCommand;
2299
+ exports.CreateDeploymentStrategyRequest$ = CreateDeploymentStrategyRequest$;
2300
+ exports.CreateEnvironment$ = CreateEnvironment$;
2273
2301
  exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
2302
+ exports.CreateEnvironmentRequest$ = CreateEnvironmentRequest$;
2303
+ exports.CreateExtension$ = CreateExtension$;
2304
+ exports.CreateExtensionAssociation$ = CreateExtensionAssociation$;
2274
2305
  exports.CreateExtensionAssociationCommand = CreateExtensionAssociationCommand;
2306
+ exports.CreateExtensionAssociationRequest$ = CreateExtensionAssociationRequest$;
2275
2307
  exports.CreateExtensionCommand = CreateExtensionCommand;
2308
+ exports.CreateExtensionRequest$ = CreateExtensionRequest$;
2309
+ exports.CreateHostedConfigurationVersion$ = CreateHostedConfigurationVersion$;
2276
2310
  exports.CreateHostedConfigurationVersionCommand = CreateHostedConfigurationVersionCommand;
2311
+ exports.CreateHostedConfigurationVersionRequest$ = CreateHostedConfigurationVersionRequest$;
2312
+ exports.DeleteApplication$ = DeleteApplication$;
2277
2313
  exports.DeleteApplicationCommand = DeleteApplicationCommand;
2314
+ exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
2315
+ exports.DeleteConfigurationProfile$ = DeleteConfigurationProfile$;
2278
2316
  exports.DeleteConfigurationProfileCommand = DeleteConfigurationProfileCommand;
2317
+ exports.DeleteConfigurationProfileRequest$ = DeleteConfigurationProfileRequest$;
2318
+ exports.DeleteDeploymentStrategy$ = DeleteDeploymentStrategy$;
2279
2319
  exports.DeleteDeploymentStrategyCommand = DeleteDeploymentStrategyCommand;
2320
+ exports.DeleteDeploymentStrategyRequest$ = DeleteDeploymentStrategyRequest$;
2321
+ exports.DeleteEnvironment$ = DeleteEnvironment$;
2280
2322
  exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
2323
+ exports.DeleteEnvironmentRequest$ = DeleteEnvironmentRequest$;
2324
+ exports.DeleteExtension$ = DeleteExtension$;
2325
+ exports.DeleteExtensionAssociation$ = DeleteExtensionAssociation$;
2281
2326
  exports.DeleteExtensionAssociationCommand = DeleteExtensionAssociationCommand;
2327
+ exports.DeleteExtensionAssociationRequest$ = DeleteExtensionAssociationRequest$;
2282
2328
  exports.DeleteExtensionCommand = DeleteExtensionCommand;
2329
+ exports.DeleteExtensionRequest$ = DeleteExtensionRequest$;
2330
+ exports.DeleteHostedConfigurationVersion$ = DeleteHostedConfigurationVersion$;
2283
2331
  exports.DeleteHostedConfigurationVersionCommand = DeleteHostedConfigurationVersionCommand;
2332
+ exports.DeleteHostedConfigurationVersionRequest$ = DeleteHostedConfigurationVersionRequest$;
2284
2333
  exports.DeletionProtectionCheck = DeletionProtectionCheck;
2334
+ exports.DeletionProtectionSettings$ = DeletionProtectionSettings$;
2335
+ exports.Deployment$ = Deployment$;
2336
+ exports.DeploymentEvent$ = DeploymentEvent$;
2285
2337
  exports.DeploymentEventType = DeploymentEventType;
2286
2338
  exports.DeploymentState = DeploymentState;
2339
+ exports.DeploymentStrategies$ = DeploymentStrategies$;
2340
+ exports.DeploymentStrategy$ = DeploymentStrategy$;
2341
+ exports.DeploymentSummary$ = DeploymentSummary$;
2342
+ exports.Deployments$ = Deployments$;
2343
+ exports.Environment$ = Environment$;
2287
2344
  exports.EnvironmentState = EnvironmentState;
2345
+ exports.Environments$ = Environments$;
2346
+ exports.Extension$ = Extension$;
2347
+ exports.ExtensionAssociation$ = ExtensionAssociation$;
2348
+ exports.ExtensionAssociationSummary$ = ExtensionAssociationSummary$;
2349
+ exports.ExtensionAssociations$ = ExtensionAssociations$;
2350
+ exports.ExtensionSummary$ = ExtensionSummary$;
2351
+ exports.Extensions$ = Extensions$;
2352
+ exports.GetAccountSettings$ = GetAccountSettings$;
2288
2353
  exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
2354
+ exports.GetApplication$ = GetApplication$;
2289
2355
  exports.GetApplicationCommand = GetApplicationCommand;
2356
+ exports.GetApplicationRequest$ = GetApplicationRequest$;
2357
+ exports.GetConfiguration$ = GetConfiguration$;
2290
2358
  exports.GetConfigurationCommand = GetConfigurationCommand;
2359
+ exports.GetConfigurationProfile$ = GetConfigurationProfile$;
2291
2360
  exports.GetConfigurationProfileCommand = GetConfigurationProfileCommand;
2361
+ exports.GetConfigurationProfileRequest$ = GetConfigurationProfileRequest$;
2362
+ exports.GetConfigurationRequest$ = GetConfigurationRequest$;
2363
+ exports.GetDeployment$ = GetDeployment$;
2292
2364
  exports.GetDeploymentCommand = GetDeploymentCommand;
2365
+ exports.GetDeploymentRequest$ = GetDeploymentRequest$;
2366
+ exports.GetDeploymentStrategy$ = GetDeploymentStrategy$;
2293
2367
  exports.GetDeploymentStrategyCommand = GetDeploymentStrategyCommand;
2368
+ exports.GetDeploymentStrategyRequest$ = GetDeploymentStrategyRequest$;
2369
+ exports.GetEnvironment$ = GetEnvironment$;
2294
2370
  exports.GetEnvironmentCommand = GetEnvironmentCommand;
2371
+ exports.GetEnvironmentRequest$ = GetEnvironmentRequest$;
2372
+ exports.GetExtension$ = GetExtension$;
2373
+ exports.GetExtensionAssociation$ = GetExtensionAssociation$;
2295
2374
  exports.GetExtensionAssociationCommand = GetExtensionAssociationCommand;
2375
+ exports.GetExtensionAssociationRequest$ = GetExtensionAssociationRequest$;
2296
2376
  exports.GetExtensionCommand = GetExtensionCommand;
2377
+ exports.GetExtensionRequest$ = GetExtensionRequest$;
2378
+ exports.GetHostedConfigurationVersion$ = GetHostedConfigurationVersion$;
2297
2379
  exports.GetHostedConfigurationVersionCommand = GetHostedConfigurationVersionCommand;
2380
+ exports.GetHostedConfigurationVersionRequest$ = GetHostedConfigurationVersionRequest$;
2298
2381
  exports.GrowthType = GrowthType;
2299
- exports.InternalServerException = InternalServerException$1;
2382
+ exports.HostedConfigurationVersion$ = HostedConfigurationVersion$;
2383
+ exports.HostedConfigurationVersionSummary$ = HostedConfigurationVersionSummary$;
2384
+ exports.HostedConfigurationVersions$ = HostedConfigurationVersions$;
2385
+ exports.InternalServerException = InternalServerException;
2386
+ exports.InternalServerException$ = InternalServerException$;
2387
+ exports.InvalidConfigurationDetail$ = InvalidConfigurationDetail$;
2388
+ exports.ListApplications$ = ListApplications$;
2300
2389
  exports.ListApplicationsCommand = ListApplicationsCommand;
2390
+ exports.ListApplicationsRequest$ = ListApplicationsRequest$;
2391
+ exports.ListConfigurationProfiles$ = ListConfigurationProfiles$;
2301
2392
  exports.ListConfigurationProfilesCommand = ListConfigurationProfilesCommand;
2393
+ exports.ListConfigurationProfilesRequest$ = ListConfigurationProfilesRequest$;
2394
+ exports.ListDeploymentStrategies$ = ListDeploymentStrategies$;
2302
2395
  exports.ListDeploymentStrategiesCommand = ListDeploymentStrategiesCommand;
2396
+ exports.ListDeploymentStrategiesRequest$ = ListDeploymentStrategiesRequest$;
2397
+ exports.ListDeployments$ = ListDeployments$;
2303
2398
  exports.ListDeploymentsCommand = ListDeploymentsCommand;
2399
+ exports.ListDeploymentsRequest$ = ListDeploymentsRequest$;
2400
+ exports.ListEnvironments$ = ListEnvironments$;
2304
2401
  exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
2402
+ exports.ListEnvironmentsRequest$ = ListEnvironmentsRequest$;
2403
+ exports.ListExtensionAssociations$ = ListExtensionAssociations$;
2305
2404
  exports.ListExtensionAssociationsCommand = ListExtensionAssociationsCommand;
2405
+ exports.ListExtensionAssociationsRequest$ = ListExtensionAssociationsRequest$;
2406
+ exports.ListExtensions$ = ListExtensions$;
2306
2407
  exports.ListExtensionsCommand = ListExtensionsCommand;
2408
+ exports.ListExtensionsRequest$ = ListExtensionsRequest$;
2409
+ exports.ListHostedConfigurationVersions$ = ListHostedConfigurationVersions$;
2307
2410
  exports.ListHostedConfigurationVersionsCommand = ListHostedConfigurationVersionsCommand;
2411
+ exports.ListHostedConfigurationVersionsRequest$ = ListHostedConfigurationVersionsRequest$;
2412
+ exports.ListTagsForResource$ = ListTagsForResource$;
2308
2413
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2309
- exports.PayloadTooLargeException = PayloadTooLargeException$1;
2414
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2415
+ exports.Monitor$ = Monitor$;
2416
+ exports.Parameter$ = Parameter$;
2417
+ exports.PayloadTooLargeException = PayloadTooLargeException;
2418
+ exports.PayloadTooLargeException$ = PayloadTooLargeException$;
2310
2419
  exports.ReplicateTo = ReplicateTo;
2311
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2312
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2420
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2421
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2422
+ exports.ResourceTags$ = ResourceTags$;
2423
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2424
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2425
+ exports.StartDeployment$ = StartDeployment$;
2313
2426
  exports.StartDeploymentCommand = StartDeploymentCommand;
2427
+ exports.StartDeploymentRequest$ = StartDeploymentRequest$;
2428
+ exports.StopDeployment$ = StopDeployment$;
2314
2429
  exports.StopDeploymentCommand = StopDeploymentCommand;
2430
+ exports.StopDeploymentRequest$ = StopDeploymentRequest$;
2431
+ exports.TagResource$ = TagResource$;
2315
2432
  exports.TagResourceCommand = TagResourceCommand;
2433
+ exports.TagResourceRequest$ = TagResourceRequest$;
2316
2434
  exports.TriggeredBy = TriggeredBy;
2435
+ exports.UntagResource$ = UntagResource$;
2317
2436
  exports.UntagResourceCommand = UntagResourceCommand;
2437
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2438
+ exports.UpdateAccountSettings$ = UpdateAccountSettings$;
2318
2439
  exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
2440
+ exports.UpdateAccountSettingsRequest$ = UpdateAccountSettingsRequest$;
2441
+ exports.UpdateApplication$ = UpdateApplication$;
2319
2442
  exports.UpdateApplicationCommand = UpdateApplicationCommand;
2443
+ exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
2444
+ exports.UpdateConfigurationProfile$ = UpdateConfigurationProfile$;
2320
2445
  exports.UpdateConfigurationProfileCommand = UpdateConfigurationProfileCommand;
2446
+ exports.UpdateConfigurationProfileRequest$ = UpdateConfigurationProfileRequest$;
2447
+ exports.UpdateDeploymentStrategy$ = UpdateDeploymentStrategy$;
2321
2448
  exports.UpdateDeploymentStrategyCommand = UpdateDeploymentStrategyCommand;
2449
+ exports.UpdateDeploymentStrategyRequest$ = UpdateDeploymentStrategyRequest$;
2450
+ exports.UpdateEnvironment$ = UpdateEnvironment$;
2322
2451
  exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
2452
+ exports.UpdateEnvironmentRequest$ = UpdateEnvironmentRequest$;
2453
+ exports.UpdateExtension$ = UpdateExtension$;
2454
+ exports.UpdateExtensionAssociation$ = UpdateExtensionAssociation$;
2323
2455
  exports.UpdateExtensionAssociationCommand = UpdateExtensionAssociationCommand;
2456
+ exports.UpdateExtensionAssociationRequest$ = UpdateExtensionAssociationRequest$;
2324
2457
  exports.UpdateExtensionCommand = UpdateExtensionCommand;
2458
+ exports.UpdateExtensionRequest$ = UpdateExtensionRequest$;
2459
+ exports.ValidateConfiguration$ = ValidateConfiguration$;
2325
2460
  exports.ValidateConfigurationCommand = ValidateConfigurationCommand;
2461
+ exports.ValidateConfigurationRequest$ = ValidateConfigurationRequest$;
2462
+ exports.Validator$ = Validator$;
2326
2463
  exports.ValidatorType = ValidatorType;
2327
2464
  exports.paginateListApplications = paginateListApplications;
2328
2465
  exports.paginateListConfigurationProfiles = paginateListConfigurationProfiles;