@aws-sdk/client-acm-pca 3.987.0 → 3.989.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.
package/dist-cjs/index.js CHANGED
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
18
19
  var utilWaiter = require('@smithy/util-waiter');
20
+ var errors = require('./models/errors');
21
+ var ACMPCAServiceException = require('./models/ACMPCAServiceException');
19
22
 
20
23
  const resolveClientEndpointParameters = (options) => {
21
24
  return Object.assign(options, {
@@ -111,977 +114,6 @@ class ACMPCAClient extends smithyClient.Client {
111
114
  }
112
115
  }
113
116
 
114
- class ACMPCAServiceException extends smithyClient.ServiceException {
115
- constructor(options) {
116
- super(options);
117
- Object.setPrototypeOf(this, ACMPCAServiceException.prototype);
118
- }
119
- }
120
-
121
- class InvalidArgsException extends ACMPCAServiceException {
122
- name = "InvalidArgsException";
123
- $fault = "client";
124
- constructor(opts) {
125
- super({
126
- name: "InvalidArgsException",
127
- $fault: "client",
128
- ...opts,
129
- });
130
- Object.setPrototypeOf(this, InvalidArgsException.prototype);
131
- }
132
- }
133
- class InvalidPolicyException extends ACMPCAServiceException {
134
- name = "InvalidPolicyException";
135
- $fault = "client";
136
- constructor(opts) {
137
- super({
138
- name: "InvalidPolicyException",
139
- $fault: "client",
140
- ...opts,
141
- });
142
- Object.setPrototypeOf(this, InvalidPolicyException.prototype);
143
- }
144
- }
145
- class InvalidTagException extends ACMPCAServiceException {
146
- name = "InvalidTagException";
147
- $fault = "client";
148
- constructor(opts) {
149
- super({
150
- name: "InvalidTagException",
151
- $fault: "client",
152
- ...opts,
153
- });
154
- Object.setPrototypeOf(this, InvalidTagException.prototype);
155
- }
156
- }
157
- class LimitExceededException extends ACMPCAServiceException {
158
- name = "LimitExceededException";
159
- $fault = "client";
160
- constructor(opts) {
161
- super({
162
- name: "LimitExceededException",
163
- $fault: "client",
164
- ...opts,
165
- });
166
- Object.setPrototypeOf(this, LimitExceededException.prototype);
167
- }
168
- }
169
- class InvalidArnException extends ACMPCAServiceException {
170
- name = "InvalidArnException";
171
- $fault = "client";
172
- constructor(opts) {
173
- super({
174
- name: "InvalidArnException",
175
- $fault: "client",
176
- ...opts,
177
- });
178
- Object.setPrototypeOf(this, InvalidArnException.prototype);
179
- }
180
- }
181
- class InvalidStateException extends ACMPCAServiceException {
182
- name = "InvalidStateException";
183
- $fault = "client";
184
- constructor(opts) {
185
- super({
186
- name: "InvalidStateException",
187
- $fault: "client",
188
- ...opts,
189
- });
190
- Object.setPrototypeOf(this, InvalidStateException.prototype);
191
- }
192
- }
193
- class RequestFailedException extends ACMPCAServiceException {
194
- name = "RequestFailedException";
195
- $fault = "client";
196
- constructor(opts) {
197
- super({
198
- name: "RequestFailedException",
199
- $fault: "client",
200
- ...opts,
201
- });
202
- Object.setPrototypeOf(this, RequestFailedException.prototype);
203
- }
204
- }
205
- class RequestInProgressException extends ACMPCAServiceException {
206
- name = "RequestInProgressException";
207
- $fault = "client";
208
- constructor(opts) {
209
- super({
210
- name: "RequestInProgressException",
211
- $fault: "client",
212
- ...opts,
213
- });
214
- Object.setPrototypeOf(this, RequestInProgressException.prototype);
215
- }
216
- }
217
- class ResourceNotFoundException extends ACMPCAServiceException {
218
- name = "ResourceNotFoundException";
219
- $fault = "client";
220
- constructor(opts) {
221
- super({
222
- name: "ResourceNotFoundException",
223
- $fault: "client",
224
- ...opts,
225
- });
226
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
227
- }
228
- }
229
- class PermissionAlreadyExistsException extends ACMPCAServiceException {
230
- name = "PermissionAlreadyExistsException";
231
- $fault = "client";
232
- constructor(opts) {
233
- super({
234
- name: "PermissionAlreadyExistsException",
235
- $fault: "client",
236
- ...opts,
237
- });
238
- Object.setPrototypeOf(this, PermissionAlreadyExistsException.prototype);
239
- }
240
- }
241
- class ConcurrentModificationException extends ACMPCAServiceException {
242
- name = "ConcurrentModificationException";
243
- $fault = "client";
244
- constructor(opts) {
245
- super({
246
- name: "ConcurrentModificationException",
247
- $fault: "client",
248
- ...opts,
249
- });
250
- Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
251
- }
252
- }
253
- class LockoutPreventedException extends ACMPCAServiceException {
254
- name = "LockoutPreventedException";
255
- $fault = "client";
256
- constructor(opts) {
257
- super({
258
- name: "LockoutPreventedException",
259
- $fault: "client",
260
- ...opts,
261
- });
262
- Object.setPrototypeOf(this, LockoutPreventedException.prototype);
263
- }
264
- }
265
- class CertificateMismatchException extends ACMPCAServiceException {
266
- name = "CertificateMismatchException";
267
- $fault = "client";
268
- constructor(opts) {
269
- super({
270
- name: "CertificateMismatchException",
271
- $fault: "client",
272
- ...opts,
273
- });
274
- Object.setPrototypeOf(this, CertificateMismatchException.prototype);
275
- }
276
- }
277
- class InvalidRequestException extends ACMPCAServiceException {
278
- name = "InvalidRequestException";
279
- $fault = "client";
280
- constructor(opts) {
281
- super({
282
- name: "InvalidRequestException",
283
- $fault: "client",
284
- ...opts,
285
- });
286
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
287
- }
288
- }
289
- class MalformedCertificateException extends ACMPCAServiceException {
290
- name = "MalformedCertificateException";
291
- $fault = "client";
292
- constructor(opts) {
293
- super({
294
- name: "MalformedCertificateException",
295
- $fault: "client",
296
- ...opts,
297
- });
298
- Object.setPrototypeOf(this, MalformedCertificateException.prototype);
299
- }
300
- }
301
- class MalformedCSRException extends ACMPCAServiceException {
302
- name = "MalformedCSRException";
303
- $fault = "client";
304
- constructor(opts) {
305
- super({
306
- name: "MalformedCSRException",
307
- $fault: "client",
308
- ...opts,
309
- });
310
- Object.setPrototypeOf(this, MalformedCSRException.prototype);
311
- }
312
- }
313
- class InvalidNextTokenException extends ACMPCAServiceException {
314
- name = "InvalidNextTokenException";
315
- $fault = "client";
316
- constructor(opts) {
317
- super({
318
- name: "InvalidNextTokenException",
319
- $fault: "client",
320
- ...opts,
321
- });
322
- Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
323
- }
324
- }
325
- class RequestAlreadyProcessedException extends ACMPCAServiceException {
326
- name = "RequestAlreadyProcessedException";
327
- $fault = "client";
328
- constructor(opts) {
329
- super({
330
- name: "RequestAlreadyProcessedException",
331
- $fault: "client",
332
- ...opts,
333
- });
334
- Object.setPrototypeOf(this, RequestAlreadyProcessedException.prototype);
335
- }
336
- }
337
- class TooManyTagsException extends ACMPCAServiceException {
338
- name = "TooManyTagsException";
339
- $fault = "client";
340
- constructor(opts) {
341
- super({
342
- name: "TooManyTagsException",
343
- $fault: "client",
344
- ...opts,
345
- });
346
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
347
- }
348
- }
349
-
350
- const _A = "Arn";
351
- const _AD = "AccessDescription";
352
- const _ADL = "AccessDescriptionList";
353
- const _AL = "AccessLocation";
354
- const _AM = "AccessMethod";
355
- const _AMT = "AccessMethodType";
356
- const _AP = "ApiPassthrough";
357
- const _ARI = "AuditReportId";
358
- const _ARRF = "AuditReportResponseFormat";
359
- const _ARS = "AuditReportStatus";
360
- const _ASNS = "ASN1Subject";
361
- const _Ac = "Actions";
362
- const _C = "Country";
363
- const _CA = "CustomAttributes";
364
- const _CAA = "CertificateAuthorityArn";
365
- const _CAC = "CertificateAuthorityConfiguration";
366
- const _CAL = "CustomAttributeList";
367
- const _CAT = "CertificateAuthorityType";
368
- const _CAe = "CertificateAuthority";
369
- const _CAer = "CertificateArn";
370
- const _CAert = "CertificateAuthorities";
371
- const _CAr = "CreatedAt";
372
- const _CAu = "CustomAttribute";
373
- const _CC = "CrlConfiguration";
374
- const _CCA = "CreateCertificateAuthority";
375
- const _CCAAR = "CreateCertificateAuthorityAuditReport";
376
- const _CCAARR = "CreateCertificateAuthorityAuditReportRequest";
377
- const _CCAARRr = "CreateCertificateAuthorityAuditReportResponse";
378
- const _CCAR = "CreateCertificateAuthorityRequest";
379
- const _CCARr = "CreateCertificateAuthorityResponse";
380
- const _CCe = "CertificateChain";
381
- const _CCu = "CustomCname";
382
- const _CDPEC = "CrlDistributionPointExtensionConfiguration";
383
- const _CE = "CsrExtensions";
384
- const _CEL = "CustomExtensionList";
385
- const _CEu = "CustomExtension";
386
- const _CEus = "CustomExtensions";
387
- const _CME = "CertificateMismatchException";
388
- const _CMEo = "ConcurrentModificationException";
389
- const _CN = "CommonName";
390
- const _COI = "CustomObjectIdentifier";
391
- const _CP = "CustomPath";
392
- const _CPI = "CertPolicyId";
393
- const _CPL = "CertificatePolicyList";
394
- const _CPR = "CreatePermissionRequest";
395
- const _CPe = "CertificatePolicies";
396
- const _CPr = "CreatePermission";
397
- const _CRLS = "CRLSign";
398
- const _CS = "CertificateSerial";
399
- const _CT = "CrlType";
400
- const _CU = "CpsUri";
401
- const _Ce = "Certificate";
402
- const _Cr = "Critical";
403
- const _Cs = "Csr";
404
- const _DCA = "DeleteCertificateAuthority";
405
- const _DCAAR = "DescribeCertificateAuthorityAuditReport";
406
- const _DCAARR = "DescribeCertificateAuthorityAuditReportRequest";
407
- const _DCAARRe = "DescribeCertificateAuthorityAuditReportResponse";
408
- const _DCAR = "DeleteCertificateAuthorityRequest";
409
- const _DCARe = "DescribeCertificateAuthorityRequest";
410
- const _DCARes = "DescribeCertificateAuthorityResponse";
411
- const _DCAe = "DescribeCertificateAuthority";
412
- const _DE = "DataEncipherment";
413
- const _DN = "DnsName";
414
- const _DNQ = "DistinguishedNameQualifier";
415
- const _DNi = "DirectoryName";
416
- const _DO = "DecipherOnly";
417
- const _DP = "DeletePermission";
418
- const _DPR = "DeletePermissionRequest";
419
- const _DPRe = "DeletePolicyRequest";
420
- const _DPe = "DeletePolicy";
421
- const _DS = "DigitalSignature";
422
- const _E = "Extensions";
423
- const _EID = "ExpirationInDays";
424
- const _EKU = "ExtendedKeyUsage";
425
- const _EKUL = "ExtendedKeyUsageList";
426
- const _EKUOI = "ExtendedKeyUsageObjectIdentifier";
427
- const _EKUT = "ExtendedKeyUsageType";
428
- const _EO = "EncipherOnly";
429
- const _EPN = "EdiPartyName";
430
- const _En = "Enabled";
431
- const _FR = "FailureReason";
432
- const _GC = "GetCertificate";
433
- const _GCAC = "GetCertificateAuthorityCertificate";
434
- const _GCACR = "GetCertificateAuthorityCertificateRequest";
435
- const _GCACRe = "GetCertificateAuthorityCertificateResponse";
436
- const _GCACRet = "GetCertificateAuthorityCsrRequest";
437
- const _GCACRete = "GetCertificateAuthorityCsrResponse";
438
- const _GCACe = "GetCertificateAuthorityCsr";
439
- const _GCR = "GetCertificateRequest";
440
- const _GCRe = "GetCertificateResponse";
441
- const _GN = "GivenName";
442
- const _GNL = "GeneralNameList";
443
- const _GNe = "GeneralName";
444
- const _GP = "GetPolicy";
445
- const _GPR = "GetPolicyRequest";
446
- const _GPRe = "GetPolicyResponse";
447
- const _GQ = "GenerationQualifier";
448
- const _I = "Initials";
449
- const _IA = "IpAddress";
450
- const _IAE = "InvalidArgsException";
451
- const _IAEn = "InvalidArnException";
452
- const _IC = "IssueCertificate";
453
- const _ICAC = "ImportCertificateAuthorityCertificate";
454
- const _ICACR = "ImportCertificateAuthorityCertificateRequest";
455
- const _ICR = "IssueCertificateRequest";
456
- const _ICRs = "IssueCertificateResponse";
457
- const _INTE = "InvalidNextTokenException";
458
- const _IPE = "InvalidPolicyException";
459
- const _IRE = "InvalidRequestException";
460
- const _ISE = "InvalidStateException";
461
- const _IT = "IdempotencyToken";
462
- const _ITE = "InvalidTagException";
463
- const _K = "Key";
464
- const _KA = "KeyAlgorithm";
465
- const _KAe = "KeyAgreement";
466
- const _KCS = "KeyCertSign";
467
- const _KE = "KeyEncipherment";
468
- const _KSSS = "KeyStorageSecurityStandard";
469
- const _KU = "KeyUsage";
470
- const _L = "Locality";
471
- const _LCA = "ListCertificateAuthorities";
472
- const _LCAR = "ListCertificateAuthoritiesRequest";
473
- const _LCARi = "ListCertificateAuthoritiesResponse";
474
- const _LEE = "LimitExceededException";
475
- const _LP = "ListPermissions";
476
- const _LPE = "LockoutPreventedException";
477
- const _LPR = "ListPermissionsRequest";
478
- const _LPRi = "ListPermissionsResponse";
479
- const _LSCA = "LastStateChangeAt";
480
- const _LT = "ListTags";
481
- const _LTR = "ListTagsRequest";
482
- const _LTRi = "ListTagsResponse";
483
- const _MCE = "MalformedCertificateException";
484
- const _MCSRE = "MalformedCSRException";
485
- const _MR = "MaxResults";
486
- const _NA = "NotAfter";
487
- const _NAa = "NameAssigner";
488
- const _NB = "NotBefore";
489
- const _NR = "NonRepudiation";
490
- const _NT = "NextToken";
491
- const _O = "Organization";
492
- const _OA = "OwnerAccount";
493
- const _OC = "OcspConfiguration";
494
- const _OCC = "OcspCustomCname";
495
- const _OE = "OmitExtension";
496
- const _OI = "ObjectIdentifier";
497
- const _ON = "OtherName";
498
- const _OU = "OrganizationalUnit";
499
- const _P = "Pseudonym";
500
- const _PAEE = "PermissionAlreadyExistsException";
501
- const _PDTID = "PermanentDeletionTimeInDays";
502
- const _PI = "PolicyInformation";
503
- const _PL = "PermissionList";
504
- const _PN = "PartyName";
505
- const _PP = "PutPolicy";
506
- const _PPR = "PutPolicyRequest";
507
- const _PQ = "PolicyQualifiers";
508
- const _PQI = "PolicyQualifierInfo";
509
- const _PQIL = "PolicyQualifierInfoList";
510
- const _PQIo = "PolicyQualifierId";
511
- const _Pe = "Permissions";
512
- const _Per = "Permission";
513
- const _Po = "Policy";
514
- const _Pr = "Principal";
515
- const _Q = "Qualifier";
516
- const _RA = "ResourceArn";
517
- const _RAPE = "RequestAlreadyProcessedException";
518
- const _RC = "RevocationConfiguration";
519
- const _RCA = "RestoreCertificateAuthority";
520
- const _RCAR = "RestoreCertificateAuthorityRequest";
521
- const _RCR = "RevokeCertificateRequest";
522
- const _RCe = "RevokeCertificate";
523
- const _RFE = "RequestFailedException";
524
- const _RI = "RegisteredId";
525
- const _RIPE = "RequestInProgressException";
526
- const _RN = "Rfc822Name";
527
- const _RNFE = "ResourceNotFoundException";
528
- const _RO = "ResourceOwner";
529
- const _RR = "RevocationReason";
530
- const _RU = "RestorableUntil";
531
- const _S = "Subject";
532
- const _SA = "SigningAlgorithm";
533
- const _SAN = "SubjectAlternativeNames";
534
- const _SAo = "SourceAccount";
535
- const _SBN = "S3BucketName";
536
- const _SIA = "SubjectInformationAccess";
537
- const _SK = "S3Key";
538
- const _SN = "SerialNumber";
539
- const _SOA = "S3ObjectAcl";
540
- const _Se = "Serial";
541
- const _St = "State";
542
- const _Sta = "Status";
543
- const _Su = "Surname";
544
- const _T = "Title";
545
- const _TA = "TemplateArn";
546
- const _TCA = "TagCertificateAuthority";
547
- const _TCAR = "TagCertificateAuthorityRequest";
548
- const _TI = "TypeId";
549
- const _TL = "TagList";
550
- const _TMTE = "TooManyTagsException";
551
- const _Ta = "Tags";
552
- const _Tag = "Tag";
553
- const _Ty = "Type";
554
- const _UCA = "UntagCertificateAuthority";
555
- const _UCAR = "UntagCertificateAuthorityRequest";
556
- const _UCARp = "UpdateCertificateAuthorityRequest";
557
- const _UCAp = "UpdateCertificateAuthority";
558
- const _UM = "UsageMode";
559
- const _URI = "UniformResourceIdentifier";
560
- const _V = "Value";
561
- const _VNB = "ValidityNotBefore";
562
- const _Va = "Validity";
563
- const _c = "client";
564
- const _e = "error";
565
- const _m = "message";
566
- const _s = "smithy.ts.sdk.synthetic.com.amazonaws.acmpca";
567
- const n0 = "com.amazonaws.acmpca";
568
- var AccessDescription$ = [3, n0, _AD,
569
- 0,
570
- [_AM, _AL],
571
- [() => AccessMethod$, () => GeneralName$], 2
572
- ];
573
- var AccessMethod$ = [3, n0, _AM,
574
- 0,
575
- [_COI, _AMT],
576
- [0, 0]
577
- ];
578
- var ApiPassthrough$ = [3, n0, _AP,
579
- 0,
580
- [_E, _S],
581
- [() => Extensions$, () => ASN1Subject$]
582
- ];
583
- var ASN1Subject$ = [3, n0, _ASNS,
584
- 0,
585
- [_C, _O, _OU, _DNQ, _St, _CN, _SN, _L, _T, _Su, _GN, _I, _P, _GQ, _CA],
586
- [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => CustomAttributeList]
587
- ];
588
- var CertificateAuthority$ = [3, n0, _CAe,
589
- 0,
590
- [_A, _OA, _CAr, _LSCA, _Ty, _Se, _Sta, _NB, _NA, _FR, _CAC, _RC, _RU, _KSSS, _UM],
591
- [0, 0, 4, 4, 0, 0, 0, 4, 4, 0, () => CertificateAuthorityConfiguration$, () => RevocationConfiguration$, 4, 0, 0]
592
- ];
593
- var CertificateAuthorityConfiguration$ = [3, n0, _CAC,
594
- 0,
595
- [_KA, _SA, _S, _CE],
596
- [0, 0, () => ASN1Subject$, () => CsrExtensions$], 3
597
- ];
598
- var CertificateMismatchException$ = [-3, n0, _CME,
599
- { [_e]: _c },
600
- [_m],
601
- [0]
602
- ];
603
- schema.TypeRegistry.for(n0).registerError(CertificateMismatchException$, CertificateMismatchException);
604
- var ConcurrentModificationException$ = [-3, n0, _CMEo,
605
- { [_e]: _c },
606
- [_m],
607
- [0]
608
- ];
609
- schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
610
- var CreateCertificateAuthorityAuditReportRequest$ = [3, n0, _CCAARR,
611
- 0,
612
- [_CAA, _SBN, _ARRF],
613
- [0, 0, 0], 3
614
- ];
615
- var CreateCertificateAuthorityAuditReportResponse$ = [3, n0, _CCAARRr,
616
- 0,
617
- [_ARI, _SK],
618
- [0, 0]
619
- ];
620
- var CreateCertificateAuthorityRequest$ = [3, n0, _CCAR,
621
- 0,
622
- [_CAC, _CAT, _RC, _IT, _KSSS, _Ta, _UM],
623
- [() => CertificateAuthorityConfiguration$, 0, () => RevocationConfiguration$, 0, 0, () => TagList, 0], 2
624
- ];
625
- var CreateCertificateAuthorityResponse$ = [3, n0, _CCARr,
626
- 0,
627
- [_CAA],
628
- [0]
629
- ];
630
- var CreatePermissionRequest$ = [3, n0, _CPR,
631
- 0,
632
- [_CAA, _Pr, _Ac, _SAo],
633
- [0, 0, 64 | 0, 0], 3
634
- ];
635
- var CrlConfiguration$ = [3, n0, _CC,
636
- 0,
637
- [_En, _EID, _CCu, _SBN, _SOA, _CDPEC, _CT, _CP],
638
- [2, 1, 0, 0, 0, () => CrlDistributionPointExtensionConfiguration$, 0, 0], 1
639
- ];
640
- var CrlDistributionPointExtensionConfiguration$ = [3, n0, _CDPEC,
641
- 0,
642
- [_OE],
643
- [2], 1
644
- ];
645
- var CsrExtensions$ = [3, n0, _CE,
646
- 0,
647
- [_KU, _SIA],
648
- [() => KeyUsage$, () => AccessDescriptionList]
649
- ];
650
- var CustomAttribute$ = [3, n0, _CAu,
651
- 0,
652
- [_OI, _V],
653
- [0, 0], 2
654
- ];
655
- var CustomExtension$ = [3, n0, _CEu,
656
- 0,
657
- [_OI, _V, _Cr],
658
- [0, 0, 2], 2
659
- ];
660
- var DeleteCertificateAuthorityRequest$ = [3, n0, _DCAR,
661
- 0,
662
- [_CAA, _PDTID],
663
- [0, 1], 1
664
- ];
665
- var DeletePermissionRequest$ = [3, n0, _DPR,
666
- 0,
667
- [_CAA, _Pr, _SAo],
668
- [0, 0, 0], 2
669
- ];
670
- var DeletePolicyRequest$ = [3, n0, _DPRe,
671
- 0,
672
- [_RA],
673
- [0], 1
674
- ];
675
- var DescribeCertificateAuthorityAuditReportRequest$ = [3, n0, _DCAARR,
676
- 0,
677
- [_CAA, _ARI],
678
- [0, 0], 2
679
- ];
680
- var DescribeCertificateAuthorityAuditReportResponse$ = [3, n0, _DCAARRe,
681
- 0,
682
- [_ARS, _SBN, _SK, _CAr],
683
- [0, 0, 0, 4]
684
- ];
685
- var DescribeCertificateAuthorityRequest$ = [3, n0, _DCARe,
686
- 0,
687
- [_CAA],
688
- [0], 1
689
- ];
690
- var DescribeCertificateAuthorityResponse$ = [3, n0, _DCARes,
691
- 0,
692
- [_CAe],
693
- [() => CertificateAuthority$]
694
- ];
695
- var EdiPartyName$ = [3, n0, _EPN,
696
- 0,
697
- [_PN, _NAa],
698
- [0, 0], 1
699
- ];
700
- var ExtendedKeyUsage$ = [3, n0, _EKU,
701
- 0,
702
- [_EKUT, _EKUOI],
703
- [0, 0]
704
- ];
705
- var Extensions$ = [3, n0, _E,
706
- 0,
707
- [_CPe, _EKU, _KU, _SAN, _CEus],
708
- [() => CertificatePolicyList, () => ExtendedKeyUsageList, () => KeyUsage$, () => GeneralNameList, () => CustomExtensionList]
709
- ];
710
- var GeneralName$ = [3, n0, _GNe,
711
- 0,
712
- [_ON, _RN, _DN, _DNi, _EPN, _URI, _IA, _RI],
713
- [() => OtherName$, 0, 0, () => ASN1Subject$, () => EdiPartyName$, 0, 0, 0]
714
- ];
715
- var GetCertificateAuthorityCertificateRequest$ = [3, n0, _GCACR,
716
- 0,
717
- [_CAA],
718
- [0], 1
719
- ];
720
- var GetCertificateAuthorityCertificateResponse$ = [3, n0, _GCACRe,
721
- 0,
722
- [_Ce, _CCe],
723
- [0, 0]
724
- ];
725
- var GetCertificateAuthorityCsrRequest$ = [3, n0, _GCACRet,
726
- 0,
727
- [_CAA],
728
- [0], 1
729
- ];
730
- var GetCertificateAuthorityCsrResponse$ = [3, n0, _GCACRete,
731
- 0,
732
- [_Cs],
733
- [0]
734
- ];
735
- var GetCertificateRequest$ = [3, n0, _GCR,
736
- 0,
737
- [_CAA, _CAer],
738
- [0, 0], 2
739
- ];
740
- var GetCertificateResponse$ = [3, n0, _GCRe,
741
- 0,
742
- [_Ce, _CCe],
743
- [0, 0]
744
- ];
745
- var GetPolicyRequest$ = [3, n0, _GPR,
746
- 0,
747
- [_RA],
748
- [0], 1
749
- ];
750
- var GetPolicyResponse$ = [3, n0, _GPRe,
751
- 0,
752
- [_Po],
753
- [0]
754
- ];
755
- var ImportCertificateAuthorityCertificateRequest$ = [3, n0, _ICACR,
756
- 0,
757
- [_CAA, _Ce, _CCe],
758
- [0, 21, 21], 2
759
- ];
760
- var InvalidArgsException$ = [-3, n0, _IAE,
761
- { [_e]: _c },
762
- [_m],
763
- [0]
764
- ];
765
- schema.TypeRegistry.for(n0).registerError(InvalidArgsException$, InvalidArgsException);
766
- var InvalidArnException$ = [-3, n0, _IAEn,
767
- { [_e]: _c },
768
- [_m],
769
- [0]
770
- ];
771
- schema.TypeRegistry.for(n0).registerError(InvalidArnException$, InvalidArnException);
772
- var InvalidNextTokenException$ = [-3, n0, _INTE,
773
- { [_e]: _c },
774
- [_m],
775
- [0]
776
- ];
777
- schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
778
- var InvalidPolicyException$ = [-3, n0, _IPE,
779
- { [_e]: _c },
780
- [_m],
781
- [0]
782
- ];
783
- schema.TypeRegistry.for(n0).registerError(InvalidPolicyException$, InvalidPolicyException);
784
- var InvalidRequestException$ = [-3, n0, _IRE,
785
- { [_e]: _c },
786
- [_m],
787
- [0]
788
- ];
789
- schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
790
- var InvalidStateException$ = [-3, n0, _ISE,
791
- { [_e]: _c },
792
- [_m],
793
- [0]
794
- ];
795
- schema.TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
796
- var InvalidTagException$ = [-3, n0, _ITE,
797
- { [_e]: _c },
798
- [_m],
799
- [0]
800
- ];
801
- schema.TypeRegistry.for(n0).registerError(InvalidTagException$, InvalidTagException);
802
- var IssueCertificateRequest$ = [3, n0, _ICR,
803
- 0,
804
- [_CAA, _Cs, _SA, _Va, _AP, _TA, _VNB, _IT],
805
- [0, 21, 0, () => Validity$, () => ApiPassthrough$, 0, () => Validity$, 0], 4
806
- ];
807
- var IssueCertificateResponse$ = [3, n0, _ICRs,
808
- 0,
809
- [_CAer],
810
- [0]
811
- ];
812
- var KeyUsage$ = [3, n0, _KU,
813
- 0,
814
- [_DS, _NR, _KE, _DE, _KAe, _KCS, _CRLS, _EO, _DO],
815
- [2, 2, 2, 2, 2, 2, 2, 2, 2]
816
- ];
817
- var LimitExceededException$ = [-3, n0, _LEE,
818
- { [_e]: _c },
819
- [_m],
820
- [0]
821
- ];
822
- schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
823
- var ListCertificateAuthoritiesRequest$ = [3, n0, _LCAR,
824
- 0,
825
- [_MR, _NT, _RO],
826
- [1, 0, 0]
827
- ];
828
- var ListCertificateAuthoritiesResponse$ = [3, n0, _LCARi,
829
- 0,
830
- [_NT, _CAert],
831
- [0, () => CertificateAuthorities]
832
- ];
833
- var ListPermissionsRequest$ = [3, n0, _LPR,
834
- 0,
835
- [_CAA, _MR, _NT],
836
- [0, 1, 0], 1
837
- ];
838
- var ListPermissionsResponse$ = [3, n0, _LPRi,
839
- 0,
840
- [_NT, _Pe],
841
- [0, () => PermissionList]
842
- ];
843
- var ListTagsRequest$ = [3, n0, _LTR,
844
- 0,
845
- [_CAA, _MR, _NT],
846
- [0, 1, 0], 1
847
- ];
848
- var ListTagsResponse$ = [3, n0, _LTRi,
849
- 0,
850
- [_NT, _Ta],
851
- [0, () => TagList]
852
- ];
853
- var LockoutPreventedException$ = [-3, n0, _LPE,
854
- { [_e]: _c },
855
- [_m],
856
- [0]
857
- ];
858
- schema.TypeRegistry.for(n0).registerError(LockoutPreventedException$, LockoutPreventedException);
859
- var MalformedCertificateException$ = [-3, n0, _MCE,
860
- { [_e]: _c },
861
- [_m],
862
- [0]
863
- ];
864
- schema.TypeRegistry.for(n0).registerError(MalformedCertificateException$, MalformedCertificateException);
865
- var MalformedCSRException$ = [-3, n0, _MCSRE,
866
- { [_e]: _c },
867
- [_m],
868
- [0]
869
- ];
870
- schema.TypeRegistry.for(n0).registerError(MalformedCSRException$, MalformedCSRException);
871
- var OcspConfiguration$ = [3, n0, _OC,
872
- 0,
873
- [_En, _OCC],
874
- [2, 0], 1
875
- ];
876
- var OtherName$ = [3, n0, _ON,
877
- 0,
878
- [_TI, _V],
879
- [0, 0], 2
880
- ];
881
- var Permission$ = [3, n0, _Per,
882
- 0,
883
- [_CAA, _CAr, _Pr, _SAo, _Ac, _Po],
884
- [0, 4, 0, 0, 64 | 0, 0]
885
- ];
886
- var PermissionAlreadyExistsException$ = [-3, n0, _PAEE,
887
- { [_e]: _c },
888
- [_m],
889
- [0]
890
- ];
891
- schema.TypeRegistry.for(n0).registerError(PermissionAlreadyExistsException$, PermissionAlreadyExistsException);
892
- var PolicyInformation$ = [3, n0, _PI,
893
- 0,
894
- [_CPI, _PQ],
895
- [0, () => PolicyQualifierInfoList], 1
896
- ];
897
- var PolicyQualifierInfo$ = [3, n0, _PQI,
898
- 0,
899
- [_PQIo, _Q],
900
- [0, () => Qualifier$], 2
901
- ];
902
- var PutPolicyRequest$ = [3, n0, _PPR,
903
- 0,
904
- [_RA, _Po],
905
- [0, 0], 2
906
- ];
907
- var Qualifier$ = [3, n0, _Q,
908
- 0,
909
- [_CU],
910
- [0], 1
911
- ];
912
- var RequestAlreadyProcessedException$ = [-3, n0, _RAPE,
913
- { [_e]: _c },
914
- [_m],
915
- [0]
916
- ];
917
- schema.TypeRegistry.for(n0).registerError(RequestAlreadyProcessedException$, RequestAlreadyProcessedException);
918
- var RequestFailedException$ = [-3, n0, _RFE,
919
- { [_e]: _c },
920
- [_m],
921
- [0]
922
- ];
923
- schema.TypeRegistry.for(n0).registerError(RequestFailedException$, RequestFailedException);
924
- var RequestInProgressException$ = [-3, n0, _RIPE,
925
- { [_e]: _c },
926
- [_m],
927
- [0]
928
- ];
929
- schema.TypeRegistry.for(n0).registerError(RequestInProgressException$, RequestInProgressException);
930
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
931
- { [_e]: _c },
932
- [_m],
933
- [0]
934
- ];
935
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
936
- var RestoreCertificateAuthorityRequest$ = [3, n0, _RCAR,
937
- 0,
938
- [_CAA],
939
- [0], 1
940
- ];
941
- var RevocationConfiguration$ = [3, n0, _RC,
942
- 0,
943
- [_CC, _OC],
944
- [() => CrlConfiguration$, () => OcspConfiguration$]
945
- ];
946
- var RevokeCertificateRequest$ = [3, n0, _RCR,
947
- 0,
948
- [_CAA, _CS, _RR],
949
- [0, 0, 0], 3
950
- ];
951
- var Tag$ = [3, n0, _Tag,
952
- 0,
953
- [_K, _V],
954
- [0, 0], 1
955
- ];
956
- var TagCertificateAuthorityRequest$ = [3, n0, _TCAR,
957
- 0,
958
- [_CAA, _Ta],
959
- [0, () => TagList], 2
960
- ];
961
- var TooManyTagsException$ = [-3, n0, _TMTE,
962
- { [_e]: _c },
963
- [_m],
964
- [0]
965
- ];
966
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
967
- var UntagCertificateAuthorityRequest$ = [3, n0, _UCAR,
968
- 0,
969
- [_CAA, _Ta],
970
- [0, () => TagList], 2
971
- ];
972
- var UpdateCertificateAuthorityRequest$ = [3, n0, _UCARp,
973
- 0,
974
- [_CAA, _RC, _Sta],
975
- [0, () => RevocationConfiguration$, 0], 1
976
- ];
977
- var Validity$ = [3, n0, _Va,
978
- 0,
979
- [_V, _Ty],
980
- [1, 0], 2
981
- ];
982
- var __Unit = "unit";
983
- var ACMPCAServiceException$ = [-3, _s, "ACMPCAServiceException", 0, [], []];
984
- schema.TypeRegistry.for(_s).registerError(ACMPCAServiceException$, ACMPCAServiceException);
985
- var AccessDescriptionList = [1, n0, _ADL,
986
- 0, () => AccessDescription$
987
- ];
988
- var CertificateAuthorities = [1, n0, _CAert,
989
- 0, () => CertificateAuthority$
990
- ];
991
- var CertificatePolicyList = [1, n0, _CPL,
992
- 0, () => PolicyInformation$
993
- ];
994
- var CustomAttributeList = [1, n0, _CAL,
995
- 0, () => CustomAttribute$
996
- ];
997
- var CustomExtensionList = [1, n0, _CEL,
998
- 0, () => CustomExtension$
999
- ];
1000
- var ExtendedKeyUsageList = [1, n0, _EKUL,
1001
- 0, () => ExtendedKeyUsage$
1002
- ];
1003
- var GeneralNameList = [1, n0, _GNL,
1004
- 0, () => GeneralName$
1005
- ];
1006
- var PermissionList = [1, n0, _PL,
1007
- 0, () => Permission$
1008
- ];
1009
- var PolicyQualifierInfoList = [1, n0, _PQIL,
1010
- 0, () => PolicyQualifierInfo$
1011
- ];
1012
- var TagList = [1, n0, _TL,
1013
- 0, () => Tag$
1014
- ];
1015
- var CreateCertificateAuthority$ = [9, n0, _CCA,
1016
- 2, () => CreateCertificateAuthorityRequest$, () => CreateCertificateAuthorityResponse$
1017
- ];
1018
- var CreateCertificateAuthorityAuditReport$ = [9, n0, _CCAAR,
1019
- 2, () => CreateCertificateAuthorityAuditReportRequest$, () => CreateCertificateAuthorityAuditReportResponse$
1020
- ];
1021
- var CreatePermission$ = [9, n0, _CPr,
1022
- 0, () => CreatePermissionRequest$, () => __Unit
1023
- ];
1024
- var DeleteCertificateAuthority$ = [9, n0, _DCA,
1025
- 0, () => DeleteCertificateAuthorityRequest$, () => __Unit
1026
- ];
1027
- var DeletePermission$ = [9, n0, _DP,
1028
- 0, () => DeletePermissionRequest$, () => __Unit
1029
- ];
1030
- var DeletePolicy$ = [9, n0, _DPe,
1031
- 0, () => DeletePolicyRequest$, () => __Unit
1032
- ];
1033
- var DescribeCertificateAuthority$ = [9, n0, _DCAe,
1034
- 0, () => DescribeCertificateAuthorityRequest$, () => DescribeCertificateAuthorityResponse$
1035
- ];
1036
- var DescribeCertificateAuthorityAuditReport$ = [9, n0, _DCAAR,
1037
- 0, () => DescribeCertificateAuthorityAuditReportRequest$, () => DescribeCertificateAuthorityAuditReportResponse$
1038
- ];
1039
- var GetCertificate$ = [9, n0, _GC,
1040
- 0, () => GetCertificateRequest$, () => GetCertificateResponse$
1041
- ];
1042
- var GetCertificateAuthorityCertificate$ = [9, n0, _GCAC,
1043
- 0, () => GetCertificateAuthorityCertificateRequest$, () => GetCertificateAuthorityCertificateResponse$
1044
- ];
1045
- var GetCertificateAuthorityCsr$ = [9, n0, _GCACe,
1046
- 0, () => GetCertificateAuthorityCsrRequest$, () => GetCertificateAuthorityCsrResponse$
1047
- ];
1048
- var GetPolicy$ = [9, n0, _GP,
1049
- 0, () => GetPolicyRequest$, () => GetPolicyResponse$
1050
- ];
1051
- var ImportCertificateAuthorityCertificate$ = [9, n0, _ICAC,
1052
- 0, () => ImportCertificateAuthorityCertificateRequest$, () => __Unit
1053
- ];
1054
- var IssueCertificate$ = [9, n0, _IC,
1055
- 2, () => IssueCertificateRequest$, () => IssueCertificateResponse$
1056
- ];
1057
- var ListCertificateAuthorities$ = [9, n0, _LCA,
1058
- 0, () => ListCertificateAuthoritiesRequest$, () => ListCertificateAuthoritiesResponse$
1059
- ];
1060
- var ListPermissions$ = [9, n0, _LP,
1061
- 0, () => ListPermissionsRequest$, () => ListPermissionsResponse$
1062
- ];
1063
- var ListTags$ = [9, n0, _LT,
1064
- 0, () => ListTagsRequest$, () => ListTagsResponse$
1065
- ];
1066
- var PutPolicy$ = [9, n0, _PP,
1067
- 0, () => PutPolicyRequest$, () => __Unit
1068
- ];
1069
- var RestoreCertificateAuthority$ = [9, n0, _RCA,
1070
- 0, () => RestoreCertificateAuthorityRequest$, () => __Unit
1071
- ];
1072
- var RevokeCertificate$ = [9, n0, _RCe,
1073
- 0, () => RevokeCertificateRequest$, () => __Unit
1074
- ];
1075
- var TagCertificateAuthority$ = [9, n0, _TCA,
1076
- 0, () => TagCertificateAuthorityRequest$, () => __Unit
1077
- ];
1078
- var UntagCertificateAuthority$ = [9, n0, _UCA,
1079
- 0, () => UntagCertificateAuthorityRequest$, () => __Unit
1080
- ];
1081
- var UpdateCertificateAuthority$ = [9, n0, _UCAp,
1082
- 0, () => UpdateCertificateAuthorityRequest$, () => __Unit
1083
- ];
1084
-
1085
117
  class CreateCertificateAuthorityAuditReportCommand extends smithyClient.Command
1086
118
  .classBuilder()
1087
119
  .ep(commonParams)
@@ -1090,7 +122,7 @@ class CreateCertificateAuthorityAuditReportCommand extends smithyClient.Command
1090
122
  })
1091
123
  .s("ACMPrivateCA", "CreateCertificateAuthorityAuditReport", {})
1092
124
  .n("ACMPCAClient", "CreateCertificateAuthorityAuditReportCommand")
1093
- .sc(CreateCertificateAuthorityAuditReport$)
125
+ .sc(schemas_0.CreateCertificateAuthorityAuditReport$)
1094
126
  .build() {
1095
127
  }
1096
128
 
@@ -1102,7 +134,7 @@ class CreateCertificateAuthorityCommand extends smithyClient.Command
1102
134
  })
1103
135
  .s("ACMPrivateCA", "CreateCertificateAuthority", {})
1104
136
  .n("ACMPCAClient", "CreateCertificateAuthorityCommand")
1105
- .sc(CreateCertificateAuthority$)
137
+ .sc(schemas_0.CreateCertificateAuthority$)
1106
138
  .build() {
1107
139
  }
1108
140
 
@@ -1114,7 +146,7 @@ class CreatePermissionCommand extends smithyClient.Command
1114
146
  })
1115
147
  .s("ACMPrivateCA", "CreatePermission", {})
1116
148
  .n("ACMPCAClient", "CreatePermissionCommand")
1117
- .sc(CreatePermission$)
149
+ .sc(schemas_0.CreatePermission$)
1118
150
  .build() {
1119
151
  }
1120
152
 
@@ -1126,7 +158,7 @@ class DeleteCertificateAuthorityCommand extends smithyClient.Command
1126
158
  })
1127
159
  .s("ACMPrivateCA", "DeleteCertificateAuthority", {})
1128
160
  .n("ACMPCAClient", "DeleteCertificateAuthorityCommand")
1129
- .sc(DeleteCertificateAuthority$)
161
+ .sc(schemas_0.DeleteCertificateAuthority$)
1130
162
  .build() {
1131
163
  }
1132
164
 
@@ -1138,7 +170,7 @@ class DeletePermissionCommand extends smithyClient.Command
1138
170
  })
1139
171
  .s("ACMPrivateCA", "DeletePermission", {})
1140
172
  .n("ACMPCAClient", "DeletePermissionCommand")
1141
- .sc(DeletePermission$)
173
+ .sc(schemas_0.DeletePermission$)
1142
174
  .build() {
1143
175
  }
1144
176
 
@@ -1150,7 +182,7 @@ class DeletePolicyCommand extends smithyClient.Command
1150
182
  })
1151
183
  .s("ACMPrivateCA", "DeletePolicy", {})
1152
184
  .n("ACMPCAClient", "DeletePolicyCommand")
1153
- .sc(DeletePolicy$)
185
+ .sc(schemas_0.DeletePolicy$)
1154
186
  .build() {
1155
187
  }
1156
188
 
@@ -1162,7 +194,7 @@ class DescribeCertificateAuthorityAuditReportCommand extends smithyClient.Comman
1162
194
  })
1163
195
  .s("ACMPrivateCA", "DescribeCertificateAuthorityAuditReport", {})
1164
196
  .n("ACMPCAClient", "DescribeCertificateAuthorityAuditReportCommand")
1165
- .sc(DescribeCertificateAuthorityAuditReport$)
197
+ .sc(schemas_0.DescribeCertificateAuthorityAuditReport$)
1166
198
  .build() {
1167
199
  }
1168
200
 
@@ -1174,7 +206,7 @@ class DescribeCertificateAuthorityCommand extends smithyClient.Command
1174
206
  })
1175
207
  .s("ACMPrivateCA", "DescribeCertificateAuthority", {})
1176
208
  .n("ACMPCAClient", "DescribeCertificateAuthorityCommand")
1177
- .sc(DescribeCertificateAuthority$)
209
+ .sc(schemas_0.DescribeCertificateAuthority$)
1178
210
  .build() {
1179
211
  }
1180
212
 
@@ -1186,7 +218,7 @@ class GetCertificateAuthorityCertificateCommand extends smithyClient.Command
1186
218
  })
1187
219
  .s("ACMPrivateCA", "GetCertificateAuthorityCertificate", {})
1188
220
  .n("ACMPCAClient", "GetCertificateAuthorityCertificateCommand")
1189
- .sc(GetCertificateAuthorityCertificate$)
221
+ .sc(schemas_0.GetCertificateAuthorityCertificate$)
1190
222
  .build() {
1191
223
  }
1192
224
 
@@ -1198,7 +230,7 @@ class GetCertificateAuthorityCsrCommand extends smithyClient.Command
1198
230
  })
1199
231
  .s("ACMPrivateCA", "GetCertificateAuthorityCsr", {})
1200
232
  .n("ACMPCAClient", "GetCertificateAuthorityCsrCommand")
1201
- .sc(GetCertificateAuthorityCsr$)
233
+ .sc(schemas_0.GetCertificateAuthorityCsr$)
1202
234
  .build() {
1203
235
  }
1204
236
 
@@ -1210,7 +242,7 @@ class GetCertificateCommand extends smithyClient.Command
1210
242
  })
1211
243
  .s("ACMPrivateCA", "GetCertificate", {})
1212
244
  .n("ACMPCAClient", "GetCertificateCommand")
1213
- .sc(GetCertificate$)
245
+ .sc(schemas_0.GetCertificate$)
1214
246
  .build() {
1215
247
  }
1216
248
 
@@ -1222,7 +254,7 @@ class GetPolicyCommand extends smithyClient.Command
1222
254
  })
1223
255
  .s("ACMPrivateCA", "GetPolicy", {})
1224
256
  .n("ACMPCAClient", "GetPolicyCommand")
1225
- .sc(GetPolicy$)
257
+ .sc(schemas_0.GetPolicy$)
1226
258
  .build() {
1227
259
  }
1228
260
 
@@ -1234,7 +266,7 @@ class ImportCertificateAuthorityCertificateCommand extends smithyClient.Command
1234
266
  })
1235
267
  .s("ACMPrivateCA", "ImportCertificateAuthorityCertificate", {})
1236
268
  .n("ACMPCAClient", "ImportCertificateAuthorityCertificateCommand")
1237
- .sc(ImportCertificateAuthorityCertificate$)
269
+ .sc(schemas_0.ImportCertificateAuthorityCertificate$)
1238
270
  .build() {
1239
271
  }
1240
272
 
@@ -1246,7 +278,7 @@ class IssueCertificateCommand extends smithyClient.Command
1246
278
  })
1247
279
  .s("ACMPrivateCA", "IssueCertificate", {})
1248
280
  .n("ACMPCAClient", "IssueCertificateCommand")
1249
- .sc(IssueCertificate$)
281
+ .sc(schemas_0.IssueCertificate$)
1250
282
  .build() {
1251
283
  }
1252
284
 
@@ -1258,7 +290,7 @@ class ListCertificateAuthoritiesCommand extends smithyClient.Command
1258
290
  })
1259
291
  .s("ACMPrivateCA", "ListCertificateAuthorities", {})
1260
292
  .n("ACMPCAClient", "ListCertificateAuthoritiesCommand")
1261
- .sc(ListCertificateAuthorities$)
293
+ .sc(schemas_0.ListCertificateAuthorities$)
1262
294
  .build() {
1263
295
  }
1264
296
 
@@ -1270,7 +302,7 @@ class ListPermissionsCommand extends smithyClient.Command
1270
302
  })
1271
303
  .s("ACMPrivateCA", "ListPermissions", {})
1272
304
  .n("ACMPCAClient", "ListPermissionsCommand")
1273
- .sc(ListPermissions$)
305
+ .sc(schemas_0.ListPermissions$)
1274
306
  .build() {
1275
307
  }
1276
308
 
@@ -1282,7 +314,7 @@ class ListTagsCommand extends smithyClient.Command
1282
314
  })
1283
315
  .s("ACMPrivateCA", "ListTags", {})
1284
316
  .n("ACMPCAClient", "ListTagsCommand")
1285
- .sc(ListTags$)
317
+ .sc(schemas_0.ListTags$)
1286
318
  .build() {
1287
319
  }
1288
320
 
@@ -1294,7 +326,7 @@ class PutPolicyCommand extends smithyClient.Command
1294
326
  })
1295
327
  .s("ACMPrivateCA", "PutPolicy", {})
1296
328
  .n("ACMPCAClient", "PutPolicyCommand")
1297
- .sc(PutPolicy$)
329
+ .sc(schemas_0.PutPolicy$)
1298
330
  .build() {
1299
331
  }
1300
332
 
@@ -1306,7 +338,7 @@ class RestoreCertificateAuthorityCommand extends smithyClient.Command
1306
338
  })
1307
339
  .s("ACMPrivateCA", "RestoreCertificateAuthority", {})
1308
340
  .n("ACMPCAClient", "RestoreCertificateAuthorityCommand")
1309
- .sc(RestoreCertificateAuthority$)
341
+ .sc(schemas_0.RestoreCertificateAuthority$)
1310
342
  .build() {
1311
343
  }
1312
344
 
@@ -1318,7 +350,7 @@ class RevokeCertificateCommand extends smithyClient.Command
1318
350
  })
1319
351
  .s("ACMPrivateCA", "RevokeCertificate", {})
1320
352
  .n("ACMPCAClient", "RevokeCertificateCommand")
1321
- .sc(RevokeCertificate$)
353
+ .sc(schemas_0.RevokeCertificate$)
1322
354
  .build() {
1323
355
  }
1324
356
 
@@ -1330,7 +362,7 @@ class TagCertificateAuthorityCommand extends smithyClient.Command
1330
362
  })
1331
363
  .s("ACMPrivateCA", "TagCertificateAuthority", {})
1332
364
  .n("ACMPCAClient", "TagCertificateAuthorityCommand")
1333
- .sc(TagCertificateAuthority$)
365
+ .sc(schemas_0.TagCertificateAuthority$)
1334
366
  .build() {
1335
367
  }
1336
368
 
@@ -1342,7 +374,7 @@ class UntagCertificateAuthorityCommand extends smithyClient.Command
1342
374
  })
1343
375
  .s("ACMPrivateCA", "UntagCertificateAuthority", {})
1344
376
  .n("ACMPCAClient", "UntagCertificateAuthorityCommand")
1345
- .sc(UntagCertificateAuthority$)
377
+ .sc(schemas_0.UntagCertificateAuthority$)
1346
378
  .build() {
1347
379
  }
1348
380
 
@@ -1354,7 +386,7 @@ class UpdateCertificateAuthorityCommand extends smithyClient.Command
1354
386
  })
1355
387
  .s("ACMPrivateCA", "UpdateCertificateAuthority", {})
1356
388
  .n("ACMPCAClient", "UpdateCertificateAuthorityCommand")
1357
- .sc(UpdateCertificateAuthority$)
389
+ .sc(schemas_0.UpdateCertificateAuthority$)
1358
390
  .build() {
1359
391
  }
1360
392
 
@@ -1623,171 +655,52 @@ Object.defineProperty(exports, "__Client", {
1623
655
  enumerable: true,
1624
656
  get: function () { return smithyClient.Client; }
1625
657
  });
658
+ Object.defineProperty(exports, "ACMPCAServiceException", {
659
+ enumerable: true,
660
+ get: function () { return ACMPCAServiceException.ACMPCAServiceException; }
661
+ });
1626
662
  exports.ACMPCA = ACMPCA;
1627
663
  exports.ACMPCAClient = ACMPCAClient;
1628
- exports.ACMPCAServiceException = ACMPCAServiceException;
1629
- exports.ACMPCAServiceException$ = ACMPCAServiceException$;
1630
- exports.ASN1Subject$ = ASN1Subject$;
1631
- exports.AccessDescription$ = AccessDescription$;
1632
- exports.AccessMethod$ = AccessMethod$;
1633
664
  exports.AccessMethodType = AccessMethodType;
1634
665
  exports.ActionType = ActionType;
1635
- exports.ApiPassthrough$ = ApiPassthrough$;
1636
666
  exports.AuditReportResponseFormat = AuditReportResponseFormat;
1637
667
  exports.AuditReportStatus = AuditReportStatus;
1638
- exports.CertificateAuthority$ = CertificateAuthority$;
1639
- exports.CertificateAuthorityConfiguration$ = CertificateAuthorityConfiguration$;
1640
668
  exports.CertificateAuthorityStatus = CertificateAuthorityStatus;
1641
669
  exports.CertificateAuthorityType = CertificateAuthorityType;
1642
670
  exports.CertificateAuthorityUsageMode = CertificateAuthorityUsageMode;
1643
- exports.CertificateMismatchException = CertificateMismatchException;
1644
- exports.CertificateMismatchException$ = CertificateMismatchException$;
1645
- exports.ConcurrentModificationException = ConcurrentModificationException;
1646
- exports.ConcurrentModificationException$ = ConcurrentModificationException$;
1647
- exports.CreateCertificateAuthority$ = CreateCertificateAuthority$;
1648
- exports.CreateCertificateAuthorityAuditReport$ = CreateCertificateAuthorityAuditReport$;
1649
671
  exports.CreateCertificateAuthorityAuditReportCommand = CreateCertificateAuthorityAuditReportCommand;
1650
- exports.CreateCertificateAuthorityAuditReportRequest$ = CreateCertificateAuthorityAuditReportRequest$;
1651
- exports.CreateCertificateAuthorityAuditReportResponse$ = CreateCertificateAuthorityAuditReportResponse$;
1652
672
  exports.CreateCertificateAuthorityCommand = CreateCertificateAuthorityCommand;
1653
- exports.CreateCertificateAuthorityRequest$ = CreateCertificateAuthorityRequest$;
1654
- exports.CreateCertificateAuthorityResponse$ = CreateCertificateAuthorityResponse$;
1655
- exports.CreatePermission$ = CreatePermission$;
1656
673
  exports.CreatePermissionCommand = CreatePermissionCommand;
1657
- exports.CreatePermissionRequest$ = CreatePermissionRequest$;
1658
- exports.CrlConfiguration$ = CrlConfiguration$;
1659
- exports.CrlDistributionPointExtensionConfiguration$ = CrlDistributionPointExtensionConfiguration$;
1660
674
  exports.CrlType = CrlType;
1661
- exports.CsrExtensions$ = CsrExtensions$;
1662
- exports.CustomAttribute$ = CustomAttribute$;
1663
- exports.CustomExtension$ = CustomExtension$;
1664
- exports.DeleteCertificateAuthority$ = DeleteCertificateAuthority$;
1665
675
  exports.DeleteCertificateAuthorityCommand = DeleteCertificateAuthorityCommand;
1666
- exports.DeleteCertificateAuthorityRequest$ = DeleteCertificateAuthorityRequest$;
1667
- exports.DeletePermission$ = DeletePermission$;
1668
676
  exports.DeletePermissionCommand = DeletePermissionCommand;
1669
- exports.DeletePermissionRequest$ = DeletePermissionRequest$;
1670
- exports.DeletePolicy$ = DeletePolicy$;
1671
677
  exports.DeletePolicyCommand = DeletePolicyCommand;
1672
- exports.DeletePolicyRequest$ = DeletePolicyRequest$;
1673
- exports.DescribeCertificateAuthority$ = DescribeCertificateAuthority$;
1674
- exports.DescribeCertificateAuthorityAuditReport$ = DescribeCertificateAuthorityAuditReport$;
1675
678
  exports.DescribeCertificateAuthorityAuditReportCommand = DescribeCertificateAuthorityAuditReportCommand;
1676
- exports.DescribeCertificateAuthorityAuditReportRequest$ = DescribeCertificateAuthorityAuditReportRequest$;
1677
- exports.DescribeCertificateAuthorityAuditReportResponse$ = DescribeCertificateAuthorityAuditReportResponse$;
1678
679
  exports.DescribeCertificateAuthorityCommand = DescribeCertificateAuthorityCommand;
1679
- exports.DescribeCertificateAuthorityRequest$ = DescribeCertificateAuthorityRequest$;
1680
- exports.DescribeCertificateAuthorityResponse$ = DescribeCertificateAuthorityResponse$;
1681
- exports.EdiPartyName$ = EdiPartyName$;
1682
- exports.ExtendedKeyUsage$ = ExtendedKeyUsage$;
1683
680
  exports.ExtendedKeyUsageType = ExtendedKeyUsageType;
1684
- exports.Extensions$ = Extensions$;
1685
681
  exports.FailureReason = FailureReason;
1686
- exports.GeneralName$ = GeneralName$;
1687
- exports.GetCertificate$ = GetCertificate$;
1688
- exports.GetCertificateAuthorityCertificate$ = GetCertificateAuthorityCertificate$;
1689
682
  exports.GetCertificateAuthorityCertificateCommand = GetCertificateAuthorityCertificateCommand;
1690
- exports.GetCertificateAuthorityCertificateRequest$ = GetCertificateAuthorityCertificateRequest$;
1691
- exports.GetCertificateAuthorityCertificateResponse$ = GetCertificateAuthorityCertificateResponse$;
1692
- exports.GetCertificateAuthorityCsr$ = GetCertificateAuthorityCsr$;
1693
683
  exports.GetCertificateAuthorityCsrCommand = GetCertificateAuthorityCsrCommand;
1694
- exports.GetCertificateAuthorityCsrRequest$ = GetCertificateAuthorityCsrRequest$;
1695
- exports.GetCertificateAuthorityCsrResponse$ = GetCertificateAuthorityCsrResponse$;
1696
684
  exports.GetCertificateCommand = GetCertificateCommand;
1697
- exports.GetCertificateRequest$ = GetCertificateRequest$;
1698
- exports.GetCertificateResponse$ = GetCertificateResponse$;
1699
- exports.GetPolicy$ = GetPolicy$;
1700
685
  exports.GetPolicyCommand = GetPolicyCommand;
1701
- exports.GetPolicyRequest$ = GetPolicyRequest$;
1702
- exports.GetPolicyResponse$ = GetPolicyResponse$;
1703
- exports.ImportCertificateAuthorityCertificate$ = ImportCertificateAuthorityCertificate$;
1704
686
  exports.ImportCertificateAuthorityCertificateCommand = ImportCertificateAuthorityCertificateCommand;
1705
- exports.ImportCertificateAuthorityCertificateRequest$ = ImportCertificateAuthorityCertificateRequest$;
1706
- exports.InvalidArgsException = InvalidArgsException;
1707
- exports.InvalidArgsException$ = InvalidArgsException$;
1708
- exports.InvalidArnException = InvalidArnException;
1709
- exports.InvalidArnException$ = InvalidArnException$;
1710
- exports.InvalidNextTokenException = InvalidNextTokenException;
1711
- exports.InvalidNextTokenException$ = InvalidNextTokenException$;
1712
- exports.InvalidPolicyException = InvalidPolicyException;
1713
- exports.InvalidPolicyException$ = InvalidPolicyException$;
1714
- exports.InvalidRequestException = InvalidRequestException;
1715
- exports.InvalidRequestException$ = InvalidRequestException$;
1716
- exports.InvalidStateException = InvalidStateException;
1717
- exports.InvalidStateException$ = InvalidStateException$;
1718
- exports.InvalidTagException = InvalidTagException;
1719
- exports.InvalidTagException$ = InvalidTagException$;
1720
- exports.IssueCertificate$ = IssueCertificate$;
1721
687
  exports.IssueCertificateCommand = IssueCertificateCommand;
1722
- exports.IssueCertificateRequest$ = IssueCertificateRequest$;
1723
- exports.IssueCertificateResponse$ = IssueCertificateResponse$;
1724
688
  exports.KeyAlgorithm = KeyAlgorithm;
1725
689
  exports.KeyStorageSecurityStandard = KeyStorageSecurityStandard;
1726
- exports.KeyUsage$ = KeyUsage$;
1727
- exports.LimitExceededException = LimitExceededException;
1728
- exports.LimitExceededException$ = LimitExceededException$;
1729
- exports.ListCertificateAuthorities$ = ListCertificateAuthorities$;
1730
690
  exports.ListCertificateAuthoritiesCommand = ListCertificateAuthoritiesCommand;
1731
- exports.ListCertificateAuthoritiesRequest$ = ListCertificateAuthoritiesRequest$;
1732
- exports.ListCertificateAuthoritiesResponse$ = ListCertificateAuthoritiesResponse$;
1733
- exports.ListPermissions$ = ListPermissions$;
1734
691
  exports.ListPermissionsCommand = ListPermissionsCommand;
1735
- exports.ListPermissionsRequest$ = ListPermissionsRequest$;
1736
- exports.ListPermissionsResponse$ = ListPermissionsResponse$;
1737
- exports.ListTags$ = ListTags$;
1738
692
  exports.ListTagsCommand = ListTagsCommand;
1739
- exports.ListTagsRequest$ = ListTagsRequest$;
1740
- exports.ListTagsResponse$ = ListTagsResponse$;
1741
- exports.LockoutPreventedException = LockoutPreventedException;
1742
- exports.LockoutPreventedException$ = LockoutPreventedException$;
1743
- exports.MalformedCSRException = MalformedCSRException;
1744
- exports.MalformedCSRException$ = MalformedCSRException$;
1745
- exports.MalformedCertificateException = MalformedCertificateException;
1746
- exports.MalformedCertificateException$ = MalformedCertificateException$;
1747
- exports.OcspConfiguration$ = OcspConfiguration$;
1748
- exports.OtherName$ = OtherName$;
1749
- exports.Permission$ = Permission$;
1750
- exports.PermissionAlreadyExistsException = PermissionAlreadyExistsException;
1751
- exports.PermissionAlreadyExistsException$ = PermissionAlreadyExistsException$;
1752
- exports.PolicyInformation$ = PolicyInformation$;
1753
693
  exports.PolicyQualifierId = PolicyQualifierId;
1754
- exports.PolicyQualifierInfo$ = PolicyQualifierInfo$;
1755
- exports.PutPolicy$ = PutPolicy$;
1756
694
  exports.PutPolicyCommand = PutPolicyCommand;
1757
- exports.PutPolicyRequest$ = PutPolicyRequest$;
1758
- exports.Qualifier$ = Qualifier$;
1759
- exports.RequestAlreadyProcessedException = RequestAlreadyProcessedException;
1760
- exports.RequestAlreadyProcessedException$ = RequestAlreadyProcessedException$;
1761
- exports.RequestFailedException = RequestFailedException;
1762
- exports.RequestFailedException$ = RequestFailedException$;
1763
- exports.RequestInProgressException = RequestInProgressException;
1764
- exports.RequestInProgressException$ = RequestInProgressException$;
1765
- exports.ResourceNotFoundException = ResourceNotFoundException;
1766
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1767
695
  exports.ResourceOwner = ResourceOwner;
1768
- exports.RestoreCertificateAuthority$ = RestoreCertificateAuthority$;
1769
696
  exports.RestoreCertificateAuthorityCommand = RestoreCertificateAuthorityCommand;
1770
- exports.RestoreCertificateAuthorityRequest$ = RestoreCertificateAuthorityRequest$;
1771
- exports.RevocationConfiguration$ = RevocationConfiguration$;
1772
697
  exports.RevocationReason = RevocationReason;
1773
- exports.RevokeCertificate$ = RevokeCertificate$;
1774
698
  exports.RevokeCertificateCommand = RevokeCertificateCommand;
1775
- exports.RevokeCertificateRequest$ = RevokeCertificateRequest$;
1776
699
  exports.S3ObjectAcl = S3ObjectAcl;
1777
700
  exports.SigningAlgorithm = SigningAlgorithm;
1778
- exports.Tag$ = Tag$;
1779
- exports.TagCertificateAuthority$ = TagCertificateAuthority$;
1780
701
  exports.TagCertificateAuthorityCommand = TagCertificateAuthorityCommand;
1781
- exports.TagCertificateAuthorityRequest$ = TagCertificateAuthorityRequest$;
1782
- exports.TooManyTagsException = TooManyTagsException;
1783
- exports.TooManyTagsException$ = TooManyTagsException$;
1784
- exports.UntagCertificateAuthority$ = UntagCertificateAuthority$;
1785
702
  exports.UntagCertificateAuthorityCommand = UntagCertificateAuthorityCommand;
1786
- exports.UntagCertificateAuthorityRequest$ = UntagCertificateAuthorityRequest$;
1787
- exports.UpdateCertificateAuthority$ = UpdateCertificateAuthority$;
1788
703
  exports.UpdateCertificateAuthorityCommand = UpdateCertificateAuthorityCommand;
1789
- exports.UpdateCertificateAuthorityRequest$ = UpdateCertificateAuthorityRequest$;
1790
- exports.Validity$ = Validity$;
1791
704
  exports.ValidityPeriodType = ValidityPeriodType;
1792
705
  exports.paginateListCertificateAuthorities = paginateListCertificateAuthorities;
1793
706
  exports.paginateListPermissions = paginateListPermissions;
@@ -1798,3 +711,15 @@ exports.waitForCertificateIssued = waitForCertificateIssued;
1798
711
  exports.waitUntilAuditReportCreated = waitUntilAuditReportCreated;
1799
712
  exports.waitUntilCertificateAuthorityCSRCreated = waitUntilCertificateAuthorityCSRCreated;
1800
713
  exports.waitUntilCertificateIssued = waitUntilCertificateIssued;
714
+ Object.keys(schemas_0).forEach(function (k) {
715
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
716
+ enumerable: true,
717
+ get: function () { return schemas_0[k]; }
718
+ });
719
+ });
720
+ Object.keys(errors).forEach(function (k) {
721
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
722
+ enumerable: true,
723
+ get: function () { return errors[k]; }
724
+ });
725
+ });