@aws-sdk/client-acm-pca 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 (43) hide show
  1. package/dist-cjs/index.js +378 -254
  2. package/dist-cjs/runtimeConfig.shared.js +5 -6
  3. package/dist-es/commands/CreateCertificateAuthorityAuditReportCommand.js +2 -2
  4. package/dist-es/commands/CreateCertificateAuthorityCommand.js +2 -2
  5. package/dist-es/commands/CreatePermissionCommand.js +2 -2
  6. package/dist-es/commands/DeleteCertificateAuthorityCommand.js +2 -2
  7. package/dist-es/commands/DeletePermissionCommand.js +2 -2
  8. package/dist-es/commands/DeletePolicyCommand.js +2 -2
  9. package/dist-es/commands/DescribeCertificateAuthorityAuditReportCommand.js +2 -2
  10. package/dist-es/commands/DescribeCertificateAuthorityCommand.js +2 -2
  11. package/dist-es/commands/GetCertificateAuthorityCertificateCommand.js +2 -2
  12. package/dist-es/commands/GetCertificateAuthorityCsrCommand.js +2 -2
  13. package/dist-es/commands/GetCertificateCommand.js +2 -2
  14. package/dist-es/commands/GetPolicyCommand.js +2 -2
  15. package/dist-es/commands/ImportCertificateAuthorityCertificateCommand.js +2 -2
  16. package/dist-es/commands/IssueCertificateCommand.js +2 -2
  17. package/dist-es/commands/ListCertificateAuthoritiesCommand.js +2 -2
  18. package/dist-es/commands/ListPermissionsCommand.js +2 -2
  19. package/dist-es/commands/ListTagsCommand.js +2 -2
  20. package/dist-es/commands/PutPolicyCommand.js +2 -2
  21. package/dist-es/commands/RestoreCertificateAuthorityCommand.js +2 -2
  22. package/dist-es/commands/RevokeCertificateCommand.js +2 -2
  23. package/dist-es/commands/TagCertificateAuthorityCommand.js +2 -2
  24. package/dist-es/commands/UntagCertificateAuthorityCommand.js +2 -2
  25. package/dist-es/commands/UpdateCertificateAuthorityCommand.js +2 -2
  26. package/dist-es/index.js +1 -0
  27. package/dist-es/runtimeConfig.shared.js +5 -6
  28. package/dist-es/schemas/schemas_0.js +200 -179
  29. package/dist-types/ACMPCAClient.d.ts +1 -10
  30. package/dist-types/index.d.ts +1 -0
  31. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  32. package/dist-types/runtimeConfig.d.ts +6 -2
  33. package/dist-types/runtimeConfig.native.d.ts +6 -2
  34. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  35. package/dist-types/schemas/schemas_0.d.ts +104 -116
  36. package/dist-types/ts3.4/ACMPCAClient.d.ts +0 -4
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +103 -116
  43. package/package.json +35 -35
package/dist-cjs/index.js CHANGED
@@ -111,14 +111,14 @@ class ACMPCAClient extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- let ACMPCAServiceException$1 = class ACMPCAServiceException extends smithyClient.ServiceException {
114
+ class ACMPCAServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, ACMPCAServiceException.prototype);
118
118
  }
119
- };
119
+ }
120
120
 
121
- let InvalidArgsException$1 = class InvalidArgsException extends ACMPCAServiceException$1 {
121
+ class InvalidArgsException extends ACMPCAServiceException {
122
122
  name = "InvalidArgsException";
123
123
  $fault = "client";
124
124
  constructor(opts) {
@@ -129,8 +129,8 @@ let InvalidArgsException$1 = class InvalidArgsException extends ACMPCAServiceExc
129
129
  });
130
130
  Object.setPrototypeOf(this, InvalidArgsException.prototype);
131
131
  }
132
- };
133
- let InvalidPolicyException$1 = class InvalidPolicyException extends ACMPCAServiceException$1 {
132
+ }
133
+ class InvalidPolicyException extends ACMPCAServiceException {
134
134
  name = "InvalidPolicyException";
135
135
  $fault = "client";
136
136
  constructor(opts) {
@@ -141,8 +141,8 @@ let InvalidPolicyException$1 = class InvalidPolicyException extends ACMPCAServic
141
141
  });
142
142
  Object.setPrototypeOf(this, InvalidPolicyException.prototype);
143
143
  }
144
- };
145
- let InvalidTagException$1 = class InvalidTagException extends ACMPCAServiceException$1 {
144
+ }
145
+ class InvalidTagException extends ACMPCAServiceException {
146
146
  name = "InvalidTagException";
147
147
  $fault = "client";
148
148
  constructor(opts) {
@@ -153,8 +153,8 @@ let InvalidTagException$1 = class InvalidTagException extends ACMPCAServiceExcep
153
153
  });
154
154
  Object.setPrototypeOf(this, InvalidTagException.prototype);
155
155
  }
156
- };
157
- let LimitExceededException$1 = class LimitExceededException extends ACMPCAServiceException$1 {
156
+ }
157
+ class LimitExceededException extends ACMPCAServiceException {
158
158
  name = "LimitExceededException";
159
159
  $fault = "client";
160
160
  constructor(opts) {
@@ -165,8 +165,8 @@ let LimitExceededException$1 = class LimitExceededException extends ACMPCAServic
165
165
  });
166
166
  Object.setPrototypeOf(this, LimitExceededException.prototype);
167
167
  }
168
- };
169
- let InvalidArnException$1 = class InvalidArnException extends ACMPCAServiceException$1 {
168
+ }
169
+ class InvalidArnException extends ACMPCAServiceException {
170
170
  name = "InvalidArnException";
171
171
  $fault = "client";
172
172
  constructor(opts) {
@@ -177,8 +177,8 @@ let InvalidArnException$1 = class InvalidArnException extends ACMPCAServiceExcep
177
177
  });
178
178
  Object.setPrototypeOf(this, InvalidArnException.prototype);
179
179
  }
180
- };
181
- let InvalidStateException$1 = class InvalidStateException extends ACMPCAServiceException$1 {
180
+ }
181
+ class InvalidStateException extends ACMPCAServiceException {
182
182
  name = "InvalidStateException";
183
183
  $fault = "client";
184
184
  constructor(opts) {
@@ -189,8 +189,8 @@ let InvalidStateException$1 = class InvalidStateException extends ACMPCAServiceE
189
189
  });
190
190
  Object.setPrototypeOf(this, InvalidStateException.prototype);
191
191
  }
192
- };
193
- let RequestFailedException$1 = class RequestFailedException extends ACMPCAServiceException$1 {
192
+ }
193
+ class RequestFailedException extends ACMPCAServiceException {
194
194
  name = "RequestFailedException";
195
195
  $fault = "client";
196
196
  constructor(opts) {
@@ -201,8 +201,8 @@ let RequestFailedException$1 = class RequestFailedException extends ACMPCAServic
201
201
  });
202
202
  Object.setPrototypeOf(this, RequestFailedException.prototype);
203
203
  }
204
- };
205
- let RequestInProgressException$1 = class RequestInProgressException extends ACMPCAServiceException$1 {
204
+ }
205
+ class RequestInProgressException extends ACMPCAServiceException {
206
206
  name = "RequestInProgressException";
207
207
  $fault = "client";
208
208
  constructor(opts) {
@@ -213,8 +213,8 @@ let RequestInProgressException$1 = class RequestInProgressException extends ACMP
213
213
  });
214
214
  Object.setPrototypeOf(this, RequestInProgressException.prototype);
215
215
  }
216
- };
217
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ACMPCAServiceException$1 {
216
+ }
217
+ class ResourceNotFoundException extends ACMPCAServiceException {
218
218
  name = "ResourceNotFoundException";
219
219
  $fault = "client";
220
220
  constructor(opts) {
@@ -225,8 +225,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends ACMPCA
225
225
  });
226
226
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
227
227
  }
228
- };
229
- let PermissionAlreadyExistsException$1 = class PermissionAlreadyExistsException extends ACMPCAServiceException$1 {
228
+ }
229
+ class PermissionAlreadyExistsException extends ACMPCAServiceException {
230
230
  name = "PermissionAlreadyExistsException";
231
231
  $fault = "client";
232
232
  constructor(opts) {
@@ -237,8 +237,8 @@ let PermissionAlreadyExistsException$1 = class PermissionAlreadyExistsException
237
237
  });
238
238
  Object.setPrototypeOf(this, PermissionAlreadyExistsException.prototype);
239
239
  }
240
- };
241
- let ConcurrentModificationException$1 = class ConcurrentModificationException extends ACMPCAServiceException$1 {
240
+ }
241
+ class ConcurrentModificationException extends ACMPCAServiceException {
242
242
  name = "ConcurrentModificationException";
243
243
  $fault = "client";
244
244
  constructor(opts) {
@@ -249,8 +249,8 @@ let ConcurrentModificationException$1 = class ConcurrentModificationException ex
249
249
  });
250
250
  Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
251
251
  }
252
- };
253
- let LockoutPreventedException$1 = class LockoutPreventedException extends ACMPCAServiceException$1 {
252
+ }
253
+ class LockoutPreventedException extends ACMPCAServiceException {
254
254
  name = "LockoutPreventedException";
255
255
  $fault = "client";
256
256
  constructor(opts) {
@@ -261,8 +261,8 @@ let LockoutPreventedException$1 = class LockoutPreventedException extends ACMPCA
261
261
  });
262
262
  Object.setPrototypeOf(this, LockoutPreventedException.prototype);
263
263
  }
264
- };
265
- let CertificateMismatchException$1 = class CertificateMismatchException extends ACMPCAServiceException$1 {
264
+ }
265
+ class CertificateMismatchException extends ACMPCAServiceException {
266
266
  name = "CertificateMismatchException";
267
267
  $fault = "client";
268
268
  constructor(opts) {
@@ -273,8 +273,8 @@ let CertificateMismatchException$1 = class CertificateMismatchException extends
273
273
  });
274
274
  Object.setPrototypeOf(this, CertificateMismatchException.prototype);
275
275
  }
276
- };
277
- let InvalidRequestException$1 = class InvalidRequestException extends ACMPCAServiceException$1 {
276
+ }
277
+ class InvalidRequestException extends ACMPCAServiceException {
278
278
  name = "InvalidRequestException";
279
279
  $fault = "client";
280
280
  constructor(opts) {
@@ -285,8 +285,8 @@ let InvalidRequestException$1 = class InvalidRequestException extends ACMPCAServ
285
285
  });
286
286
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
287
287
  }
288
- };
289
- let MalformedCertificateException$1 = class MalformedCertificateException extends ACMPCAServiceException$1 {
288
+ }
289
+ class MalformedCertificateException extends ACMPCAServiceException {
290
290
  name = "MalformedCertificateException";
291
291
  $fault = "client";
292
292
  constructor(opts) {
@@ -297,8 +297,8 @@ let MalformedCertificateException$1 = class MalformedCertificateException extend
297
297
  });
298
298
  Object.setPrototypeOf(this, MalformedCertificateException.prototype);
299
299
  }
300
- };
301
- let MalformedCSRException$1 = class MalformedCSRException extends ACMPCAServiceException$1 {
300
+ }
301
+ class MalformedCSRException extends ACMPCAServiceException {
302
302
  name = "MalformedCSRException";
303
303
  $fault = "client";
304
304
  constructor(opts) {
@@ -309,8 +309,8 @@ let MalformedCSRException$1 = class MalformedCSRException extends ACMPCAServiceE
309
309
  });
310
310
  Object.setPrototypeOf(this, MalformedCSRException.prototype);
311
311
  }
312
- };
313
- let InvalidNextTokenException$1 = class InvalidNextTokenException extends ACMPCAServiceException$1 {
312
+ }
313
+ class InvalidNextTokenException extends ACMPCAServiceException {
314
314
  name = "InvalidNextTokenException";
315
315
  $fault = "client";
316
316
  constructor(opts) {
@@ -321,8 +321,8 @@ let InvalidNextTokenException$1 = class InvalidNextTokenException extends ACMPCA
321
321
  });
322
322
  Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
323
323
  }
324
- };
325
- let RequestAlreadyProcessedException$1 = class RequestAlreadyProcessedException extends ACMPCAServiceException$1 {
324
+ }
325
+ class RequestAlreadyProcessedException extends ACMPCAServiceException {
326
326
  name = "RequestAlreadyProcessedException";
327
327
  $fault = "client";
328
328
  constructor(opts) {
@@ -333,8 +333,8 @@ let RequestAlreadyProcessedException$1 = class RequestAlreadyProcessedException
333
333
  });
334
334
  Object.setPrototypeOf(this, RequestAlreadyProcessedException.prototype);
335
335
  }
336
- };
337
- let TooManyTagsException$1 = class TooManyTagsException extends ACMPCAServiceException$1 {
336
+ }
337
+ class TooManyTagsException extends ACMPCAServiceException {
338
338
  name = "TooManyTagsException";
339
339
  $fault = "client";
340
340
  constructor(opts) {
@@ -345,7 +345,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends ACMPCAServiceExc
345
345
  });
346
346
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
347
347
  }
348
- };
348
+ }
349
349
 
350
350
  const _A = "Arn";
351
351
  const _AD = "AccessDescription";
@@ -565,17 +565,17 @@ const _e = "error";
565
565
  const _m = "message";
566
566
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.acmpca";
567
567
  const n0 = "com.amazonaws.acmpca";
568
- var AccessDescription = [
568
+ var AccessDescription$ = [
569
569
  3,
570
570
  n0,
571
571
  _AD,
572
572
  0,
573
573
  [_AM, _AL],
574
- [() => AccessMethod, () => GeneralName],
574
+ [() => AccessMethod$, () => GeneralName$],
575
575
  ];
576
- var AccessMethod = [3, n0, _AM, 0, [_COI, _AMT], [0, 0]];
577
- var ApiPassthrough = [3, n0, _AP, 0, [_E, _S], [() => Extensions, () => ASN1Subject]];
578
- var ASN1Subject = [
576
+ var AccessMethod$ = [3, n0, _AM, 0, [_COI, _AMT], [0, 0]];
577
+ var ApiPassthrough$ = [3, n0, _AP, 0, [_E, _S], [() => Extensions$, () => ASN1Subject$]];
578
+ var ASN1Subject$ = [
579
579
  3,
580
580
  n0,
581
581
  _ASNS,
@@ -583,27 +583,27 @@ var ASN1Subject = [
583
583
  [_C, _O, _OU, _DNQ, _St, _CN, _SN, _L, _T, _Su, _GN, _I, _P, _GQ, _CA],
584
584
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => CustomAttributeList],
585
585
  ];
586
- var CertificateAuthority = [
586
+ var CertificateAuthority$ = [
587
587
  3,
588
588
  n0,
589
589
  _CAe,
590
590
  0,
591
591
  [_A, _OA, _CAr, _LSCA, _Ty, _Se, _Sta, _NB, _NA, _FR, _CAC, _RC, _RU, _KSSS, _UM],
592
- [0, 0, 4, 4, 0, 0, 0, 4, 4, 0, () => CertificateAuthorityConfiguration, () => RevocationConfiguration, 4, 0, 0],
592
+ [0, 0, 4, 4, 0, 0, 0, 4, 4, 0, () => CertificateAuthorityConfiguration$, () => RevocationConfiguration$, 4, 0, 0],
593
593
  ];
594
- var CertificateAuthorityConfiguration = [
594
+ var CertificateAuthorityConfiguration$ = [
595
595
  3,
596
596
  n0,
597
597
  _CAC,
598
598
  0,
599
599
  [_KA, _SA, _S, _CE],
600
- [0, 0, () => ASN1Subject, () => CsrExtensions],
600
+ [0, 0, () => ASN1Subject$, () => CsrExtensions$],
601
601
  ];
602
- var CertificateMismatchException = [-3, n0, _CME, { [_e]: _c }, [_m], [0]];
603
- schema.TypeRegistry.for(n0).registerError(CertificateMismatchException, CertificateMismatchException$1);
604
- var ConcurrentModificationException = [-3, n0, _CMEo, { [_e]: _c }, [_m], [0]];
605
- schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException, ConcurrentModificationException$1);
606
- var CreateCertificateAuthorityAuditReportRequest = [
602
+ var CertificateMismatchException$ = [-3, n0, _CME, { [_e]: _c }, [_m], [0]];
603
+ schema.TypeRegistry.for(n0).registerError(CertificateMismatchException$, CertificateMismatchException);
604
+ var ConcurrentModificationException$ = [-3, n0, _CMEo, { [_e]: _c }, [_m], [0]];
605
+ schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
606
+ var CreateCertificateAuthorityAuditReportRequest$ = [
607
607
  3,
608
608
  n0,
609
609
  _CCAARR,
@@ -611,7 +611,7 @@ var CreateCertificateAuthorityAuditReportRequest = [
611
611
  [_CAA, _SBN, _ARRF],
612
612
  [0, 0, 0],
613
613
  ];
614
- var CreateCertificateAuthorityAuditReportResponse = [
614
+ var CreateCertificateAuthorityAuditReportResponse$ = [
615
615
  3,
616
616
  n0,
617
617
  _CCAARRr,
@@ -619,39 +619,46 @@ var CreateCertificateAuthorityAuditReportResponse = [
619
619
  [_ARI, _SK],
620
620
  [0, 0],
621
621
  ];
622
- var CreateCertificateAuthorityRequest = [
622
+ var CreateCertificateAuthorityRequest$ = [
623
623
  3,
624
624
  n0,
625
625
  _CCAR,
626
626
  0,
627
627
  [_CAC, _RC, _CAT, _IT, _KSSS, _Ta, _UM],
628
- [() => CertificateAuthorityConfiguration, () => RevocationConfiguration, 0, 0, 0, () => TagList, 0],
628
+ [() => CertificateAuthorityConfiguration$, () => RevocationConfiguration$, 0, 0, 0, () => TagList, 0],
629
629
  ];
630
- var CreateCertificateAuthorityResponse = [3, n0, _CCARr, 0, [_CAA], [0]];
631
- var CreatePermissionRequest = [3, n0, _CPR, 0, [_CAA, _Pr, _SAo, _Ac], [0, 0, 0, 64 | 0]];
632
- var CrlConfiguration = [
630
+ var CreateCertificateAuthorityResponse$ = [3, n0, _CCARr, 0, [_CAA], [0]];
631
+ var CreatePermissionRequest$ = [
632
+ 3,
633
+ n0,
634
+ _CPR,
635
+ 0,
636
+ [_CAA, _Pr, _SAo, _Ac],
637
+ [0, 0, 0, 64 | 0],
638
+ ];
639
+ var CrlConfiguration$ = [
633
640
  3,
634
641
  n0,
635
642
  _CC,
636
643
  0,
637
644
  [_En, _EID, _CCu, _SBN, _SOA, _CDPEC, _CT, _CP],
638
- [2, 1, 0, 0, 0, () => CrlDistributionPointExtensionConfiguration, 0, 0],
645
+ [2, 1, 0, 0, 0, () => CrlDistributionPointExtensionConfiguration$, 0, 0],
639
646
  ];
640
- var CrlDistributionPointExtensionConfiguration = [3, n0, _CDPEC, 0, [_OE], [2]];
641
- var CsrExtensions = [
647
+ var CrlDistributionPointExtensionConfiguration$ = [3, n0, _CDPEC, 0, [_OE], [2]];
648
+ var CsrExtensions$ = [
642
649
  3,
643
650
  n0,
644
651
  _CE,
645
652
  0,
646
653
  [_KU, _SIA],
647
- [() => KeyUsage, () => AccessDescriptionList],
654
+ [() => KeyUsage$, () => AccessDescriptionList],
648
655
  ];
649
- var CustomAttribute = [3, n0, _CAu, 0, [_OI, _V], [0, 0]];
650
- var CustomExtension = [3, n0, _CEu, 0, [_OI, _V, _Cr], [0, 0, 2]];
651
- var DeleteCertificateAuthorityRequest = [3, n0, _DCAR, 0, [_CAA, _PDTID], [0, 1]];
652
- var DeletePermissionRequest = [3, n0, _DPR, 0, [_CAA, _Pr, _SAo], [0, 0, 0]];
653
- var DeletePolicyRequest = [3, n0, _DPRe, 0, [_RA], [0]];
654
- var DescribeCertificateAuthorityAuditReportRequest = [
656
+ var CustomAttribute$ = [3, n0, _CAu, 0, [_OI, _V], [0, 0]];
657
+ var CustomExtension$ = [3, n0, _CEu, 0, [_OI, _V, _Cr], [0, 0, 2]];
658
+ var DeleteCertificateAuthorityRequest$ = [3, n0, _DCAR, 0, [_CAA, _PDTID], [0, 1]];
659
+ var DeletePermissionRequest$ = [3, n0, _DPR, 0, [_CAA, _Pr, _SAo], [0, 0, 0]];
660
+ var DeletePolicyRequest$ = [3, n0, _DPRe, 0, [_RA], [0]];
661
+ var DescribeCertificateAuthorityAuditReportRequest$ = [
655
662
  3,
656
663
  n0,
657
664
  _DCAARR,
@@ -659,7 +666,7 @@ var DescribeCertificateAuthorityAuditReportRequest = [
659
666
  [_CAA, _ARI],
660
667
  [0, 0],
661
668
  ];
662
- var DescribeCertificateAuthorityAuditReportResponse = [
669
+ var DescribeCertificateAuthorityAuditReportResponse$ = [
663
670
  3,
664
671
  n0,
665
672
  _DCAARRe,
@@ -667,18 +674,18 @@ var DescribeCertificateAuthorityAuditReportResponse = [
667
674
  [_ARS, _SBN, _SK, _CAr],
668
675
  [0, 0, 0, 4],
669
676
  ];
670
- var DescribeCertificateAuthorityRequest = [3, n0, _DCARe, 0, [_CAA], [0]];
671
- var DescribeCertificateAuthorityResponse = [
677
+ var DescribeCertificateAuthorityRequest$ = [3, n0, _DCARe, 0, [_CAA], [0]];
678
+ var DescribeCertificateAuthorityResponse$ = [
672
679
  3,
673
680
  n0,
674
681
  _DCARes,
675
682
  0,
676
683
  [_CAe],
677
- [() => CertificateAuthority],
684
+ [() => CertificateAuthority$],
678
685
  ];
679
- var EdiPartyName = [3, n0, _EPN, 0, [_PN, _NAa], [0, 0]];
680
- var ExtendedKeyUsage = [3, n0, _EKU, 0, [_EKUT, _EKUOI], [0, 0]];
681
- var Extensions = [
686
+ var EdiPartyName$ = [3, n0, _EPN, 0, [_PN, _NAa], [0, 0]];
687
+ var ExtendedKeyUsage$ = [3, n0, _EKU, 0, [_EKUT, _EKUOI], [0, 0]];
688
+ var Extensions$ = [
682
689
  3,
683
690
  n0,
684
691
  _E,
@@ -687,28 +694,35 @@ var Extensions = [
687
694
  [
688
695
  () => CertificatePolicyList,
689
696
  () => ExtendedKeyUsageList,
690
- () => KeyUsage,
697
+ () => KeyUsage$,
691
698
  () => GeneralNameList,
692
699
  () => CustomExtensionList,
693
700
  ],
694
701
  ];
695
- var GeneralName = [
702
+ var GeneralName$ = [
696
703
  3,
697
704
  n0,
698
705
  _GNe,
699
706
  0,
700
707
  [_ON, _RN, _DN, _DNi, _EPN, _URI, _IA, _RI],
701
- [() => OtherName, 0, 0, () => ASN1Subject, () => EdiPartyName, 0, 0, 0],
708
+ [() => OtherName$, 0, 0, () => ASN1Subject$, () => EdiPartyName$, 0, 0, 0],
702
709
  ];
703
- var GetCertificateAuthorityCertificateRequest = [3, n0, _GCACR, 0, [_CAA], [0]];
704
- var GetCertificateAuthorityCertificateResponse = [3, n0, _GCACRe, 0, [_Ce, _CCe], [0, 0]];
705
- var GetCertificateAuthorityCsrRequest = [3, n0, _GCACRet, 0, [_CAA], [0]];
706
- var GetCertificateAuthorityCsrResponse = [3, n0, _GCACRete, 0, [_Cs], [0]];
707
- var GetCertificateRequest = [3, n0, _GCR, 0, [_CAA, _CAer], [0, 0]];
708
- var GetCertificateResponse = [3, n0, _GCRe, 0, [_Ce, _CCe], [0, 0]];
709
- var GetPolicyRequest = [3, n0, _GPR, 0, [_RA], [0]];
710
- var GetPolicyResponse = [3, n0, _GPRe, 0, [_Po], [0]];
711
- var ImportCertificateAuthorityCertificateRequest = [
710
+ var GetCertificateAuthorityCertificateRequest$ = [3, n0, _GCACR, 0, [_CAA], [0]];
711
+ var GetCertificateAuthorityCertificateResponse$ = [
712
+ 3,
713
+ n0,
714
+ _GCACRe,
715
+ 0,
716
+ [_Ce, _CCe],
717
+ [0, 0],
718
+ ];
719
+ var GetCertificateAuthorityCsrRequest$ = [3, n0, _GCACRet, 0, [_CAA], [0]];
720
+ var GetCertificateAuthorityCsrResponse$ = [3, n0, _GCACRete, 0, [_Cs], [0]];
721
+ var GetCertificateRequest$ = [3, n0, _GCR, 0, [_CAA, _CAer], [0, 0]];
722
+ var GetCertificateResponse$ = [3, n0, _GCRe, 0, [_Ce, _CCe], [0, 0]];
723
+ var GetPolicyRequest$ = [3, n0, _GPR, 0, [_RA], [0]];
724
+ var GetPolicyResponse$ = [3, n0, _GPRe, 0, [_Po], [0]];
725
+ var ImportCertificateAuthorityCertificateRequest$ = [
712
726
  3,
713
727
  n0,
714
728
  _ICACR,
@@ -716,30 +730,30 @@ var ImportCertificateAuthorityCertificateRequest = [
716
730
  [_CAA, _Ce, _CCe],
717
731
  [0, 21, 21],
718
732
  ];
719
- var InvalidArgsException = [-3, n0, _IAE, { [_e]: _c }, [_m], [0]];
720
- schema.TypeRegistry.for(n0).registerError(InvalidArgsException, InvalidArgsException$1);
721
- var InvalidArnException = [-3, n0, _IAEn, { [_e]: _c }, [_m], [0]];
722
- schema.TypeRegistry.for(n0).registerError(InvalidArnException, InvalidArnException$1);
723
- var InvalidNextTokenException = [-3, n0, _INTE, { [_e]: _c }, [_m], [0]];
724
- schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException, InvalidNextTokenException$1);
725
- var InvalidPolicyException = [-3, n0, _IPE, { [_e]: _c }, [_m], [0]];
726
- schema.TypeRegistry.for(n0).registerError(InvalidPolicyException, InvalidPolicyException$1);
727
- var InvalidRequestException = [-3, n0, _IRE, { [_e]: _c }, [_m], [0]];
728
- schema.TypeRegistry.for(n0).registerError(InvalidRequestException, InvalidRequestException$1);
729
- var InvalidStateException = [-3, n0, _ISE, { [_e]: _c }, [_m], [0]];
730
- schema.TypeRegistry.for(n0).registerError(InvalidStateException, InvalidStateException$1);
731
- var InvalidTagException = [-3, n0, _ITE, { [_e]: _c }, [_m], [0]];
732
- schema.TypeRegistry.for(n0).registerError(InvalidTagException, InvalidTagException$1);
733
- var IssueCertificateRequest = [
733
+ var InvalidArgsException$ = [-3, n0, _IAE, { [_e]: _c }, [_m], [0]];
734
+ schema.TypeRegistry.for(n0).registerError(InvalidArgsException$, InvalidArgsException);
735
+ var InvalidArnException$ = [-3, n0, _IAEn, { [_e]: _c }, [_m], [0]];
736
+ schema.TypeRegistry.for(n0).registerError(InvalidArnException$, InvalidArnException);
737
+ var InvalidNextTokenException$ = [-3, n0, _INTE, { [_e]: _c }, [_m], [0]];
738
+ schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
739
+ var InvalidPolicyException$ = [-3, n0, _IPE, { [_e]: _c }, [_m], [0]];
740
+ schema.TypeRegistry.for(n0).registerError(InvalidPolicyException$, InvalidPolicyException);
741
+ var InvalidRequestException$ = [-3, n0, _IRE, { [_e]: _c }, [_m], [0]];
742
+ schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
743
+ var InvalidStateException$ = [-3, n0, _ISE, { [_e]: _c }, [_m], [0]];
744
+ schema.TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
745
+ var InvalidTagException$ = [-3, n0, _ITE, { [_e]: _c }, [_m], [0]];
746
+ schema.TypeRegistry.for(n0).registerError(InvalidTagException$, InvalidTagException);
747
+ var IssueCertificateRequest$ = [
734
748
  3,
735
749
  n0,
736
750
  _ICR,
737
751
  0,
738
752
  [_AP, _CAA, _Cs, _SA, _TA, _Va, _VNB, _IT],
739
- [() => ApiPassthrough, 0, 21, 0, 0, () => Validity, () => Validity, 0],
753
+ [() => ApiPassthrough$, 0, 21, 0, 0, () => Validity$, () => Validity$, 0],
740
754
  ];
741
- var IssueCertificateResponse = [3, n0, _ICRs, 0, [_CAer], [0]];
742
- var KeyUsage = [
755
+ var IssueCertificateResponse$ = [3, n0, _ICRs, 0, [_CAer], [0]];
756
+ var KeyUsage$ = [
743
757
  3,
744
758
  n0,
745
759
  _KU,
@@ -747,10 +761,10 @@ var KeyUsage = [
747
761
  [_DS, _NR, _KE, _DE, _KAe, _KCS, _CRLS, _EO, _DO],
748
762
  [2, 2, 2, 2, 2, 2, 2, 2, 2],
749
763
  ];
750
- var LimitExceededException = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
751
- schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
752
- var ListCertificateAuthoritiesRequest = [3, n0, _LCAR, 0, [_MR, _NT, _RO], [1, 0, 0]];
753
- var ListCertificateAuthoritiesResponse = [
764
+ var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
765
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
766
+ var ListCertificateAuthoritiesRequest$ = [3, n0, _LCAR, 0, [_MR, _NT, _RO], [1, 0, 0]];
767
+ var ListCertificateAuthoritiesResponse$ = [
754
768
  3,
755
769
  n0,
756
770
  _LCARi,
@@ -758,19 +772,19 @@ var ListCertificateAuthoritiesResponse = [
758
772
  [_NT, _CAert],
759
773
  [0, () => CertificateAuthorities],
760
774
  ];
761
- var ListPermissionsRequest = [3, n0, _LPR, 0, [_MR, _NT, _CAA], [1, 0, 0]];
762
- var ListPermissionsResponse = [3, n0, _LPRi, 0, [_NT, _Pe], [0, () => PermissionList]];
763
- var ListTagsRequest = [3, n0, _LTR, 0, [_MR, _NT, _CAA], [1, 0, 0]];
764
- var ListTagsResponse = [3, n0, _LTRi, 0, [_NT, _Ta], [0, () => TagList]];
765
- var LockoutPreventedException = [-3, n0, _LPE, { [_e]: _c }, [_m], [0]];
766
- schema.TypeRegistry.for(n0).registerError(LockoutPreventedException, LockoutPreventedException$1);
767
- var MalformedCertificateException = [-3, n0, _MCE, { [_e]: _c }, [_m], [0]];
768
- schema.TypeRegistry.for(n0).registerError(MalformedCertificateException, MalformedCertificateException$1);
769
- var MalformedCSRException = [-3, n0, _MCSRE, { [_e]: _c }, [_m], [0]];
770
- schema.TypeRegistry.for(n0).registerError(MalformedCSRException, MalformedCSRException$1);
771
- var OcspConfiguration = [3, n0, _OC, 0, [_En, _OCC], [2, 0]];
772
- var OtherName = [3, n0, _ON, 0, [_TI, _V], [0, 0]];
773
- var Permission = [
775
+ var ListPermissionsRequest$ = [3, n0, _LPR, 0, [_MR, _NT, _CAA], [1, 0, 0]];
776
+ var ListPermissionsResponse$ = [3, n0, _LPRi, 0, [_NT, _Pe], [0, () => PermissionList]];
777
+ var ListTagsRequest$ = [3, n0, _LTR, 0, [_MR, _NT, _CAA], [1, 0, 0]];
778
+ var ListTagsResponse$ = [3, n0, _LTRi, 0, [_NT, _Ta], [0, () => TagList]];
779
+ var LockoutPreventedException$ = [-3, n0, _LPE, { [_e]: _c }, [_m], [0]];
780
+ schema.TypeRegistry.for(n0).registerError(LockoutPreventedException$, LockoutPreventedException);
781
+ var MalformedCertificateException$ = [-3, n0, _MCE, { [_e]: _c }, [_m], [0]];
782
+ schema.TypeRegistry.for(n0).registerError(MalformedCertificateException$, MalformedCertificateException);
783
+ var MalformedCSRException$ = [-3, n0, _MCSRE, { [_e]: _c }, [_m], [0]];
784
+ schema.TypeRegistry.for(n0).registerError(MalformedCSRException$, MalformedCSRException);
785
+ var OcspConfiguration$ = [3, n0, _OC, 0, [_En, _OCC], [2, 0]];
786
+ var OtherName$ = [3, n0, _ON, 0, [_TI, _V], [0, 0]];
787
+ var Permission$ = [
774
788
  3,
775
789
  n0,
776
790
  _Per,
@@ -778,190 +792,197 @@ var Permission = [
778
792
  [_CAA, _CAr, _Pr, _SAo, _Ac, _Po],
779
793
  [0, 4, 0, 0, 64 | 0, 0],
780
794
  ];
781
- var PermissionAlreadyExistsException = [-3, n0, _PAEE, { [_e]: _c }, [_m], [0]];
782
- schema.TypeRegistry.for(n0).registerError(PermissionAlreadyExistsException, PermissionAlreadyExistsException$1);
783
- var PolicyInformation = [3, n0, _PI, 0, [_CPI, _PQ], [0, () => PolicyQualifierInfoList]];
784
- var PolicyQualifierInfo = [3, n0, _PQI, 0, [_PQIo, _Q], [0, () => Qualifier]];
785
- var PutPolicyRequest = [3, n0, _PPR, 0, [_RA, _Po], [0, 0]];
786
- var Qualifier = [3, n0, _Q, 0, [_CU], [0]];
787
- var RequestAlreadyProcessedException = [-3, n0, _RAPE, { [_e]: _c }, [_m], [0]];
788
- schema.TypeRegistry.for(n0).registerError(RequestAlreadyProcessedException, RequestAlreadyProcessedException$1);
789
- var RequestFailedException = [-3, n0, _RFE, { [_e]: _c }, [_m], [0]];
790
- schema.TypeRegistry.for(n0).registerError(RequestFailedException, RequestFailedException$1);
791
- var RequestInProgressException = [-3, n0, _RIPE, { [_e]: _c }, [_m], [0]];
792
- schema.TypeRegistry.for(n0).registerError(RequestInProgressException, RequestInProgressException$1);
793
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
794
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
795
- var RestoreCertificateAuthorityRequest = [3, n0, _RCAR, 0, [_CAA], [0]];
796
- var RevocationConfiguration = [
795
+ var PermissionAlreadyExistsException$ = [-3, n0, _PAEE, { [_e]: _c }, [_m], [0]];
796
+ schema.TypeRegistry.for(n0).registerError(PermissionAlreadyExistsException$, PermissionAlreadyExistsException);
797
+ var PolicyInformation$ = [3, n0, _PI, 0, [_CPI, _PQ], [0, () => PolicyQualifierInfoList]];
798
+ var PolicyQualifierInfo$ = [3, n0, _PQI, 0, [_PQIo, _Q], [0, () => Qualifier$]];
799
+ var PutPolicyRequest$ = [3, n0, _PPR, 0, [_RA, _Po], [0, 0]];
800
+ var Qualifier$ = [3, n0, _Q, 0, [_CU], [0]];
801
+ var RequestAlreadyProcessedException$ = [-3, n0, _RAPE, { [_e]: _c }, [_m], [0]];
802
+ schema.TypeRegistry.for(n0).registerError(RequestAlreadyProcessedException$, RequestAlreadyProcessedException);
803
+ var RequestFailedException$ = [-3, n0, _RFE, { [_e]: _c }, [_m], [0]];
804
+ schema.TypeRegistry.for(n0).registerError(RequestFailedException$, RequestFailedException);
805
+ var RequestInProgressException$ = [-3, n0, _RIPE, { [_e]: _c }, [_m], [0]];
806
+ schema.TypeRegistry.for(n0).registerError(RequestInProgressException$, RequestInProgressException);
807
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
808
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
809
+ var RestoreCertificateAuthorityRequest$ = [3, n0, _RCAR, 0, [_CAA], [0]];
810
+ var RevocationConfiguration$ = [
797
811
  3,
798
812
  n0,
799
813
  _RC,
800
814
  0,
801
815
  [_CC, _OC],
802
- [() => CrlConfiguration, () => OcspConfiguration],
816
+ [() => CrlConfiguration$, () => OcspConfiguration$],
817
+ ];
818
+ var RevokeCertificateRequest$ = [3, n0, _RCR, 0, [_CAA, _CS, _RR], [0, 0, 0]];
819
+ var Tag$ = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
820
+ var TagCertificateAuthorityRequest$ = [3, n0, _TCAR, 0, [_CAA, _Ta], [0, () => TagList]];
821
+ var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c }, [_m], [0]];
822
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
823
+ var UntagCertificateAuthorityRequest$ = [
824
+ 3,
825
+ n0,
826
+ _UCAR,
827
+ 0,
828
+ [_CAA, _Ta],
829
+ [0, () => TagList],
803
830
  ];
804
- var RevokeCertificateRequest = [3, n0, _RCR, 0, [_CAA, _CS, _RR], [0, 0, 0]];
805
- var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
806
- var TagCertificateAuthorityRequest = [3, n0, _TCAR, 0, [_CAA, _Ta], [0, () => TagList]];
807
- var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c }, [_m], [0]];
808
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
809
- var UntagCertificateAuthorityRequest = [3, n0, _UCAR, 0, [_CAA, _Ta], [0, () => TagList]];
810
- var UpdateCertificateAuthorityRequest = [
831
+ var UpdateCertificateAuthorityRequest$ = [
811
832
  3,
812
833
  n0,
813
834
  _UCARp,
814
835
  0,
815
836
  [_CAA, _RC, _Sta],
816
- [0, () => RevocationConfiguration, 0],
837
+ [0, () => RevocationConfiguration$, 0],
817
838
  ];
818
- var Validity = [3, n0, _Va, 0, [_V, _Ty], [1, 0]];
839
+ var Validity$ = [3, n0, _Va, 0, [_V, _Ty], [1, 0]];
819
840
  var __Unit = "unit";
820
- var ACMPCAServiceException = [-3, _s, "ACMPCAServiceException", 0, [], []];
821
- schema.TypeRegistry.for(_s).registerError(ACMPCAServiceException, ACMPCAServiceException$1);
822
- var AccessDescriptionList = [1, n0, _ADL, 0, () => AccessDescription];
823
- var CertificateAuthorities = [1, n0, _CAert, 0, () => CertificateAuthority];
824
- var CertificatePolicyList = [1, n0, _CPL, 0, () => PolicyInformation];
825
- var CustomAttributeList = [1, n0, _CAL, 0, () => CustomAttribute];
826
- var CustomExtensionList = [1, n0, _CEL, 0, () => CustomExtension];
827
- var ExtendedKeyUsageList = [1, n0, _EKUL, 0, () => ExtendedKeyUsage];
828
- var GeneralNameList = [1, n0, _GNL, 0, () => GeneralName];
829
- var PermissionList = [1, n0, _PL, 0, () => Permission];
830
- var PolicyQualifierInfoList = [1, n0, _PQIL, 0, () => PolicyQualifierInfo];
831
- var TagList = [1, n0, _TL, 0, () => Tag];
832
- var CreateCertificateAuthority = [
841
+ var ACMPCAServiceException$ = [-3, _s, "ACMPCAServiceException", 0, [], []];
842
+ schema.TypeRegistry.for(_s).registerError(ACMPCAServiceException$, ACMPCAServiceException);
843
+ var AccessDescriptionList = [1, n0, _ADL, 0, () => AccessDescription$];
844
+ var CertificateAuthorities = [1, n0, _CAert, 0, () => CertificateAuthority$];
845
+ var CertificatePolicyList = [1, n0, _CPL, 0, () => PolicyInformation$];
846
+ var CustomAttributeList = [1, n0, _CAL, 0, () => CustomAttribute$];
847
+ var CustomExtensionList = [1, n0, _CEL, 0, () => CustomExtension$];
848
+ var ExtendedKeyUsageList = [1, n0, _EKUL, 0, () => ExtendedKeyUsage$];
849
+ var GeneralNameList = [1, n0, _GNL, 0, () => GeneralName$];
850
+ var PermissionList = [1, n0, _PL, 0, () => Permission$];
851
+ var PolicyQualifierInfoList = [1, n0, _PQIL, 0, () => PolicyQualifierInfo$];
852
+ var TagList = [1, n0, _TL, 0, () => Tag$];
853
+ var CreateCertificateAuthority$ = [
833
854
  9,
834
855
  n0,
835
856
  _CCA,
836
857
  2,
837
- () => CreateCertificateAuthorityRequest,
838
- () => CreateCertificateAuthorityResponse,
858
+ () => CreateCertificateAuthorityRequest$,
859
+ () => CreateCertificateAuthorityResponse$,
839
860
  ];
840
- var CreateCertificateAuthorityAuditReport = [
861
+ var CreateCertificateAuthorityAuditReport$ = [
841
862
  9,
842
863
  n0,
843
864
  _CCAAR,
844
865
  2,
845
- () => CreateCertificateAuthorityAuditReportRequest,
846
- () => CreateCertificateAuthorityAuditReportResponse,
866
+ () => CreateCertificateAuthorityAuditReportRequest$,
867
+ () => CreateCertificateAuthorityAuditReportResponse$,
847
868
  ];
848
- var CreatePermission = [9, n0, _CPr, 0, () => CreatePermissionRequest, () => __Unit];
849
- var DeleteCertificateAuthority = [
869
+ var CreatePermission$ = [9, n0, _CPr, 0, () => CreatePermissionRequest$, () => __Unit];
870
+ var DeleteCertificateAuthority$ = [
850
871
  9,
851
872
  n0,
852
873
  _DCA,
853
874
  0,
854
- () => DeleteCertificateAuthorityRequest,
875
+ () => DeleteCertificateAuthorityRequest$,
855
876
  () => __Unit,
856
877
  ];
857
- var DeletePermission = [9, n0, _DP, 0, () => DeletePermissionRequest, () => __Unit];
858
- var DeletePolicy = [9, n0, _DPe, 0, () => DeletePolicyRequest, () => __Unit];
859
- var DescribeCertificateAuthority = [
878
+ var DeletePermission$ = [9, n0, _DP, 0, () => DeletePermissionRequest$, () => __Unit];
879
+ var DeletePolicy$ = [9, n0, _DPe, 0, () => DeletePolicyRequest$, () => __Unit];
880
+ var DescribeCertificateAuthority$ = [
860
881
  9,
861
882
  n0,
862
883
  _DCAe,
863
884
  0,
864
- () => DescribeCertificateAuthorityRequest,
865
- () => DescribeCertificateAuthorityResponse,
885
+ () => DescribeCertificateAuthorityRequest$,
886
+ () => DescribeCertificateAuthorityResponse$,
866
887
  ];
867
- var DescribeCertificateAuthorityAuditReport = [
888
+ var DescribeCertificateAuthorityAuditReport$ = [
868
889
  9,
869
890
  n0,
870
891
  _DCAAR,
871
892
  0,
872
- () => DescribeCertificateAuthorityAuditReportRequest,
873
- () => DescribeCertificateAuthorityAuditReportResponse,
893
+ () => DescribeCertificateAuthorityAuditReportRequest$,
894
+ () => DescribeCertificateAuthorityAuditReportResponse$,
874
895
  ];
875
- var GetCertificate = [
896
+ var GetCertificate$ = [
876
897
  9,
877
898
  n0,
878
899
  _GC,
879
900
  0,
880
- () => GetCertificateRequest,
881
- () => GetCertificateResponse,
901
+ () => GetCertificateRequest$,
902
+ () => GetCertificateResponse$,
882
903
  ];
883
- var GetCertificateAuthorityCertificate = [
904
+ var GetCertificateAuthorityCertificate$ = [
884
905
  9,
885
906
  n0,
886
907
  _GCAC,
887
908
  0,
888
- () => GetCertificateAuthorityCertificateRequest,
889
- () => GetCertificateAuthorityCertificateResponse,
909
+ () => GetCertificateAuthorityCertificateRequest$,
910
+ () => GetCertificateAuthorityCertificateResponse$,
890
911
  ];
891
- var GetCertificateAuthorityCsr = [
912
+ var GetCertificateAuthorityCsr$ = [
892
913
  9,
893
914
  n0,
894
915
  _GCACe,
895
916
  0,
896
- () => GetCertificateAuthorityCsrRequest,
897
- () => GetCertificateAuthorityCsrResponse,
917
+ () => GetCertificateAuthorityCsrRequest$,
918
+ () => GetCertificateAuthorityCsrResponse$,
898
919
  ];
899
- var GetPolicy = [9, n0, _GP, 0, () => GetPolicyRequest, () => GetPolicyResponse];
900
- var ImportCertificateAuthorityCertificate = [
920
+ var GetPolicy$ = [9, n0, _GP, 0, () => GetPolicyRequest$, () => GetPolicyResponse$];
921
+ var ImportCertificateAuthorityCertificate$ = [
901
922
  9,
902
923
  n0,
903
924
  _ICAC,
904
925
  0,
905
- () => ImportCertificateAuthorityCertificateRequest,
926
+ () => ImportCertificateAuthorityCertificateRequest$,
906
927
  () => __Unit,
907
928
  ];
908
- var IssueCertificate = [
929
+ var IssueCertificate$ = [
909
930
  9,
910
931
  n0,
911
932
  _IC,
912
933
  2,
913
- () => IssueCertificateRequest,
914
- () => IssueCertificateResponse,
934
+ () => IssueCertificateRequest$,
935
+ () => IssueCertificateResponse$,
915
936
  ];
916
- var ListCertificateAuthorities = [
937
+ var ListCertificateAuthorities$ = [
917
938
  9,
918
939
  n0,
919
940
  _LCA,
920
941
  0,
921
- () => ListCertificateAuthoritiesRequest,
922
- () => ListCertificateAuthoritiesResponse,
942
+ () => ListCertificateAuthoritiesRequest$,
943
+ () => ListCertificateAuthoritiesResponse$,
923
944
  ];
924
- var ListPermissions = [
945
+ var ListPermissions$ = [
925
946
  9,
926
947
  n0,
927
948
  _LP,
928
949
  0,
929
- () => ListPermissionsRequest,
930
- () => ListPermissionsResponse,
950
+ () => ListPermissionsRequest$,
951
+ () => ListPermissionsResponse$,
931
952
  ];
932
- var ListTags = [9, n0, _LT, 0, () => ListTagsRequest, () => ListTagsResponse];
933
- var PutPolicy = [9, n0, _PP, 0, () => PutPolicyRequest, () => __Unit];
934
- var RestoreCertificateAuthority = [
953
+ var ListTags$ = [9, n0, _LT, 0, () => ListTagsRequest$, () => ListTagsResponse$];
954
+ var PutPolicy$ = [9, n0, _PP, 0, () => PutPolicyRequest$, () => __Unit];
955
+ var RestoreCertificateAuthority$ = [
935
956
  9,
936
957
  n0,
937
958
  _RCA,
938
959
  0,
939
- () => RestoreCertificateAuthorityRequest,
960
+ () => RestoreCertificateAuthorityRequest$,
940
961
  () => __Unit,
941
962
  ];
942
- var RevokeCertificate = [9, n0, _RCe, 0, () => RevokeCertificateRequest, () => __Unit];
943
- var TagCertificateAuthority = [
963
+ var RevokeCertificate$ = [9, n0, _RCe, 0, () => RevokeCertificateRequest$, () => __Unit];
964
+ var TagCertificateAuthority$ = [
944
965
  9,
945
966
  n0,
946
967
  _TCA,
947
968
  0,
948
- () => TagCertificateAuthorityRequest,
969
+ () => TagCertificateAuthorityRequest$,
949
970
  () => __Unit,
950
971
  ];
951
- var UntagCertificateAuthority = [
972
+ var UntagCertificateAuthority$ = [
952
973
  9,
953
974
  n0,
954
975
  _UCA,
955
976
  0,
956
- () => UntagCertificateAuthorityRequest,
977
+ () => UntagCertificateAuthorityRequest$,
957
978
  () => __Unit,
958
979
  ];
959
- var UpdateCertificateAuthority = [
980
+ var UpdateCertificateAuthority$ = [
960
981
  9,
961
982
  n0,
962
983
  _UCAp,
963
984
  0,
964
- () => UpdateCertificateAuthorityRequest,
985
+ () => UpdateCertificateAuthorityRequest$,
965
986
  () => __Unit,
966
987
  ];
967
988
 
@@ -973,7 +994,7 @@ class CreateCertificateAuthorityAuditReportCommand extends smithyClient.Command
973
994
  })
974
995
  .s("ACMPrivateCA", "CreateCertificateAuthorityAuditReport", {})
975
996
  .n("ACMPCAClient", "CreateCertificateAuthorityAuditReportCommand")
976
- .sc(CreateCertificateAuthorityAuditReport)
997
+ .sc(CreateCertificateAuthorityAuditReport$)
977
998
  .build() {
978
999
  }
979
1000
 
@@ -985,7 +1006,7 @@ class CreateCertificateAuthorityCommand extends smithyClient.Command
985
1006
  })
986
1007
  .s("ACMPrivateCA", "CreateCertificateAuthority", {})
987
1008
  .n("ACMPCAClient", "CreateCertificateAuthorityCommand")
988
- .sc(CreateCertificateAuthority)
1009
+ .sc(CreateCertificateAuthority$)
989
1010
  .build() {
990
1011
  }
991
1012
 
@@ -997,7 +1018,7 @@ class CreatePermissionCommand extends smithyClient.Command
997
1018
  })
998
1019
  .s("ACMPrivateCA", "CreatePermission", {})
999
1020
  .n("ACMPCAClient", "CreatePermissionCommand")
1000
- .sc(CreatePermission)
1021
+ .sc(CreatePermission$)
1001
1022
  .build() {
1002
1023
  }
1003
1024
 
@@ -1009,7 +1030,7 @@ class DeleteCertificateAuthorityCommand extends smithyClient.Command
1009
1030
  })
1010
1031
  .s("ACMPrivateCA", "DeleteCertificateAuthority", {})
1011
1032
  .n("ACMPCAClient", "DeleteCertificateAuthorityCommand")
1012
- .sc(DeleteCertificateAuthority)
1033
+ .sc(DeleteCertificateAuthority$)
1013
1034
  .build() {
1014
1035
  }
1015
1036
 
@@ -1021,7 +1042,7 @@ class DeletePermissionCommand extends smithyClient.Command
1021
1042
  })
1022
1043
  .s("ACMPrivateCA", "DeletePermission", {})
1023
1044
  .n("ACMPCAClient", "DeletePermissionCommand")
1024
- .sc(DeletePermission)
1045
+ .sc(DeletePermission$)
1025
1046
  .build() {
1026
1047
  }
1027
1048
 
@@ -1033,7 +1054,7 @@ class DeletePolicyCommand extends smithyClient.Command
1033
1054
  })
1034
1055
  .s("ACMPrivateCA", "DeletePolicy", {})
1035
1056
  .n("ACMPCAClient", "DeletePolicyCommand")
1036
- .sc(DeletePolicy)
1057
+ .sc(DeletePolicy$)
1037
1058
  .build() {
1038
1059
  }
1039
1060
 
@@ -1045,7 +1066,7 @@ class DescribeCertificateAuthorityAuditReportCommand extends smithyClient.Comman
1045
1066
  })
1046
1067
  .s("ACMPrivateCA", "DescribeCertificateAuthorityAuditReport", {})
1047
1068
  .n("ACMPCAClient", "DescribeCertificateAuthorityAuditReportCommand")
1048
- .sc(DescribeCertificateAuthorityAuditReport)
1069
+ .sc(DescribeCertificateAuthorityAuditReport$)
1049
1070
  .build() {
1050
1071
  }
1051
1072
 
@@ -1057,7 +1078,7 @@ class DescribeCertificateAuthorityCommand extends smithyClient.Command
1057
1078
  })
1058
1079
  .s("ACMPrivateCA", "DescribeCertificateAuthority", {})
1059
1080
  .n("ACMPCAClient", "DescribeCertificateAuthorityCommand")
1060
- .sc(DescribeCertificateAuthority)
1081
+ .sc(DescribeCertificateAuthority$)
1061
1082
  .build() {
1062
1083
  }
1063
1084
 
@@ -1069,7 +1090,7 @@ class GetCertificateAuthorityCertificateCommand extends smithyClient.Command
1069
1090
  })
1070
1091
  .s("ACMPrivateCA", "GetCertificateAuthorityCertificate", {})
1071
1092
  .n("ACMPCAClient", "GetCertificateAuthorityCertificateCommand")
1072
- .sc(GetCertificateAuthorityCertificate)
1093
+ .sc(GetCertificateAuthorityCertificate$)
1073
1094
  .build() {
1074
1095
  }
1075
1096
 
@@ -1081,7 +1102,7 @@ class GetCertificateAuthorityCsrCommand extends smithyClient.Command
1081
1102
  })
1082
1103
  .s("ACMPrivateCA", "GetCertificateAuthorityCsr", {})
1083
1104
  .n("ACMPCAClient", "GetCertificateAuthorityCsrCommand")
1084
- .sc(GetCertificateAuthorityCsr)
1105
+ .sc(GetCertificateAuthorityCsr$)
1085
1106
  .build() {
1086
1107
  }
1087
1108
 
@@ -1093,7 +1114,7 @@ class GetCertificateCommand extends smithyClient.Command
1093
1114
  })
1094
1115
  .s("ACMPrivateCA", "GetCertificate", {})
1095
1116
  .n("ACMPCAClient", "GetCertificateCommand")
1096
- .sc(GetCertificate)
1117
+ .sc(GetCertificate$)
1097
1118
  .build() {
1098
1119
  }
1099
1120
 
@@ -1105,7 +1126,7 @@ class GetPolicyCommand extends smithyClient.Command
1105
1126
  })
1106
1127
  .s("ACMPrivateCA", "GetPolicy", {})
1107
1128
  .n("ACMPCAClient", "GetPolicyCommand")
1108
- .sc(GetPolicy)
1129
+ .sc(GetPolicy$)
1109
1130
  .build() {
1110
1131
  }
1111
1132
 
@@ -1117,7 +1138,7 @@ class ImportCertificateAuthorityCertificateCommand extends smithyClient.Command
1117
1138
  })
1118
1139
  .s("ACMPrivateCA", "ImportCertificateAuthorityCertificate", {})
1119
1140
  .n("ACMPCAClient", "ImportCertificateAuthorityCertificateCommand")
1120
- .sc(ImportCertificateAuthorityCertificate)
1141
+ .sc(ImportCertificateAuthorityCertificate$)
1121
1142
  .build() {
1122
1143
  }
1123
1144
 
@@ -1129,7 +1150,7 @@ class IssueCertificateCommand extends smithyClient.Command
1129
1150
  })
1130
1151
  .s("ACMPrivateCA", "IssueCertificate", {})
1131
1152
  .n("ACMPCAClient", "IssueCertificateCommand")
1132
- .sc(IssueCertificate)
1153
+ .sc(IssueCertificate$)
1133
1154
  .build() {
1134
1155
  }
1135
1156
 
@@ -1141,7 +1162,7 @@ class ListCertificateAuthoritiesCommand extends smithyClient.Command
1141
1162
  })
1142
1163
  .s("ACMPrivateCA", "ListCertificateAuthorities", {})
1143
1164
  .n("ACMPCAClient", "ListCertificateAuthoritiesCommand")
1144
- .sc(ListCertificateAuthorities)
1165
+ .sc(ListCertificateAuthorities$)
1145
1166
  .build() {
1146
1167
  }
1147
1168
 
@@ -1153,7 +1174,7 @@ class ListPermissionsCommand extends smithyClient.Command
1153
1174
  })
1154
1175
  .s("ACMPrivateCA", "ListPermissions", {})
1155
1176
  .n("ACMPCAClient", "ListPermissionsCommand")
1156
- .sc(ListPermissions)
1177
+ .sc(ListPermissions$)
1157
1178
  .build() {
1158
1179
  }
1159
1180
 
@@ -1165,7 +1186,7 @@ class ListTagsCommand extends smithyClient.Command
1165
1186
  })
1166
1187
  .s("ACMPrivateCA", "ListTags", {})
1167
1188
  .n("ACMPCAClient", "ListTagsCommand")
1168
- .sc(ListTags)
1189
+ .sc(ListTags$)
1169
1190
  .build() {
1170
1191
  }
1171
1192
 
@@ -1177,7 +1198,7 @@ class PutPolicyCommand extends smithyClient.Command
1177
1198
  })
1178
1199
  .s("ACMPrivateCA", "PutPolicy", {})
1179
1200
  .n("ACMPCAClient", "PutPolicyCommand")
1180
- .sc(PutPolicy)
1201
+ .sc(PutPolicy$)
1181
1202
  .build() {
1182
1203
  }
1183
1204
 
@@ -1189,7 +1210,7 @@ class RestoreCertificateAuthorityCommand extends smithyClient.Command
1189
1210
  })
1190
1211
  .s("ACMPrivateCA", "RestoreCertificateAuthority", {})
1191
1212
  .n("ACMPCAClient", "RestoreCertificateAuthorityCommand")
1192
- .sc(RestoreCertificateAuthority)
1213
+ .sc(RestoreCertificateAuthority$)
1193
1214
  .build() {
1194
1215
  }
1195
1216
 
@@ -1201,7 +1222,7 @@ class RevokeCertificateCommand extends smithyClient.Command
1201
1222
  })
1202
1223
  .s("ACMPrivateCA", "RevokeCertificate", {})
1203
1224
  .n("ACMPCAClient", "RevokeCertificateCommand")
1204
- .sc(RevokeCertificate)
1225
+ .sc(RevokeCertificate$)
1205
1226
  .build() {
1206
1227
  }
1207
1228
 
@@ -1213,7 +1234,7 @@ class TagCertificateAuthorityCommand extends smithyClient.Command
1213
1234
  })
1214
1235
  .s("ACMPrivateCA", "TagCertificateAuthority", {})
1215
1236
  .n("ACMPCAClient", "TagCertificateAuthorityCommand")
1216
- .sc(TagCertificateAuthority)
1237
+ .sc(TagCertificateAuthority$)
1217
1238
  .build() {
1218
1239
  }
1219
1240
 
@@ -1225,7 +1246,7 @@ class UntagCertificateAuthorityCommand extends smithyClient.Command
1225
1246
  })
1226
1247
  .s("ACMPrivateCA", "UntagCertificateAuthority", {})
1227
1248
  .n("ACMPCAClient", "UntagCertificateAuthorityCommand")
1228
- .sc(UntagCertificateAuthority)
1249
+ .sc(UntagCertificateAuthority$)
1229
1250
  .build() {
1230
1251
  }
1231
1252
 
@@ -1237,7 +1258,7 @@ class UpdateCertificateAuthorityCommand extends smithyClient.Command
1237
1258
  })
1238
1259
  .s("ACMPrivateCA", "UpdateCertificateAuthority", {})
1239
1260
  .n("ACMPCAClient", "UpdateCertificateAuthorityCommand")
1240
- .sc(UpdateCertificateAuthority)
1261
+ .sc(UpdateCertificateAuthority$)
1241
1262
  .build() {
1242
1263
  }
1243
1264
 
@@ -1498,66 +1519,169 @@ Object.defineProperty(exports, "__Client", {
1498
1519
  });
1499
1520
  exports.ACMPCA = ACMPCA;
1500
1521
  exports.ACMPCAClient = ACMPCAClient;
1501
- exports.ACMPCAServiceException = ACMPCAServiceException$1;
1522
+ exports.ACMPCAServiceException = ACMPCAServiceException;
1523
+ exports.ACMPCAServiceException$ = ACMPCAServiceException$;
1524
+ exports.ASN1Subject$ = ASN1Subject$;
1525
+ exports.AccessDescription$ = AccessDescription$;
1526
+ exports.AccessMethod$ = AccessMethod$;
1502
1527
  exports.AccessMethodType = AccessMethodType;
1503
1528
  exports.ActionType = ActionType;
1529
+ exports.ApiPassthrough$ = ApiPassthrough$;
1504
1530
  exports.AuditReportResponseFormat = AuditReportResponseFormat;
1505
1531
  exports.AuditReportStatus = AuditReportStatus;
1532
+ exports.CertificateAuthority$ = CertificateAuthority$;
1533
+ exports.CertificateAuthorityConfiguration$ = CertificateAuthorityConfiguration$;
1506
1534
  exports.CertificateAuthorityStatus = CertificateAuthorityStatus;
1507
1535
  exports.CertificateAuthorityType = CertificateAuthorityType;
1508
1536
  exports.CertificateAuthorityUsageMode = CertificateAuthorityUsageMode;
1509
- exports.CertificateMismatchException = CertificateMismatchException$1;
1510
- exports.ConcurrentModificationException = ConcurrentModificationException$1;
1537
+ exports.CertificateMismatchException = CertificateMismatchException;
1538
+ exports.CertificateMismatchException$ = CertificateMismatchException$;
1539
+ exports.ConcurrentModificationException = ConcurrentModificationException;
1540
+ exports.ConcurrentModificationException$ = ConcurrentModificationException$;
1541
+ exports.CreateCertificateAuthority$ = CreateCertificateAuthority$;
1542
+ exports.CreateCertificateAuthorityAuditReport$ = CreateCertificateAuthorityAuditReport$;
1511
1543
  exports.CreateCertificateAuthorityAuditReportCommand = CreateCertificateAuthorityAuditReportCommand;
1544
+ exports.CreateCertificateAuthorityAuditReportRequest$ = CreateCertificateAuthorityAuditReportRequest$;
1545
+ exports.CreateCertificateAuthorityAuditReportResponse$ = CreateCertificateAuthorityAuditReportResponse$;
1512
1546
  exports.CreateCertificateAuthorityCommand = CreateCertificateAuthorityCommand;
1547
+ exports.CreateCertificateAuthorityRequest$ = CreateCertificateAuthorityRequest$;
1548
+ exports.CreateCertificateAuthorityResponse$ = CreateCertificateAuthorityResponse$;
1549
+ exports.CreatePermission$ = CreatePermission$;
1513
1550
  exports.CreatePermissionCommand = CreatePermissionCommand;
1551
+ exports.CreatePermissionRequest$ = CreatePermissionRequest$;
1552
+ exports.CrlConfiguration$ = CrlConfiguration$;
1553
+ exports.CrlDistributionPointExtensionConfiguration$ = CrlDistributionPointExtensionConfiguration$;
1514
1554
  exports.CrlType = CrlType;
1555
+ exports.CsrExtensions$ = CsrExtensions$;
1556
+ exports.CustomAttribute$ = CustomAttribute$;
1557
+ exports.CustomExtension$ = CustomExtension$;
1558
+ exports.DeleteCertificateAuthority$ = DeleteCertificateAuthority$;
1515
1559
  exports.DeleteCertificateAuthorityCommand = DeleteCertificateAuthorityCommand;
1560
+ exports.DeleteCertificateAuthorityRequest$ = DeleteCertificateAuthorityRequest$;
1561
+ exports.DeletePermission$ = DeletePermission$;
1516
1562
  exports.DeletePermissionCommand = DeletePermissionCommand;
1563
+ exports.DeletePermissionRequest$ = DeletePermissionRequest$;
1564
+ exports.DeletePolicy$ = DeletePolicy$;
1517
1565
  exports.DeletePolicyCommand = DeletePolicyCommand;
1566
+ exports.DeletePolicyRequest$ = DeletePolicyRequest$;
1567
+ exports.DescribeCertificateAuthority$ = DescribeCertificateAuthority$;
1568
+ exports.DescribeCertificateAuthorityAuditReport$ = DescribeCertificateAuthorityAuditReport$;
1518
1569
  exports.DescribeCertificateAuthorityAuditReportCommand = DescribeCertificateAuthorityAuditReportCommand;
1570
+ exports.DescribeCertificateAuthorityAuditReportRequest$ = DescribeCertificateAuthorityAuditReportRequest$;
1571
+ exports.DescribeCertificateAuthorityAuditReportResponse$ = DescribeCertificateAuthorityAuditReportResponse$;
1519
1572
  exports.DescribeCertificateAuthorityCommand = DescribeCertificateAuthorityCommand;
1573
+ exports.DescribeCertificateAuthorityRequest$ = DescribeCertificateAuthorityRequest$;
1574
+ exports.DescribeCertificateAuthorityResponse$ = DescribeCertificateAuthorityResponse$;
1575
+ exports.EdiPartyName$ = EdiPartyName$;
1576
+ exports.ExtendedKeyUsage$ = ExtendedKeyUsage$;
1520
1577
  exports.ExtendedKeyUsageType = ExtendedKeyUsageType;
1578
+ exports.Extensions$ = Extensions$;
1521
1579
  exports.FailureReason = FailureReason;
1580
+ exports.GeneralName$ = GeneralName$;
1581
+ exports.GetCertificate$ = GetCertificate$;
1582
+ exports.GetCertificateAuthorityCertificate$ = GetCertificateAuthorityCertificate$;
1522
1583
  exports.GetCertificateAuthorityCertificateCommand = GetCertificateAuthorityCertificateCommand;
1584
+ exports.GetCertificateAuthorityCertificateRequest$ = GetCertificateAuthorityCertificateRequest$;
1585
+ exports.GetCertificateAuthorityCertificateResponse$ = GetCertificateAuthorityCertificateResponse$;
1586
+ exports.GetCertificateAuthorityCsr$ = GetCertificateAuthorityCsr$;
1523
1587
  exports.GetCertificateAuthorityCsrCommand = GetCertificateAuthorityCsrCommand;
1588
+ exports.GetCertificateAuthorityCsrRequest$ = GetCertificateAuthorityCsrRequest$;
1589
+ exports.GetCertificateAuthorityCsrResponse$ = GetCertificateAuthorityCsrResponse$;
1524
1590
  exports.GetCertificateCommand = GetCertificateCommand;
1591
+ exports.GetCertificateRequest$ = GetCertificateRequest$;
1592
+ exports.GetCertificateResponse$ = GetCertificateResponse$;
1593
+ exports.GetPolicy$ = GetPolicy$;
1525
1594
  exports.GetPolicyCommand = GetPolicyCommand;
1595
+ exports.GetPolicyRequest$ = GetPolicyRequest$;
1596
+ exports.GetPolicyResponse$ = GetPolicyResponse$;
1597
+ exports.ImportCertificateAuthorityCertificate$ = ImportCertificateAuthorityCertificate$;
1526
1598
  exports.ImportCertificateAuthorityCertificateCommand = ImportCertificateAuthorityCertificateCommand;
1527
- exports.InvalidArgsException = InvalidArgsException$1;
1528
- exports.InvalidArnException = InvalidArnException$1;
1529
- exports.InvalidNextTokenException = InvalidNextTokenException$1;
1530
- exports.InvalidPolicyException = InvalidPolicyException$1;
1531
- exports.InvalidRequestException = InvalidRequestException$1;
1532
- exports.InvalidStateException = InvalidStateException$1;
1533
- exports.InvalidTagException = InvalidTagException$1;
1599
+ exports.ImportCertificateAuthorityCertificateRequest$ = ImportCertificateAuthorityCertificateRequest$;
1600
+ exports.InvalidArgsException = InvalidArgsException;
1601
+ exports.InvalidArgsException$ = InvalidArgsException$;
1602
+ exports.InvalidArnException = InvalidArnException;
1603
+ exports.InvalidArnException$ = InvalidArnException$;
1604
+ exports.InvalidNextTokenException = InvalidNextTokenException;
1605
+ exports.InvalidNextTokenException$ = InvalidNextTokenException$;
1606
+ exports.InvalidPolicyException = InvalidPolicyException;
1607
+ exports.InvalidPolicyException$ = InvalidPolicyException$;
1608
+ exports.InvalidRequestException = InvalidRequestException;
1609
+ exports.InvalidRequestException$ = InvalidRequestException$;
1610
+ exports.InvalidStateException = InvalidStateException;
1611
+ exports.InvalidStateException$ = InvalidStateException$;
1612
+ exports.InvalidTagException = InvalidTagException;
1613
+ exports.InvalidTagException$ = InvalidTagException$;
1614
+ exports.IssueCertificate$ = IssueCertificate$;
1534
1615
  exports.IssueCertificateCommand = IssueCertificateCommand;
1616
+ exports.IssueCertificateRequest$ = IssueCertificateRequest$;
1617
+ exports.IssueCertificateResponse$ = IssueCertificateResponse$;
1535
1618
  exports.KeyAlgorithm = KeyAlgorithm;
1536
1619
  exports.KeyStorageSecurityStandard = KeyStorageSecurityStandard;
1537
- exports.LimitExceededException = LimitExceededException$1;
1620
+ exports.KeyUsage$ = KeyUsage$;
1621
+ exports.LimitExceededException = LimitExceededException;
1622
+ exports.LimitExceededException$ = LimitExceededException$;
1623
+ exports.ListCertificateAuthorities$ = ListCertificateAuthorities$;
1538
1624
  exports.ListCertificateAuthoritiesCommand = ListCertificateAuthoritiesCommand;
1625
+ exports.ListCertificateAuthoritiesRequest$ = ListCertificateAuthoritiesRequest$;
1626
+ exports.ListCertificateAuthoritiesResponse$ = ListCertificateAuthoritiesResponse$;
1627
+ exports.ListPermissions$ = ListPermissions$;
1539
1628
  exports.ListPermissionsCommand = ListPermissionsCommand;
1629
+ exports.ListPermissionsRequest$ = ListPermissionsRequest$;
1630
+ exports.ListPermissionsResponse$ = ListPermissionsResponse$;
1631
+ exports.ListTags$ = ListTags$;
1540
1632
  exports.ListTagsCommand = ListTagsCommand;
1541
- exports.LockoutPreventedException = LockoutPreventedException$1;
1542
- exports.MalformedCSRException = MalformedCSRException$1;
1543
- exports.MalformedCertificateException = MalformedCertificateException$1;
1544
- exports.PermissionAlreadyExistsException = PermissionAlreadyExistsException$1;
1633
+ exports.ListTagsRequest$ = ListTagsRequest$;
1634
+ exports.ListTagsResponse$ = ListTagsResponse$;
1635
+ exports.LockoutPreventedException = LockoutPreventedException;
1636
+ exports.LockoutPreventedException$ = LockoutPreventedException$;
1637
+ exports.MalformedCSRException = MalformedCSRException;
1638
+ exports.MalformedCSRException$ = MalformedCSRException$;
1639
+ exports.MalformedCertificateException = MalformedCertificateException;
1640
+ exports.MalformedCertificateException$ = MalformedCertificateException$;
1641
+ exports.OcspConfiguration$ = OcspConfiguration$;
1642
+ exports.OtherName$ = OtherName$;
1643
+ exports.Permission$ = Permission$;
1644
+ exports.PermissionAlreadyExistsException = PermissionAlreadyExistsException;
1645
+ exports.PermissionAlreadyExistsException$ = PermissionAlreadyExistsException$;
1646
+ exports.PolicyInformation$ = PolicyInformation$;
1545
1647
  exports.PolicyQualifierId = PolicyQualifierId;
1648
+ exports.PolicyQualifierInfo$ = PolicyQualifierInfo$;
1649
+ exports.PutPolicy$ = PutPolicy$;
1546
1650
  exports.PutPolicyCommand = PutPolicyCommand;
1547
- exports.RequestAlreadyProcessedException = RequestAlreadyProcessedException$1;
1548
- exports.RequestFailedException = RequestFailedException$1;
1549
- exports.RequestInProgressException = RequestInProgressException$1;
1550
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1651
+ exports.PutPolicyRequest$ = PutPolicyRequest$;
1652
+ exports.Qualifier$ = Qualifier$;
1653
+ exports.RequestAlreadyProcessedException = RequestAlreadyProcessedException;
1654
+ exports.RequestAlreadyProcessedException$ = RequestAlreadyProcessedException$;
1655
+ exports.RequestFailedException = RequestFailedException;
1656
+ exports.RequestFailedException$ = RequestFailedException$;
1657
+ exports.RequestInProgressException = RequestInProgressException;
1658
+ exports.RequestInProgressException$ = RequestInProgressException$;
1659
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1660
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1551
1661
  exports.ResourceOwner = ResourceOwner;
1662
+ exports.RestoreCertificateAuthority$ = RestoreCertificateAuthority$;
1552
1663
  exports.RestoreCertificateAuthorityCommand = RestoreCertificateAuthorityCommand;
1664
+ exports.RestoreCertificateAuthorityRequest$ = RestoreCertificateAuthorityRequest$;
1665
+ exports.RevocationConfiguration$ = RevocationConfiguration$;
1553
1666
  exports.RevocationReason = RevocationReason;
1667
+ exports.RevokeCertificate$ = RevokeCertificate$;
1554
1668
  exports.RevokeCertificateCommand = RevokeCertificateCommand;
1669
+ exports.RevokeCertificateRequest$ = RevokeCertificateRequest$;
1555
1670
  exports.S3ObjectAcl = S3ObjectAcl;
1556
1671
  exports.SigningAlgorithm = SigningAlgorithm;
1672
+ exports.Tag$ = Tag$;
1673
+ exports.TagCertificateAuthority$ = TagCertificateAuthority$;
1557
1674
  exports.TagCertificateAuthorityCommand = TagCertificateAuthorityCommand;
1558
- exports.TooManyTagsException = TooManyTagsException$1;
1675
+ exports.TagCertificateAuthorityRequest$ = TagCertificateAuthorityRequest$;
1676
+ exports.TooManyTagsException = TooManyTagsException;
1677
+ exports.TooManyTagsException$ = TooManyTagsException$;
1678
+ exports.UntagCertificateAuthority$ = UntagCertificateAuthority$;
1559
1679
  exports.UntagCertificateAuthorityCommand = UntagCertificateAuthorityCommand;
1680
+ exports.UntagCertificateAuthorityRequest$ = UntagCertificateAuthorityRequest$;
1681
+ exports.UpdateCertificateAuthority$ = UpdateCertificateAuthority$;
1560
1682
  exports.UpdateCertificateAuthorityCommand = UpdateCertificateAuthorityCommand;
1683
+ exports.UpdateCertificateAuthorityRequest$ = UpdateCertificateAuthorityRequest$;
1684
+ exports.Validity$ = Validity$;
1561
1685
  exports.ValidityPeriodType = ValidityPeriodType;
1562
1686
  exports.paginateListCertificateAuthorities = paginateListCertificateAuthorities;
1563
1687
  exports.paginateListPermissions = paginateListPermissions;