@aws-sdk/client-signer 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 SignerServiceException = require('./models/SignerServiceException');
19
22
 
20
23
  const resolveClientEndpointParameters = (options) => {
21
24
  return Object.assign(options, {
@@ -111,742 +114,6 @@ class SignerClient extends smithyClient.Client {
111
114
  }
112
115
  }
113
116
 
114
- class SignerServiceException extends smithyClient.ServiceException {
115
- constructor(options) {
116
- super(options);
117
- Object.setPrototypeOf(this, SignerServiceException.prototype);
118
- }
119
- }
120
-
121
- class AccessDeniedException extends SignerServiceException {
122
- name = "AccessDeniedException";
123
- $fault = "client";
124
- code;
125
- constructor(opts) {
126
- super({
127
- name: "AccessDeniedException",
128
- $fault: "client",
129
- ...opts,
130
- });
131
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
- this.code = opts.code;
133
- }
134
- }
135
- class ConflictException extends SignerServiceException {
136
- name = "ConflictException";
137
- $fault = "client";
138
- code;
139
- constructor(opts) {
140
- super({
141
- name: "ConflictException",
142
- $fault: "client",
143
- ...opts,
144
- });
145
- Object.setPrototypeOf(this, ConflictException.prototype);
146
- this.code = opts.code;
147
- }
148
- }
149
- class InternalServiceErrorException extends SignerServiceException {
150
- name = "InternalServiceErrorException";
151
- $fault = "server";
152
- code;
153
- constructor(opts) {
154
- super({
155
- name: "InternalServiceErrorException",
156
- $fault: "server",
157
- ...opts,
158
- });
159
- Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
160
- this.code = opts.code;
161
- }
162
- }
163
- class ResourceNotFoundException extends SignerServiceException {
164
- name = "ResourceNotFoundException";
165
- $fault = "client";
166
- code;
167
- constructor(opts) {
168
- super({
169
- name: "ResourceNotFoundException",
170
- $fault: "client",
171
- ...opts,
172
- });
173
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
174
- this.code = opts.code;
175
- }
176
- }
177
- class ServiceLimitExceededException extends SignerServiceException {
178
- name = "ServiceLimitExceededException";
179
- $fault = "client";
180
- code;
181
- constructor(opts) {
182
- super({
183
- name: "ServiceLimitExceededException",
184
- $fault: "client",
185
- ...opts,
186
- });
187
- Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
188
- this.code = opts.code;
189
- }
190
- }
191
- class TooManyRequestsException extends SignerServiceException {
192
- name = "TooManyRequestsException";
193
- $fault = "client";
194
- code;
195
- constructor(opts) {
196
- super({
197
- name: "TooManyRequestsException",
198
- $fault: "client",
199
- ...opts,
200
- });
201
- Object.setPrototypeOf(this, TooManyRequestsException.prototype);
202
- this.code = opts.code;
203
- }
204
- }
205
- class ValidationException extends SignerServiceException {
206
- name = "ValidationException";
207
- $fault = "client";
208
- code;
209
- constructor(opts) {
210
- super({
211
- name: "ValidationException",
212
- $fault: "client",
213
- ...opts,
214
- });
215
- Object.setPrototypeOf(this, ValidationException.prototype);
216
- this.code = opts.code;
217
- }
218
- }
219
- class BadRequestException extends SignerServiceException {
220
- name = "BadRequestException";
221
- $fault = "client";
222
- code;
223
- constructor(opts) {
224
- super({
225
- name: "BadRequestException",
226
- $fault: "client",
227
- ...opts,
228
- });
229
- Object.setPrototypeOf(this, BadRequestException.prototype);
230
- this.code = opts.code;
231
- }
232
- }
233
- class NotFoundException extends SignerServiceException {
234
- name = "NotFoundException";
235
- $fault = "client";
236
- code;
237
- constructor(opts) {
238
- super({
239
- name: "NotFoundException",
240
- $fault: "client",
241
- ...opts,
242
- });
243
- Object.setPrototypeOf(this, NotFoundException.prototype);
244
- this.code = opts.code;
245
- }
246
- }
247
- class ThrottlingException extends SignerServiceException {
248
- name = "ThrottlingException";
249
- $fault = "client";
250
- code;
251
- constructor(opts) {
252
- super({
253
- name: "ThrottlingException",
254
- $fault: "client",
255
- ...opts,
256
- });
257
- Object.setPrototypeOf(this, ThrottlingException.prototype);
258
- this.code = opts.code;
259
- }
260
- }
261
-
262
- const _ADE = "AccessDeniedException";
263
- const _APP = "AddProfilePermission";
264
- const _APPR = "AddProfilePermissionRequest";
265
- const _APPRd = "AddProfilePermissionResponse";
266
- const _BRE = "BadRequestException";
267
- const _CE = "ConflictException";
268
- const _CSP = "CancelSigningProfile";
269
- const _CSPR = "CancelSigningProfileRequest";
270
- const _D = "Destination";
271
- const _DSJ = "DescribeSigningJob";
272
- const _DSJR = "DescribeSigningJobRequest";
273
- const _DSJRe = "DescribeSigningJobResponse";
274
- const _EAO = "EncryptionAlgorithmOptions";
275
- const _GRS = "GetRevocationStatus";
276
- const _GRSR = "GetRevocationStatusRequest";
277
- const _GRSRe = "GetRevocationStatusResponse";
278
- const _GSP = "GetSigningPlatform";
279
- const _GSPR = "GetSigningPlatformRequest";
280
- const _GSPRe = "GetSigningPlatformResponse";
281
- const _GSPRet = "GetSigningProfileRequest";
282
- const _GSPReti = "GetSigningProfileResponse";
283
- const _GSPe = "GetSigningProfile";
284
- const _HAO = "HashAlgorithmOptions";
285
- const _ISEE = "InternalServiceErrorException";
286
- const _LPP = "ListProfilePermissions";
287
- const _LPPR = "ListProfilePermissionsRequest";
288
- const _LPPRi = "ListProfilePermissionsResponse";
289
- const _LSJ = "ListSigningJobs";
290
- const _LSJR = "ListSigningJobsRequest";
291
- const _LSJRi = "ListSigningJobsResponse";
292
- const _LSP = "ListSigningPlatforms";
293
- const _LSPR = "ListSigningPlatformsRequest";
294
- const _LSPRi = "ListSigningPlatformsResponse";
295
- const _LSPRis = "ListSigningProfilesRequest";
296
- const _LSPRist = "ListSigningProfilesResponse";
297
- const _LSPi = "ListSigningProfiles";
298
- const _LTFR = "ListTagsForResource";
299
- const _LTFRR = "ListTagsForResourceRequest";
300
- const _LTFRRi = "ListTagsForResourceResponse";
301
- const _NFE = "NotFoundException";
302
- const _P = "Permission";
303
- const _PSP = "PutSigningProfile";
304
- const _PSPR = "PutSigningProfileRequest";
305
- const _PSPRu = "PutSigningProfileResponse";
306
- const _Pe = "Permissions";
307
- const _RNFE = "ResourceNotFoundException";
308
- const _RPP = "RemoveProfilePermission";
309
- const _RPPR = "RemoveProfilePermissionRequest";
310
- const _RPPRe = "RemoveProfilePermissionResponse";
311
- const _RS = "RevokeSignature";
312
- const _RSP = "RevokeSigningProfile";
313
- const _RSPR = "RevokeSigningProfileRequest";
314
- const _RSR = "RevokeSignatureRequest";
315
- const _S = "Source";
316
- const _SC = "SigningConfiguration";
317
- const _SCO = "SigningConfigurationOverrides";
318
- const _SD = "S3Destination";
319
- const _SIF = "SigningImageFormat";
320
- const _SJ = "SigningJob";
321
- const _SJRR = "SigningJobRevocationRecord";
322
- const _SJi = "SigningJobs";
323
- const _SLEE = "ServiceLimitExceededException";
324
- const _SM = "SigningMaterial";
325
- const _SO = "SignedObject";
326
- const _SP = "SigningPlatform";
327
- const _SPO = "SigningPlatformOverrides";
328
- const _SPR = "SignPayloadRequest";
329
- const _SPRR = "SigningProfileRevocationRecord";
330
- const _SPRi = "SignPayloadResponse";
331
- const _SPi = "SigningProfile";
332
- const _SPig = "SigningPlatforms";
333
- const _SPign = "SigningProfiles";
334
- const _SPigna = "SignPayload";
335
- const _SS = "S3Source";
336
- const _SSJ = "StartSigningJob";
337
- const _SSJR = "StartSigningJobRequest";
338
- const _SSJRt = "StartSigningJobResponse";
339
- const _SSO = "S3SignedObject";
340
- const _SVP = "SignatureValidityPeriod";
341
- const _TE = "ThrottlingException";
342
- const _TMRE = "TooManyRequestsException";
343
- const _TR = "TagResource";
344
- const _TRR = "TagResourceRequest";
345
- const _TRRa = "TagResourceResponse";
346
- const _UR = "UntagResource";
347
- const _URR = "UntagResourceRequest";
348
- const _URRn = "UntagResourceResponse";
349
- const _VE = "ValidationException";
350
- const _a = "action";
351
- const _aV = "allowedValues";
352
- const _ar = "arn";
353
- const _bN = "bucketName";
354
- const _c = "client";
355
- const _cA = "createdAt";
356
- const _cAe = "certificateArn";
357
- const _cAo = "completedAt";
358
- const _cH = "certificateHashes";
359
- const _cRT = "clientRequestToken";
360
- const _ca = "category";
361
- const _co = "code";
362
- const _d = "destination";
363
- const _dF = "defaultFormat";
364
- const _dN = "displayName";
365
- const _dV = "defaultValue";
366
- const _e = "error";
367
- const _eA = "encryptionAlgorithm";
368
- const _eAO = "encryptionAlgorithmOptions";
369
- const _eT = "effectiveTime";
370
- const _en = "endpoint";
371
- const _h = "http";
372
- const _hA = "hashAlgorithm";
373
- const _hAO = "hashAlgorithmOptions";
374
- const _hE = "httpError";
375
- const _hQ = "httpQuery";
376
- const _iC = "includeCanceled";
377
- const _iR = "isRevoked";
378
- const _j = "jobs";
379
- const _jA = "jobArn";
380
- const _jI = "jobId";
381
- const _jIo = "jobInvoker";
382
- const _jO = "jobOwner";
383
- const _k = "key";
384
- const _m = "message";
385
- const _mR = "maxResults";
386
- const _mSIMB = "maxSizeInMB";
387
- const _me = "metadata";
388
- const _nT = "nextToken";
389
- const _o = "overrides";
390
- const _p = "principal";
391
- const _pDN = "platformDisplayName";
392
- const _pF = "payloadFormat";
393
- const _pI = "platformId";
394
- const _pN = "profileName";
395
- const _pO = "profileOwner";
396
- const _pSB = "policySizeBytes";
397
- const _pV = "profileVersion";
398
- const _pVA = "profileVersionArn";
399
- const _pa = "partner";
400
- const _pay = "payload";
401
- const _pe = "permissions";
402
- const _pl = "platforms";
403
- const _pr = "profiles";
404
- const _pre = "prefix";
405
- const _r = "reason";
406
- const _rA = "resourceArn";
407
- const _rAe = "revokedAt";
408
- const _rB = "requestedBy";
409
- const _rBe = "revokedBy";
410
- const _rE = "revokedEntities";
411
- const _rEF = "revocationEffectiveFrom";
412
- const _rI = "revisionId";
413
- const _rR = "revocationRecord";
414
- const _rS = "revocationSupported";
415
- const _s = "source";
416
- const _sC = "signingConfiguration";
417
- const _sEA = "signatureExpiresAt";
418
- const _sEAi = "signatureExpiresAfter";
419
- const _sEB = "signatureExpiresBefore";
420
- const _sF = "supportedFormats";
421
- const _sI = "statementId";
422
- const _sIF = "signingImageFormat";
423
- const _sM = "signingMaterial";
424
- const _sO = "signedObject";
425
- const _sP = "signingParameters";
426
- const _sR = "statusReason";
427
- const _sT = "signatureTimestamp";
428
- const _sVP = "signatureValidityPeriod";
429
- const _s_ = "s3";
430
- const _se = "server";
431
- const _si = "signature";
432
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.signer";
433
- const _st = "status";
434
- const _sta = "statuses";
435
- const _t = "target";
436
- const _tK = "tagKeys";
437
- const _ta = "tags";
438
- const _ty = "type";
439
- const _v = "version";
440
- const _va = "value";
441
- const n0 = "com.amazonaws.signer";
442
- var AccessDeniedException$ = [-3, n0, _ADE,
443
- { [_e]: _c, [_hE]: 403 },
444
- [_m, _co],
445
- [0, 0]
446
- ];
447
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
448
- var AddProfilePermissionRequest$ = [3, n0, _APPR,
449
- 0,
450
- [_pN, _a, _p, _sI, _pV, _rI],
451
- [[0, 1], 0, 0, 0, 0, 0], 4
452
- ];
453
- var AddProfilePermissionResponse$ = [3, n0, _APPRd,
454
- 0,
455
- [_rI],
456
- [0]
457
- ];
458
- var BadRequestException$ = [-3, n0, _BRE,
459
- { [_e]: _c, [_hE]: 400 },
460
- [_m, _co],
461
- [0, 0]
462
- ];
463
- schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
464
- var CancelSigningProfileRequest$ = [3, n0, _CSPR,
465
- 0,
466
- [_pN],
467
- [[0, 1]], 1
468
- ];
469
- var ConflictException$ = [-3, n0, _CE,
470
- { [_e]: _c, [_hE]: 409 },
471
- [_m, _co],
472
- [0, 0]
473
- ];
474
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
475
- var DescribeSigningJobRequest$ = [3, n0, _DSJR,
476
- 0,
477
- [_jI],
478
- [[0, 1]], 1
479
- ];
480
- var DescribeSigningJobResponse$ = [3, n0, _DSJRe,
481
- 0,
482
- [_jI, _s, _sM, _pI, _pDN, _pN, _pV, _o, _sP, _cA, _cAo, _sEA, _rB, _st, _sR, _rR, _sO, _jO, _jIo],
483
- [0, () => Source$, () => SigningMaterial$, 0, 0, 0, 0, () => SigningPlatformOverrides$, 128 | 0, 4, 4, 4, 0, 0, 0, () => SigningJobRevocationRecord$, () => SignedObject$, 0, 0]
484
- ];
485
- var Destination$ = [3, n0, _D,
486
- 0,
487
- [_s_],
488
- [() => S3Destination$]
489
- ];
490
- var EncryptionAlgorithmOptions$ = [3, n0, _EAO,
491
- 0,
492
- [_aV, _dV],
493
- [64 | 0, 0], 2
494
- ];
495
- var GetRevocationStatusRequest$ = [3, n0, _GRSR,
496
- 0,
497
- [_sT, _pI, _pVA, _jA, _cH],
498
- [[4, { [_hQ]: _sT }], [0, { [_hQ]: _pI }], [0, { [_hQ]: _pVA }], [0, { [_hQ]: _jA }], [64 | 0, { [_hQ]: _cH }]], 5
499
- ];
500
- var GetRevocationStatusResponse$ = [3, n0, _GRSRe,
501
- 0,
502
- [_rE],
503
- [64 | 0]
504
- ];
505
- var GetSigningPlatformRequest$ = [3, n0, _GSPR,
506
- 0,
507
- [_pI],
508
- [[0, 1]], 1
509
- ];
510
- var GetSigningPlatformResponse$ = [3, n0, _GSPRe,
511
- 0,
512
- [_pI, _dN, _pa, _t, _ca, _sC, _sIF, _mSIMB, _rS],
513
- [0, 0, 0, 0, 0, () => SigningConfiguration$, () => SigningImageFormat$, 1, 2]
514
- ];
515
- var GetSigningProfileRequest$ = [3, n0, _GSPRet,
516
- 0,
517
- [_pN, _pO],
518
- [[0, 1], [0, { [_hQ]: _pO }]], 1
519
- ];
520
- var GetSigningProfileResponse$ = [3, n0, _GSPReti,
521
- 0,
522
- [_pN, _pV, _pVA, _rR, _sM, _pI, _pDN, _sVP, _o, _sP, _st, _sR, _ar, _ta],
523
- [0, 0, 0, () => SigningProfileRevocationRecord$, () => SigningMaterial$, 0, 0, () => SignatureValidityPeriod$, () => SigningPlatformOverrides$, 128 | 0, 0, 0, 0, 128 | 0]
524
- ];
525
- var HashAlgorithmOptions$ = [3, n0, _HAO,
526
- 0,
527
- [_aV, _dV],
528
- [64 | 0, 0], 2
529
- ];
530
- var InternalServiceErrorException$ = [-3, n0, _ISEE,
531
- { [_e]: _se, [_hE]: 500 },
532
- [_m, _co],
533
- [0, 0]
534
- ];
535
- schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException$, InternalServiceErrorException);
536
- var ListProfilePermissionsRequest$ = [3, n0, _LPPR,
537
- 0,
538
- [_pN, _nT],
539
- [[0, 1], [0, { [_hQ]: _nT }]], 1
540
- ];
541
- var ListProfilePermissionsResponse$ = [3, n0, _LPPRi,
542
- 0,
543
- [_rI, _pSB, _pe, _nT],
544
- [0, 1, () => Permissions, 0]
545
- ];
546
- var ListSigningJobsRequest$ = [3, n0, _LSJR,
547
- 0,
548
- [_st, _pI, _rB, _mR, _nT, _iR, _sEB, _sEAi, _jIo],
549
- [[0, { [_hQ]: _st }], [0, { [_hQ]: _pI }], [0, { [_hQ]: _rB }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [2, { [_hQ]: _iR }], [4, { [_hQ]: _sEB }], [4, { [_hQ]: _sEAi }], [0, { [_hQ]: _jIo }]]
550
- ];
551
- var ListSigningJobsResponse$ = [3, n0, _LSJRi,
552
- 0,
553
- [_j, _nT],
554
- [() => SigningJobs, 0]
555
- ];
556
- var ListSigningPlatformsRequest$ = [3, n0, _LSPR,
557
- 0,
558
- [_ca, _pa, _t, _mR, _nT],
559
- [[0, { [_hQ]: _ca }], [0, { [_hQ]: _pa }], [0, { [_hQ]: _t }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
560
- ];
561
- var ListSigningPlatformsResponse$ = [3, n0, _LSPRi,
562
- 0,
563
- [_pl, _nT],
564
- [() => SigningPlatforms, 0]
565
- ];
566
- var ListSigningProfilesRequest$ = [3, n0, _LSPRis,
567
- 0,
568
- [_iC, _mR, _nT, _pI, _sta],
569
- [[2, { [_hQ]: _iC }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _pI }], [64 | 0, { [_hQ]: _sta }]]
570
- ];
571
- var ListSigningProfilesResponse$ = [3, n0, _LSPRist,
572
- 0,
573
- [_pr, _nT],
574
- [() => SigningProfiles, 0]
575
- ];
576
- var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
577
- 0,
578
- [_rA],
579
- [[0, 1]], 1
580
- ];
581
- var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
582
- 0,
583
- [_ta],
584
- [128 | 0]
585
- ];
586
- var NotFoundException$ = [-3, n0, _NFE,
587
- { [_e]: _c, [_hE]: 404 },
588
- [_m, _co],
589
- [0, 0]
590
- ];
591
- schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
592
- var Permission$ = [3, n0, _P,
593
- 0,
594
- [_a, _p, _sI, _pV],
595
- [0, 0, 0, 0]
596
- ];
597
- var PutSigningProfileRequest$ = [3, n0, _PSPR,
598
- 0,
599
- [_pN, _pI, _sM, _sVP, _o, _sP, _ta],
600
- [[0, 1], 0, () => SigningMaterial$, () => SignatureValidityPeriod$, () => SigningPlatformOverrides$, 128 | 0, 128 | 0], 2
601
- ];
602
- var PutSigningProfileResponse$ = [3, n0, _PSPRu,
603
- 0,
604
- [_ar, _pV, _pVA],
605
- [0, 0, 0]
606
- ];
607
- var RemoveProfilePermissionRequest$ = [3, n0, _RPPR,
608
- 0,
609
- [_pN, _rI, _sI],
610
- [[0, 1], [0, { [_hQ]: _rI }], [0, 1]], 3
611
- ];
612
- var RemoveProfilePermissionResponse$ = [3, n0, _RPPRe,
613
- 0,
614
- [_rI],
615
- [0]
616
- ];
617
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
618
- { [_e]: _c, [_hE]: 404 },
619
- [_m, _co],
620
- [0, 0]
621
- ];
622
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
623
- var RevokeSignatureRequest$ = [3, n0, _RSR,
624
- 0,
625
- [_jI, _r, _jO],
626
- [[0, 1], 0, 0], 2
627
- ];
628
- var RevokeSigningProfileRequest$ = [3, n0, _RSPR,
629
- 0,
630
- [_pN, _pV, _r, _eT],
631
- [[0, 1], 0, 0, 4], 4
632
- ];
633
- var S3Destination$ = [3, n0, _SD,
634
- 0,
635
- [_bN, _pre],
636
- [0, 0]
637
- ];
638
- var S3SignedObject$ = [3, n0, _SSO,
639
- 0,
640
- [_bN, _k],
641
- [0, 0]
642
- ];
643
- var S3Source$ = [3, n0, _SS,
644
- 0,
645
- [_bN, _k, _v],
646
- [0, 0, 0], 3
647
- ];
648
- var ServiceLimitExceededException$ = [-3, n0, _SLEE,
649
- { [_e]: _c, [_hE]: 402 },
650
- [_m, _co],
651
- [0, 0]
652
- ];
653
- schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
654
- var SignatureValidityPeriod$ = [3, n0, _SVP,
655
- 0,
656
- [_va, _ty],
657
- [1, 0]
658
- ];
659
- var SignedObject$ = [3, n0, _SO,
660
- 0,
661
- [_s_],
662
- [() => S3SignedObject$]
663
- ];
664
- var SigningConfiguration$ = [3, n0, _SC,
665
- 0,
666
- [_eAO, _hAO],
667
- [() => EncryptionAlgorithmOptions$, () => HashAlgorithmOptions$], 2
668
- ];
669
- var SigningConfigurationOverrides$ = [3, n0, _SCO,
670
- 0,
671
- [_eA, _hA],
672
- [0, 0]
673
- ];
674
- var SigningImageFormat$ = [3, n0, _SIF,
675
- 0,
676
- [_sF, _dF],
677
- [64 | 0, 0], 2
678
- ];
679
- var SigningJob$ = [3, n0, _SJ,
680
- 0,
681
- [_jI, _s, _sO, _sM, _cA, _st, _iR, _pN, _pV, _pI, _pDN, _sEA, _jO, _jIo],
682
- [0, () => Source$, () => SignedObject$, () => SigningMaterial$, 4, 0, 2, 0, 0, 0, 0, 4, 0, 0]
683
- ];
684
- var SigningJobRevocationRecord$ = [3, n0, _SJRR,
685
- 0,
686
- [_r, _rAe, _rBe],
687
- [0, 4, 0]
688
- ];
689
- var SigningMaterial$ = [3, n0, _SM,
690
- 0,
691
- [_cAe],
692
- [0], 1
693
- ];
694
- var SigningPlatform$ = [3, n0, _SP,
695
- 0,
696
- [_pI, _dN, _pa, _t, _ca, _sC, _sIF, _mSIMB, _rS],
697
- [0, 0, 0, 0, 0, () => SigningConfiguration$, () => SigningImageFormat$, 1, 2]
698
- ];
699
- var SigningPlatformOverrides$ = [3, n0, _SPO,
700
- 0,
701
- [_sC, _sIF],
702
- [() => SigningConfigurationOverrides$, 0]
703
- ];
704
- var SigningProfile$ = [3, n0, _SPi,
705
- 0,
706
- [_pN, _pV, _pVA, _sM, _sVP, _pI, _pDN, _sP, _st, _ar, _ta],
707
- [0, 0, 0, () => SigningMaterial$, () => SignatureValidityPeriod$, 0, 0, 128 | 0, 0, 0, 128 | 0]
708
- ];
709
- var SigningProfileRevocationRecord$ = [3, n0, _SPRR,
710
- 0,
711
- [_rEF, _rAe, _rBe],
712
- [4, 4, 0]
713
- ];
714
- var SignPayloadRequest$ = [3, n0, _SPR,
715
- 0,
716
- [_pN, _pay, _pF, _pO],
717
- [0, 21, 0, 0], 3
718
- ];
719
- var SignPayloadResponse$ = [3, n0, _SPRi,
720
- 0,
721
- [_jI, _jO, _me, _si],
722
- [0, 0, 128 | 0, 21]
723
- ];
724
- var Source$ = [3, n0, _S,
725
- 0,
726
- [_s_],
727
- [() => S3Source$]
728
- ];
729
- var StartSigningJobRequest$ = [3, n0, _SSJR,
730
- 0,
731
- [_s, _d, _pN, _cRT, _pO],
732
- [() => Source$, () => Destination$, 0, [0, 4], 0], 3
733
- ];
734
- var StartSigningJobResponse$ = [3, n0, _SSJRt,
735
- 0,
736
- [_jI, _jO],
737
- [0, 0]
738
- ];
739
- var TagResourceRequest$ = [3, n0, _TRR,
740
- 0,
741
- [_rA, _ta],
742
- [[0, 1], 128 | 0], 2
743
- ];
744
- var TagResourceResponse$ = [3, n0, _TRRa,
745
- 0,
746
- [],
747
- []
748
- ];
749
- var ThrottlingException$ = [-3, n0, _TE,
750
- { [_e]: _c, [_hE]: 429 },
751
- [_m, _co],
752
- [0, 0]
753
- ];
754
- schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
755
- var TooManyRequestsException$ = [-3, n0, _TMRE,
756
- { [_e]: _c, [_hE]: 429 },
757
- [_m, _co],
758
- [0, 0]
759
- ];
760
- schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
761
- var UntagResourceRequest$ = [3, n0, _URR,
762
- 0,
763
- [_rA, _tK],
764
- [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
765
- ];
766
- var UntagResourceResponse$ = [3, n0, _URRn,
767
- 0,
768
- [],
769
- []
770
- ];
771
- var ValidationException$ = [-3, n0, _VE,
772
- { [_e]: _c, [_hE]: 400 },
773
- [_m, _co],
774
- [0, 0]
775
- ];
776
- schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
777
- var __Unit = "unit";
778
- var SignerServiceException$ = [-3, _sm, "SignerServiceException", 0, [], []];
779
- schema.TypeRegistry.for(_sm).registerError(SignerServiceException$, SignerServiceException);
780
- var Permissions = [1, n0, _Pe,
781
- 0, () => Permission$
782
- ];
783
- var SigningJobs = [1, n0, _SJi,
784
- 0, () => SigningJob$
785
- ];
786
- var SigningPlatforms = [1, n0, _SPig,
787
- 0, () => SigningPlatform$
788
- ];
789
- var SigningProfiles = [1, n0, _SPign,
790
- 0, () => SigningProfile$
791
- ];
792
- var AddProfilePermission$ = [9, n0, _APP,
793
- { [_h]: ["POST", "/signing-profiles/{profileName}/permissions", 200] }, () => AddProfilePermissionRequest$, () => AddProfilePermissionResponse$
794
- ];
795
- var CancelSigningProfile$ = [9, n0, _CSP,
796
- { [_h]: ["DELETE", "/signing-profiles/{profileName}", 200] }, () => CancelSigningProfileRequest$, () => __Unit
797
- ];
798
- var DescribeSigningJob$ = [9, n0, _DSJ,
799
- { [_h]: ["GET", "/signing-jobs/{jobId}", 200] }, () => DescribeSigningJobRequest$, () => DescribeSigningJobResponse$
800
- ];
801
- var GetRevocationStatus$ = [9, n0, _GRS,
802
- { [_en]: ["data-"], [_h]: ["GET", "/revocations", 200] }, () => GetRevocationStatusRequest$, () => GetRevocationStatusResponse$
803
- ];
804
- var GetSigningPlatform$ = [9, n0, _GSP,
805
- { [_h]: ["GET", "/signing-platforms/{platformId}", 200] }, () => GetSigningPlatformRequest$, () => GetSigningPlatformResponse$
806
- ];
807
- var GetSigningProfile$ = [9, n0, _GSPe,
808
- { [_h]: ["GET", "/signing-profiles/{profileName}", 200] }, () => GetSigningProfileRequest$, () => GetSigningProfileResponse$
809
- ];
810
- var ListProfilePermissions$ = [9, n0, _LPP,
811
- { [_h]: ["GET", "/signing-profiles/{profileName}/permissions", 200] }, () => ListProfilePermissionsRequest$, () => ListProfilePermissionsResponse$
812
- ];
813
- var ListSigningJobs$ = [9, n0, _LSJ,
814
- { [_h]: ["GET", "/signing-jobs", 200] }, () => ListSigningJobsRequest$, () => ListSigningJobsResponse$
815
- ];
816
- var ListSigningPlatforms$ = [9, n0, _LSP,
817
- { [_h]: ["GET", "/signing-platforms", 200] }, () => ListSigningPlatformsRequest$, () => ListSigningPlatformsResponse$
818
- ];
819
- var ListSigningProfiles$ = [9, n0, _LSPi,
820
- { [_h]: ["GET", "/signing-profiles", 200] }, () => ListSigningProfilesRequest$, () => ListSigningProfilesResponse$
821
- ];
822
- var ListTagsForResource$ = [9, n0, _LTFR,
823
- { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
824
- ];
825
- var PutSigningProfile$ = [9, n0, _PSP,
826
- { [_h]: ["PUT", "/signing-profiles/{profileName}", 200] }, () => PutSigningProfileRequest$, () => PutSigningProfileResponse$
827
- ];
828
- var RemoveProfilePermission$ = [9, n0, _RPP,
829
- { [_h]: ["DELETE", "/signing-profiles/{profileName}/permissions/{statementId}", 200] }, () => RemoveProfilePermissionRequest$, () => RemoveProfilePermissionResponse$
830
- ];
831
- var RevokeSignature$ = [9, n0, _RS,
832
- { [_h]: ["PUT", "/signing-jobs/{jobId}/revoke", 200] }, () => RevokeSignatureRequest$, () => __Unit
833
- ];
834
- var RevokeSigningProfile$ = [9, n0, _RSP,
835
- { [_h]: ["PUT", "/signing-profiles/{profileName}/revoke", 200] }, () => RevokeSigningProfileRequest$, () => __Unit
836
- ];
837
- var SignPayload$ = [9, n0, _SPigna,
838
- { [_h]: ["POST", "/signing-jobs/with-payload", 200] }, () => SignPayloadRequest$, () => SignPayloadResponse$
839
- ];
840
- var StartSigningJob$ = [9, n0, _SSJ,
841
- { [_h]: ["POST", "/signing-jobs", 200] }, () => StartSigningJobRequest$, () => StartSigningJobResponse$
842
- ];
843
- var TagResource$ = [9, n0, _TR,
844
- { [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
845
- ];
846
- var UntagResource$ = [9, n0, _UR,
847
- { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
848
- ];
849
-
850
117
  class AddProfilePermissionCommand extends smithyClient.Command
851
118
  .classBuilder()
852
119
  .ep(commonParams)
@@ -855,7 +122,7 @@ class AddProfilePermissionCommand extends smithyClient.Command
855
122
  })
856
123
  .s("WallabyService", "AddProfilePermission", {})
857
124
  .n("SignerClient", "AddProfilePermissionCommand")
858
- .sc(AddProfilePermission$)
125
+ .sc(schemas_0.AddProfilePermission$)
859
126
  .build() {
860
127
  }
861
128
 
@@ -867,7 +134,7 @@ class CancelSigningProfileCommand extends smithyClient.Command
867
134
  })
868
135
  .s("WallabyService", "CancelSigningProfile", {})
869
136
  .n("SignerClient", "CancelSigningProfileCommand")
870
- .sc(CancelSigningProfile$)
137
+ .sc(schemas_0.CancelSigningProfile$)
871
138
  .build() {
872
139
  }
873
140
 
@@ -879,7 +146,7 @@ class DescribeSigningJobCommand extends smithyClient.Command
879
146
  })
880
147
  .s("WallabyService", "DescribeSigningJob", {})
881
148
  .n("SignerClient", "DescribeSigningJobCommand")
882
- .sc(DescribeSigningJob$)
149
+ .sc(schemas_0.DescribeSigningJob$)
883
150
  .build() {
884
151
  }
885
152
 
@@ -891,7 +158,7 @@ class GetRevocationStatusCommand extends smithyClient.Command
891
158
  })
892
159
  .s("WallabyService", "GetRevocationStatus", {})
893
160
  .n("SignerClient", "GetRevocationStatusCommand")
894
- .sc(GetRevocationStatus$)
161
+ .sc(schemas_0.GetRevocationStatus$)
895
162
  .build() {
896
163
  }
897
164
 
@@ -903,7 +170,7 @@ class GetSigningPlatformCommand extends smithyClient.Command
903
170
  })
904
171
  .s("WallabyService", "GetSigningPlatform", {})
905
172
  .n("SignerClient", "GetSigningPlatformCommand")
906
- .sc(GetSigningPlatform$)
173
+ .sc(schemas_0.GetSigningPlatform$)
907
174
  .build() {
908
175
  }
909
176
 
@@ -915,7 +182,7 @@ class GetSigningProfileCommand extends smithyClient.Command
915
182
  })
916
183
  .s("WallabyService", "GetSigningProfile", {})
917
184
  .n("SignerClient", "GetSigningProfileCommand")
918
- .sc(GetSigningProfile$)
185
+ .sc(schemas_0.GetSigningProfile$)
919
186
  .build() {
920
187
  }
921
188
 
@@ -927,7 +194,7 @@ class ListProfilePermissionsCommand extends smithyClient.Command
927
194
  })
928
195
  .s("WallabyService", "ListProfilePermissions", {})
929
196
  .n("SignerClient", "ListProfilePermissionsCommand")
930
- .sc(ListProfilePermissions$)
197
+ .sc(schemas_0.ListProfilePermissions$)
931
198
  .build() {
932
199
  }
933
200
 
@@ -939,7 +206,7 @@ class ListSigningJobsCommand extends smithyClient.Command
939
206
  })
940
207
  .s("WallabyService", "ListSigningJobs", {})
941
208
  .n("SignerClient", "ListSigningJobsCommand")
942
- .sc(ListSigningJobs$)
209
+ .sc(schemas_0.ListSigningJobs$)
943
210
  .build() {
944
211
  }
945
212
 
@@ -951,7 +218,7 @@ class ListSigningPlatformsCommand extends smithyClient.Command
951
218
  })
952
219
  .s("WallabyService", "ListSigningPlatforms", {})
953
220
  .n("SignerClient", "ListSigningPlatformsCommand")
954
- .sc(ListSigningPlatforms$)
221
+ .sc(schemas_0.ListSigningPlatforms$)
955
222
  .build() {
956
223
  }
957
224
 
@@ -963,7 +230,7 @@ class ListSigningProfilesCommand extends smithyClient.Command
963
230
  })
964
231
  .s("WallabyService", "ListSigningProfiles", {})
965
232
  .n("SignerClient", "ListSigningProfilesCommand")
966
- .sc(ListSigningProfiles$)
233
+ .sc(schemas_0.ListSigningProfiles$)
967
234
  .build() {
968
235
  }
969
236
 
@@ -975,7 +242,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
975
242
  })
976
243
  .s("WallabyService", "ListTagsForResource", {})
977
244
  .n("SignerClient", "ListTagsForResourceCommand")
978
- .sc(ListTagsForResource$)
245
+ .sc(schemas_0.ListTagsForResource$)
979
246
  .build() {
980
247
  }
981
248
 
@@ -987,7 +254,7 @@ class PutSigningProfileCommand extends smithyClient.Command
987
254
  })
988
255
  .s("WallabyService", "PutSigningProfile", {})
989
256
  .n("SignerClient", "PutSigningProfileCommand")
990
- .sc(PutSigningProfile$)
257
+ .sc(schemas_0.PutSigningProfile$)
991
258
  .build() {
992
259
  }
993
260
 
@@ -999,7 +266,7 @@ class RemoveProfilePermissionCommand extends smithyClient.Command
999
266
  })
1000
267
  .s("WallabyService", "RemoveProfilePermission", {})
1001
268
  .n("SignerClient", "RemoveProfilePermissionCommand")
1002
- .sc(RemoveProfilePermission$)
269
+ .sc(schemas_0.RemoveProfilePermission$)
1003
270
  .build() {
1004
271
  }
1005
272
 
@@ -1011,7 +278,7 @@ class RevokeSignatureCommand extends smithyClient.Command
1011
278
  })
1012
279
  .s("WallabyService", "RevokeSignature", {})
1013
280
  .n("SignerClient", "RevokeSignatureCommand")
1014
- .sc(RevokeSignature$)
281
+ .sc(schemas_0.RevokeSignature$)
1015
282
  .build() {
1016
283
  }
1017
284
 
@@ -1023,7 +290,7 @@ class RevokeSigningProfileCommand extends smithyClient.Command
1023
290
  })
1024
291
  .s("WallabyService", "RevokeSigningProfile", {})
1025
292
  .n("SignerClient", "RevokeSigningProfileCommand")
1026
- .sc(RevokeSigningProfile$)
293
+ .sc(schemas_0.RevokeSigningProfile$)
1027
294
  .build() {
1028
295
  }
1029
296
 
@@ -1035,7 +302,7 @@ class SignPayloadCommand extends smithyClient.Command
1035
302
  })
1036
303
  .s("WallabyService", "SignPayload", {})
1037
304
  .n("SignerClient", "SignPayloadCommand")
1038
- .sc(SignPayload$)
305
+ .sc(schemas_0.SignPayload$)
1039
306
  .build() {
1040
307
  }
1041
308
 
@@ -1047,7 +314,7 @@ class StartSigningJobCommand extends smithyClient.Command
1047
314
  })
1048
315
  .s("WallabyService", "StartSigningJob", {})
1049
316
  .n("SignerClient", "StartSigningJobCommand")
1050
- .sc(StartSigningJob$)
317
+ .sc(schemas_0.StartSigningJob$)
1051
318
  .build() {
1052
319
  }
1053
320
 
@@ -1059,7 +326,7 @@ class TagResourceCommand extends smithyClient.Command
1059
326
  })
1060
327
  .s("WallabyService", "TagResource", {})
1061
328
  .n("SignerClient", "TagResourceCommand")
1062
- .sc(TagResource$)
329
+ .sc(schemas_0.TagResource$)
1063
330
  .build() {
1064
331
  }
1065
332
 
@@ -1071,7 +338,7 @@ class UntagResourceCommand extends smithyClient.Command
1071
338
  })
1072
339
  .s("WallabyService", "UntagResource", {})
1073
340
  .n("SignerClient", "UntagResourceCommand")
1074
- .sc(UntagResource$)
341
+ .sc(schemas_0.UntagResource$)
1075
342
  .build() {
1076
343
  }
1077
344
 
@@ -1196,132 +463,52 @@ Object.defineProperty(exports, "__Client", {
1196
463
  enumerable: true,
1197
464
  get: function () { return smithyClient.Client; }
1198
465
  });
1199
- exports.AccessDeniedException = AccessDeniedException;
1200
- exports.AccessDeniedException$ = AccessDeniedException$;
1201
- exports.AddProfilePermission$ = AddProfilePermission$;
466
+ Object.defineProperty(exports, "SignerServiceException", {
467
+ enumerable: true,
468
+ get: function () { return SignerServiceException.SignerServiceException; }
469
+ });
1202
470
  exports.AddProfilePermissionCommand = AddProfilePermissionCommand;
1203
- exports.AddProfilePermissionRequest$ = AddProfilePermissionRequest$;
1204
- exports.AddProfilePermissionResponse$ = AddProfilePermissionResponse$;
1205
- exports.BadRequestException = BadRequestException;
1206
- exports.BadRequestException$ = BadRequestException$;
1207
- exports.CancelSigningProfile$ = CancelSigningProfile$;
1208
471
  exports.CancelSigningProfileCommand = CancelSigningProfileCommand;
1209
- exports.CancelSigningProfileRequest$ = CancelSigningProfileRequest$;
1210
472
  exports.Category = Category;
1211
- exports.ConflictException = ConflictException;
1212
- exports.ConflictException$ = ConflictException$;
1213
- exports.DescribeSigningJob$ = DescribeSigningJob$;
1214
473
  exports.DescribeSigningJobCommand = DescribeSigningJobCommand;
1215
- exports.DescribeSigningJobRequest$ = DescribeSigningJobRequest$;
1216
- exports.DescribeSigningJobResponse$ = DescribeSigningJobResponse$;
1217
- exports.Destination$ = Destination$;
1218
474
  exports.EncryptionAlgorithm = EncryptionAlgorithm;
1219
- exports.EncryptionAlgorithmOptions$ = EncryptionAlgorithmOptions$;
1220
- exports.GetRevocationStatus$ = GetRevocationStatus$;
1221
475
  exports.GetRevocationStatusCommand = GetRevocationStatusCommand;
1222
- exports.GetRevocationStatusRequest$ = GetRevocationStatusRequest$;
1223
- exports.GetRevocationStatusResponse$ = GetRevocationStatusResponse$;
1224
- exports.GetSigningPlatform$ = GetSigningPlatform$;
1225
476
  exports.GetSigningPlatformCommand = GetSigningPlatformCommand;
1226
- exports.GetSigningPlatformRequest$ = GetSigningPlatformRequest$;
1227
- exports.GetSigningPlatformResponse$ = GetSigningPlatformResponse$;
1228
- exports.GetSigningProfile$ = GetSigningProfile$;
1229
477
  exports.GetSigningProfileCommand = GetSigningProfileCommand;
1230
- exports.GetSigningProfileRequest$ = GetSigningProfileRequest$;
1231
- exports.GetSigningProfileResponse$ = GetSigningProfileResponse$;
1232
478
  exports.HashAlgorithm = HashAlgorithm;
1233
- exports.HashAlgorithmOptions$ = HashAlgorithmOptions$;
1234
479
  exports.ImageFormat = ImageFormat;
1235
- exports.InternalServiceErrorException = InternalServiceErrorException;
1236
- exports.InternalServiceErrorException$ = InternalServiceErrorException$;
1237
- exports.ListProfilePermissions$ = ListProfilePermissions$;
1238
480
  exports.ListProfilePermissionsCommand = ListProfilePermissionsCommand;
1239
- exports.ListProfilePermissionsRequest$ = ListProfilePermissionsRequest$;
1240
- exports.ListProfilePermissionsResponse$ = ListProfilePermissionsResponse$;
1241
- exports.ListSigningJobs$ = ListSigningJobs$;
1242
481
  exports.ListSigningJobsCommand = ListSigningJobsCommand;
1243
- exports.ListSigningJobsRequest$ = ListSigningJobsRequest$;
1244
- exports.ListSigningJobsResponse$ = ListSigningJobsResponse$;
1245
- exports.ListSigningPlatforms$ = ListSigningPlatforms$;
1246
482
  exports.ListSigningPlatformsCommand = ListSigningPlatformsCommand;
1247
- exports.ListSigningPlatformsRequest$ = ListSigningPlatformsRequest$;
1248
- exports.ListSigningPlatformsResponse$ = ListSigningPlatformsResponse$;
1249
- exports.ListSigningProfiles$ = ListSigningProfiles$;
1250
483
  exports.ListSigningProfilesCommand = ListSigningProfilesCommand;
1251
- exports.ListSigningProfilesRequest$ = ListSigningProfilesRequest$;
1252
- exports.ListSigningProfilesResponse$ = ListSigningProfilesResponse$;
1253
- exports.ListTagsForResource$ = ListTagsForResource$;
1254
484
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1255
- exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1256
- exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1257
- exports.NotFoundException = NotFoundException;
1258
- exports.NotFoundException$ = NotFoundException$;
1259
- exports.Permission$ = Permission$;
1260
- exports.PutSigningProfile$ = PutSigningProfile$;
1261
485
  exports.PutSigningProfileCommand = PutSigningProfileCommand;
1262
- exports.PutSigningProfileRequest$ = PutSigningProfileRequest$;
1263
- exports.PutSigningProfileResponse$ = PutSigningProfileResponse$;
1264
- exports.RemoveProfilePermission$ = RemoveProfilePermission$;
1265
486
  exports.RemoveProfilePermissionCommand = RemoveProfilePermissionCommand;
1266
- exports.RemoveProfilePermissionRequest$ = RemoveProfilePermissionRequest$;
1267
- exports.RemoveProfilePermissionResponse$ = RemoveProfilePermissionResponse$;
1268
- exports.ResourceNotFoundException = ResourceNotFoundException;
1269
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1270
- exports.RevokeSignature$ = RevokeSignature$;
1271
487
  exports.RevokeSignatureCommand = RevokeSignatureCommand;
1272
- exports.RevokeSignatureRequest$ = RevokeSignatureRequest$;
1273
- exports.RevokeSigningProfile$ = RevokeSigningProfile$;
1274
488
  exports.RevokeSigningProfileCommand = RevokeSigningProfileCommand;
1275
- exports.RevokeSigningProfileRequest$ = RevokeSigningProfileRequest$;
1276
- exports.S3Destination$ = S3Destination$;
1277
- exports.S3SignedObject$ = S3SignedObject$;
1278
- exports.S3Source$ = S3Source$;
1279
- exports.ServiceLimitExceededException = ServiceLimitExceededException;
1280
- exports.ServiceLimitExceededException$ = ServiceLimitExceededException$;
1281
- exports.SignPayload$ = SignPayload$;
1282
489
  exports.SignPayloadCommand = SignPayloadCommand;
1283
- exports.SignPayloadRequest$ = SignPayloadRequest$;
1284
- exports.SignPayloadResponse$ = SignPayloadResponse$;
1285
- exports.SignatureValidityPeriod$ = SignatureValidityPeriod$;
1286
- exports.SignedObject$ = SignedObject$;
1287
490
  exports.Signer = Signer;
1288
491
  exports.SignerClient = SignerClient;
1289
- exports.SignerServiceException = SignerServiceException;
1290
- exports.SignerServiceException$ = SignerServiceException$;
1291
- exports.SigningConfiguration$ = SigningConfiguration$;
1292
- exports.SigningConfigurationOverrides$ = SigningConfigurationOverrides$;
1293
- exports.SigningImageFormat$ = SigningImageFormat$;
1294
- exports.SigningJob$ = SigningJob$;
1295
- exports.SigningJobRevocationRecord$ = SigningJobRevocationRecord$;
1296
- exports.SigningMaterial$ = SigningMaterial$;
1297
- exports.SigningPlatform$ = SigningPlatform$;
1298
- exports.SigningPlatformOverrides$ = SigningPlatformOverrides$;
1299
- exports.SigningProfile$ = SigningProfile$;
1300
- exports.SigningProfileRevocationRecord$ = SigningProfileRevocationRecord$;
1301
492
  exports.SigningProfileStatus = SigningProfileStatus;
1302
493
  exports.SigningStatus = SigningStatus;
1303
- exports.Source$ = Source$;
1304
- exports.StartSigningJob$ = StartSigningJob$;
1305
494
  exports.StartSigningJobCommand = StartSigningJobCommand;
1306
- exports.StartSigningJobRequest$ = StartSigningJobRequest$;
1307
- exports.StartSigningJobResponse$ = StartSigningJobResponse$;
1308
- exports.TagResource$ = TagResource$;
1309
495
  exports.TagResourceCommand = TagResourceCommand;
1310
- exports.TagResourceRequest$ = TagResourceRequest$;
1311
- exports.TagResourceResponse$ = TagResourceResponse$;
1312
- exports.ThrottlingException = ThrottlingException;
1313
- exports.ThrottlingException$ = ThrottlingException$;
1314
- exports.TooManyRequestsException = TooManyRequestsException;
1315
- exports.TooManyRequestsException$ = TooManyRequestsException$;
1316
- exports.UntagResource$ = UntagResource$;
1317
496
  exports.UntagResourceCommand = UntagResourceCommand;
1318
- exports.UntagResourceRequest$ = UntagResourceRequest$;
1319
- exports.UntagResourceResponse$ = UntagResourceResponse$;
1320
- exports.ValidationException = ValidationException;
1321
- exports.ValidationException$ = ValidationException$;
1322
497
  exports.ValidityType = ValidityType;
1323
498
  exports.paginateListSigningJobs = paginateListSigningJobs;
1324
499
  exports.paginateListSigningPlatforms = paginateListSigningPlatforms;
1325
500
  exports.paginateListSigningProfiles = paginateListSigningProfiles;
1326
501
  exports.waitForSuccessfulSigningJob = waitForSuccessfulSigningJob;
1327
502
  exports.waitUntilSuccessfulSigningJob = waitUntilSuccessfulSigningJob;
503
+ Object.keys(schemas_0).forEach(function (k) {
504
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
505
+ enumerable: true,
506
+ get: function () { return schemas_0[k]; }
507
+ });
508
+ });
509
+ Object.keys(errors).forEach(function (k) {
510
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
511
+ enumerable: true,
512
+ get: function () { return errors[k]; }
513
+ });
514
+ });