@aws-sdk/client-signer 3.952.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist-cjs/index.js +297 -204
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AddProfilePermissionCommand.js +2 -2
  4. package/dist-es/commands/CancelSigningProfileCommand.js +2 -2
  5. package/dist-es/commands/DescribeSigningJobCommand.js +2 -2
  6. package/dist-es/commands/GetRevocationStatusCommand.js +2 -2
  7. package/dist-es/commands/GetSigningPlatformCommand.js +2 -2
  8. package/dist-es/commands/GetSigningProfileCommand.js +2 -2
  9. package/dist-es/commands/ListProfilePermissionsCommand.js +2 -2
  10. package/dist-es/commands/ListSigningJobsCommand.js +2 -2
  11. package/dist-es/commands/ListSigningPlatformsCommand.js +2 -2
  12. package/dist-es/commands/ListSigningProfilesCommand.js +2 -2
  13. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  14. package/dist-es/commands/PutSigningProfileCommand.js +2 -2
  15. package/dist-es/commands/RemoveProfilePermissionCommand.js +2 -2
  16. package/dist-es/commands/RevokeSignatureCommand.js +2 -2
  17. package/dist-es/commands/RevokeSigningProfileCommand.js +2 -2
  18. package/dist-es/commands/SignPayloadCommand.js +2 -2
  19. package/dist-es/commands/StartSigningJobCommand.js +2 -2
  20. package/dist-es/commands/TagResourceCommand.js +2 -2
  21. package/dist-es/commands/UntagResourceCommand.js +2 -2
  22. package/dist-es/index.js +1 -0
  23. package/dist-es/runtimeConfig.shared.js +6 -1
  24. package/dist-es/schemas/schemas_0.js +174 -166
  25. package/dist-types/SignerClient.d.ts +1 -10
  26. package/dist-types/index.d.ts +1 -0
  27. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  28. package/dist-types/runtimeConfig.d.ts +6 -2
  29. package/dist-types/runtimeConfig.native.d.ts +6 -2
  30. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  31. package/dist-types/schemas/schemas_0.d.ts +86 -101
  32. package/dist-types/ts3.4/SignerClient.d.ts +0 -4
  33. package/dist-types/ts3.4/index.d.ts +1 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  38. package/dist-types/ts3.4/schemas/schemas_0.d.ts +85 -101
  39. package/package.json +35 -35
package/dist-cjs/index.js CHANGED
@@ -111,14 +111,14 @@ class SignerClient extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- let SignerServiceException$1 = class SignerServiceException extends smithyClient.ServiceException {
114
+ class SignerServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, SignerServiceException.prototype);
118
118
  }
119
- };
119
+ }
120
120
 
121
- let AccessDeniedException$1 = class AccessDeniedException extends SignerServiceException$1 {
121
+ class AccessDeniedException extends SignerServiceException {
122
122
  name = "AccessDeniedException";
123
123
  $fault = "client";
124
124
  code;
@@ -131,8 +131,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends SignerServiceE
131
131
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
132
  this.code = opts.code;
133
133
  }
134
- };
135
- let ConflictException$1 = class ConflictException extends SignerServiceException$1 {
134
+ }
135
+ class ConflictException extends SignerServiceException {
136
136
  name = "ConflictException";
137
137
  $fault = "client";
138
138
  code;
@@ -145,8 +145,8 @@ let ConflictException$1 = class ConflictException extends SignerServiceException
145
145
  Object.setPrototypeOf(this, ConflictException.prototype);
146
146
  this.code = opts.code;
147
147
  }
148
- };
149
- let InternalServiceErrorException$1 = class InternalServiceErrorException extends SignerServiceException$1 {
148
+ }
149
+ class InternalServiceErrorException extends SignerServiceException {
150
150
  name = "InternalServiceErrorException";
151
151
  $fault = "server";
152
152
  code;
@@ -159,8 +159,8 @@ let InternalServiceErrorException$1 = class InternalServiceErrorException extend
159
159
  Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
160
160
  this.code = opts.code;
161
161
  }
162
- };
163
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends SignerServiceException$1 {
162
+ }
163
+ class ResourceNotFoundException extends SignerServiceException {
164
164
  name = "ResourceNotFoundException";
165
165
  $fault = "client";
166
166
  code;
@@ -173,8 +173,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Signer
173
173
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
174
174
  this.code = opts.code;
175
175
  }
176
- };
177
- let ServiceLimitExceededException$1 = class ServiceLimitExceededException extends SignerServiceException$1 {
176
+ }
177
+ class ServiceLimitExceededException extends SignerServiceException {
178
178
  name = "ServiceLimitExceededException";
179
179
  $fault = "client";
180
180
  code;
@@ -187,8 +187,8 @@ let ServiceLimitExceededException$1 = class ServiceLimitExceededException extend
187
187
  Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
188
188
  this.code = opts.code;
189
189
  }
190
- };
191
- let TooManyRequestsException$1 = class TooManyRequestsException extends SignerServiceException$1 {
190
+ }
191
+ class TooManyRequestsException extends SignerServiceException {
192
192
  name = "TooManyRequestsException";
193
193
  $fault = "client";
194
194
  code;
@@ -201,8 +201,8 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends SignerSe
201
201
  Object.setPrototypeOf(this, TooManyRequestsException.prototype);
202
202
  this.code = opts.code;
203
203
  }
204
- };
205
- let ValidationException$1 = class ValidationException extends SignerServiceException$1 {
204
+ }
205
+ class ValidationException extends SignerServiceException {
206
206
  name = "ValidationException";
207
207
  $fault = "client";
208
208
  code;
@@ -215,8 +215,8 @@ let ValidationException$1 = class ValidationException extends SignerServiceExcep
215
215
  Object.setPrototypeOf(this, ValidationException.prototype);
216
216
  this.code = opts.code;
217
217
  }
218
- };
219
- let BadRequestException$1 = class BadRequestException extends SignerServiceException$1 {
218
+ }
219
+ class BadRequestException extends SignerServiceException {
220
220
  name = "BadRequestException";
221
221
  $fault = "client";
222
222
  code;
@@ -229,8 +229,8 @@ let BadRequestException$1 = class BadRequestException extends SignerServiceExcep
229
229
  Object.setPrototypeOf(this, BadRequestException.prototype);
230
230
  this.code = opts.code;
231
231
  }
232
- };
233
- let NotFoundException$1 = class NotFoundException extends SignerServiceException$1 {
232
+ }
233
+ class NotFoundException extends SignerServiceException {
234
234
  name = "NotFoundException";
235
235
  $fault = "client";
236
236
  code;
@@ -243,8 +243,8 @@ let NotFoundException$1 = class NotFoundException extends SignerServiceException
243
243
  Object.setPrototypeOf(this, NotFoundException.prototype);
244
244
  this.code = opts.code;
245
245
  }
246
- };
247
- let ThrottlingException$1 = class ThrottlingException extends SignerServiceException$1 {
246
+ }
247
+ class ThrottlingException extends SignerServiceException {
248
248
  name = "ThrottlingException";
249
249
  $fault = "client";
250
250
  code;
@@ -257,7 +257,7 @@ let ThrottlingException$1 = class ThrottlingException extends SignerServiceExcep
257
257
  Object.setPrototypeOf(this, ThrottlingException.prototype);
258
258
  this.code = opts.code;
259
259
  }
260
- };
260
+ }
261
261
 
262
262
  const _ADE = "AccessDeniedException";
263
263
  const _APP = "AddProfilePermission";
@@ -439,9 +439,9 @@ const _ty = "type";
439
439
  const _v = "version";
440
440
  const _va = "value";
441
441
  const n0 = "com.amazonaws.signer";
442
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m, _co], [0, 0]];
443
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
444
- var AddProfilePermissionRequest = [
442
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m, _co], [0, 0]];
443
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
444
+ var AddProfilePermissionRequest$ = [
445
445
  3,
446
446
  n0,
447
447
  _APPR,
@@ -449,14 +449,14 @@ var AddProfilePermissionRequest = [
449
449
  [_pN, _pV, _a, _p, _rI, _sI],
450
450
  [[0, 1], 0, 0, 0, 0, 0],
451
451
  ];
452
- var AddProfilePermissionResponse = [3, n0, _APPRd, 0, [_rI], [0]];
453
- var BadRequestException = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m, _co], [0, 0]];
454
- schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
455
- var CancelSigningProfileRequest = [3, n0, _CSPR, 0, [_pN], [[0, 1]]];
456
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _co], [0, 0]];
457
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
458
- var DescribeSigningJobRequest = [3, n0, _DSJR, 0, [_jI], [[0, 1]]];
459
- var DescribeSigningJobResponse = [
452
+ var AddProfilePermissionResponse$ = [3, n0, _APPRd, 0, [_rI], [0]];
453
+ var BadRequestException$ = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m, _co], [0, 0]];
454
+ schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
455
+ var CancelSigningProfileRequest$ = [3, n0, _CSPR, 0, [_pN], [[0, 1]]];
456
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _co], [0, 0]];
457
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
458
+ var DescribeSigningJobRequest$ = [3, n0, _DSJR, 0, [_jI], [[0, 1]]];
459
+ var DescribeSigningJobResponse$ = [
460
460
  3,
461
461
  n0,
462
462
  _DSJRe,
@@ -464,13 +464,13 @@ var DescribeSigningJobResponse = [
464
464
  [_jI, _s, _sM, _pI, _pDN, _pN, _pV, _o, _sP, _cA, _cAo, _sEA, _rB, _st, _sR, _rR, _sO, _jO, _jIo],
465
465
  [
466
466
  0,
467
- () => Source,
468
- () => SigningMaterial,
467
+ () => Source$,
468
+ () => SigningMaterial$,
469
469
  0,
470
470
  0,
471
471
  0,
472
472
  0,
473
- () => SigningPlatformOverrides,
473
+ () => SigningPlatformOverrides$,
474
474
  128 | 0,
475
475
  4,
476
476
  4,
@@ -478,15 +478,15 @@ var DescribeSigningJobResponse = [
478
478
  0,
479
479
  0,
480
480
  0,
481
- () => SigningJobRevocationRecord,
482
- () => SignedObject,
481
+ () => SigningJobRevocationRecord$,
482
+ () => SignedObject$,
483
483
  0,
484
484
  0,
485
485
  ],
486
486
  ];
487
- var Destination = [3, n0, _D, 0, [_s_], [() => S3Destination]];
488
- var EncryptionAlgorithmOptions = [3, n0, _EAO, 0, [_aV, _dV], [64 | 0, 0]];
489
- var GetRevocationStatusRequest = [
487
+ var Destination$ = [3, n0, _D, 0, [_s_], [() => S3Destination$]];
488
+ var EncryptionAlgorithmOptions$ = [3, n0, _EAO, 0, [_aV, _dV], [64 | 0, 0]];
489
+ var GetRevocationStatusRequest$ = [
490
490
  3,
491
491
  n0,
492
492
  _GRSR,
@@ -500,17 +500,17 @@ var GetRevocationStatusRequest = [
500
500
  [64 | 0, { [_hQ]: _cH }],
501
501
  ],
502
502
  ];
503
- var GetRevocationStatusResponse = [3, n0, _GRSRe, 0, [_rE], [64 | 0]];
504
- var GetSigningPlatformRequest = [3, n0, _GSPR, 0, [_pI], [[0, 1]]];
505
- var GetSigningPlatformResponse = [
503
+ var GetRevocationStatusResponse$ = [3, n0, _GRSRe, 0, [_rE], [64 | 0]];
504
+ var GetSigningPlatformRequest$ = [3, n0, _GSPR, 0, [_pI], [[0, 1]]];
505
+ var GetSigningPlatformResponse$ = [
506
506
  3,
507
507
  n0,
508
508
  _GSPRe,
509
509
  0,
510
510
  [_pI, _dN, _pa, _t, _ca, _sC, _sIF, _mSIMB, _rS],
511
- [0, 0, 0, 0, 0, () => SigningConfiguration, () => SigningImageFormat, 1, 2],
511
+ [0, 0, 0, 0, 0, () => SigningConfiguration$, () => SigningImageFormat$, 1, 2],
512
512
  ];
513
- var GetSigningProfileRequest = [
513
+ var GetSigningProfileRequest$ = [
514
514
  3,
515
515
  n0,
516
516
  _GSPRet,
@@ -521,7 +521,7 @@ var GetSigningProfileRequest = [
521
521
  [0, { [_hQ]: _pO }],
522
522
  ],
523
523
  ];
524
- var GetSigningProfileResponse = [
524
+ var GetSigningProfileResponse$ = [
525
525
  3,
526
526
  n0,
527
527
  _GSPReti,
@@ -531,12 +531,12 @@ var GetSigningProfileResponse = [
531
531
  0,
532
532
  0,
533
533
  0,
534
- () => SigningProfileRevocationRecord,
535
- () => SigningMaterial,
534
+ () => SigningProfileRevocationRecord$,
535
+ () => SigningMaterial$,
536
536
  0,
537
537
  0,
538
- () => SignatureValidityPeriod,
539
- () => SigningPlatformOverrides,
538
+ () => SignatureValidityPeriod$,
539
+ () => SigningPlatformOverrides$,
540
540
  128 | 0,
541
541
  0,
542
542
  0,
@@ -544,8 +544,8 @@ var GetSigningProfileResponse = [
544
544
  128 | 0,
545
545
  ],
546
546
  ];
547
- var HashAlgorithmOptions = [3, n0, _HAO, 0, [_aV, _dV], [64 | 0, 0]];
548
- var InternalServiceErrorException = [
547
+ var HashAlgorithmOptions$ = [3, n0, _HAO, 0, [_aV, _dV], [64 | 0, 0]];
548
+ var InternalServiceErrorException$ = [
549
549
  -3,
550
550
  n0,
551
551
  _ISEE,
@@ -553,8 +553,8 @@ var InternalServiceErrorException = [
553
553
  [_m, _co],
554
554
  [0, 0],
555
555
  ];
556
- schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException, InternalServiceErrorException$1);
557
- var ListProfilePermissionsRequest = [
556
+ schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException$, InternalServiceErrorException);
557
+ var ListProfilePermissionsRequest$ = [
558
558
  3,
559
559
  n0,
560
560
  _LPPR,
@@ -565,7 +565,7 @@ var ListProfilePermissionsRequest = [
565
565
  [0, { [_hQ]: _nT }],
566
566
  ],
567
567
  ];
568
- var ListProfilePermissionsResponse = [
568
+ var ListProfilePermissionsResponse$ = [
569
569
  3,
570
570
  n0,
571
571
  _LPPRi,
@@ -573,7 +573,7 @@ var ListProfilePermissionsResponse = [
573
573
  [_rI, _pSB, _pe, _nT],
574
574
  [0, 1, () => Permissions, 0],
575
575
  ];
576
- var ListSigningJobsRequest = [
576
+ var ListSigningJobsRequest$ = [
577
577
  3,
578
578
  n0,
579
579
  _LSJR,
@@ -591,8 +591,8 @@ var ListSigningJobsRequest = [
591
591
  [0, { [_hQ]: _jIo }],
592
592
  ],
593
593
  ];
594
- var ListSigningJobsResponse = [3, n0, _LSJRi, 0, [_j, _nT], [() => SigningJobs, 0]];
595
- var ListSigningPlatformsRequest = [
594
+ var ListSigningJobsResponse$ = [3, n0, _LSJRi, 0, [_j, _nT], [() => SigningJobs, 0]];
595
+ var ListSigningPlatformsRequest$ = [
596
596
  3,
597
597
  n0,
598
598
  _LSPR,
@@ -606,7 +606,7 @@ var ListSigningPlatformsRequest = [
606
606
  [0, { [_hQ]: _nT }],
607
607
  ],
608
608
  ];
609
- var ListSigningPlatformsResponse = [
609
+ var ListSigningPlatformsResponse$ = [
610
610
  3,
611
611
  n0,
612
612
  _LSPRi,
@@ -614,7 +614,7 @@ var ListSigningPlatformsResponse = [
614
614
  [_pl, _nT],
615
615
  [() => SigningPlatforms, 0],
616
616
  ];
617
- var ListSigningProfilesRequest = [
617
+ var ListSigningProfilesRequest$ = [
618
618
  3,
619
619
  n0,
620
620
  _LSPRis,
@@ -628,7 +628,7 @@ var ListSigningProfilesRequest = [
628
628
  [64 | 0, { [_hQ]: _sta }],
629
629
  ],
630
630
  ];
631
- var ListSigningProfilesResponse = [
631
+ var ListSigningProfilesResponse$ = [
632
632
  3,
633
633
  n0,
634
634
  _LSPRist,
@@ -636,21 +636,29 @@ var ListSigningProfilesResponse = [
636
636
  [_pr, _nT],
637
637
  [() => SigningProfiles, 0],
638
638
  ];
639
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
640
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
641
- var NotFoundException = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_m, _co], [0, 0]];
642
- schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
643
- var Permission = [3, n0, _P, 0, [_a, _p, _sI, _pV], [0, 0, 0, 0]];
644
- var PutSigningProfileRequest = [
639
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
640
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
641
+ var NotFoundException$ = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_m, _co], [0, 0]];
642
+ schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
643
+ var Permission$ = [3, n0, _P, 0, [_a, _p, _sI, _pV], [0, 0, 0, 0]];
644
+ var PutSigningProfileRequest$ = [
645
645
  3,
646
646
  n0,
647
647
  _PSPR,
648
648
  0,
649
649
  [_pN, _sM, _sVP, _pI, _o, _sP, _ta],
650
- [[0, 1], () => SigningMaterial, () => SignatureValidityPeriod, 0, () => SigningPlatformOverrides, 128 | 0, 128 | 0],
650
+ [
651
+ [0, 1],
652
+ () => SigningMaterial$,
653
+ () => SignatureValidityPeriod$,
654
+ 0,
655
+ () => SigningPlatformOverrides$,
656
+ 128 | 0,
657
+ 128 | 0,
658
+ ],
651
659
  ];
652
- var PutSigningProfileResponse = [3, n0, _PSPRu, 0, [_ar, _pV, _pVA], [0, 0, 0]];
653
- var RemoveProfilePermissionRequest = [
660
+ var PutSigningProfileResponse$ = [3, n0, _PSPRu, 0, [_ar, _pV, _pVA], [0, 0, 0]];
661
+ var RemoveProfilePermissionRequest$ = [
654
662
  3,
655
663
  n0,
656
664
  _RPPR,
@@ -662,11 +670,11 @@ var RemoveProfilePermissionRequest = [
662
670
  [0, 1],
663
671
  ],
664
672
  ];
665
- var RemoveProfilePermissionResponse = [3, n0, _RPPRe, 0, [_rI], [0]];
666
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m, _co], [0, 0]];
667
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
668
- var RevokeSignatureRequest = [3, n0, _RSR, 0, [_jI, _jO, _r], [[0, 1], 0, 0]];
669
- var RevokeSigningProfileRequest = [
673
+ var RemoveProfilePermissionResponse$ = [3, n0, _RPPRe, 0, [_rI], [0]];
674
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m, _co], [0, 0]];
675
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
676
+ var RevokeSignatureRequest$ = [3, n0, _RSR, 0, [_jI, _jO, _r], [[0, 1], 0, 0]];
677
+ var RevokeSigningProfileRequest$ = [
670
678
  3,
671
679
  n0,
672
680
  _RSPR,
@@ -674,10 +682,10 @@ var RevokeSigningProfileRequest = [
674
682
  [_pN, _pV, _r, _eT],
675
683
  [[0, 1], 0, 0, 4],
676
684
  ];
677
- var S3Destination = [3, n0, _SD, 0, [_bN, _pre], [0, 0]];
678
- var S3SignedObject = [3, n0, _SSO, 0, [_bN, _k], [0, 0]];
679
- var S3Source = [3, n0, _SS, 0, [_bN, _k, _v], [0, 0, 0]];
680
- var ServiceLimitExceededException = [
685
+ var S3Destination$ = [3, n0, _SD, 0, [_bN, _pre], [0, 0]];
686
+ var S3SignedObject$ = [3, n0, _SSO, 0, [_bN, _k], [0, 0]];
687
+ var S3Source$ = [3, n0, _SS, 0, [_bN, _k, _v], [0, 0, 0]];
688
+ var ServiceLimitExceededException$ = [
681
689
  -3,
682
690
  n0,
683
691
  _SLEE,
@@ -685,73 +693,73 @@ var ServiceLimitExceededException = [
685
693
  [_m, _co],
686
694
  [0, 0],
687
695
  ];
688
- schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException, ServiceLimitExceededException$1);
689
- var SignatureValidityPeriod = [3, n0, _SVP, 0, [_va, _ty], [1, 0]];
690
- var SignedObject = [3, n0, _SO, 0, [_s_], [() => S3SignedObject]];
691
- var SigningConfiguration = [
696
+ schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
697
+ var SignatureValidityPeriod$ = [3, n0, _SVP, 0, [_va, _ty], [1, 0]];
698
+ var SignedObject$ = [3, n0, _SO, 0, [_s_], [() => S3SignedObject$]];
699
+ var SigningConfiguration$ = [
692
700
  3,
693
701
  n0,
694
702
  _SC,
695
703
  0,
696
704
  [_eAO, _hAO],
697
- [() => EncryptionAlgorithmOptions, () => HashAlgorithmOptions],
705
+ [() => EncryptionAlgorithmOptions$, () => HashAlgorithmOptions$],
698
706
  ];
699
- var SigningConfigurationOverrides = [3, n0, _SCO, 0, [_eA, _hA], [0, 0]];
700
- var SigningImageFormat = [3, n0, _SIF, 0, [_sF, _dF], [64 | 0, 0]];
701
- var SigningJob = [
707
+ var SigningConfigurationOverrides$ = [3, n0, _SCO, 0, [_eA, _hA], [0, 0]];
708
+ var SigningImageFormat$ = [3, n0, _SIF, 0, [_sF, _dF], [64 | 0, 0]];
709
+ var SigningJob$ = [
702
710
  3,
703
711
  n0,
704
712
  _SJ,
705
713
  0,
706
714
  [_jI, _s, _sO, _sM, _cA, _st, _iR, _pN, _pV, _pI, _pDN, _sEA, _jO, _jIo],
707
- [0, () => Source, () => SignedObject, () => SigningMaterial, 4, 0, 2, 0, 0, 0, 0, 4, 0, 0],
715
+ [0, () => Source$, () => SignedObject$, () => SigningMaterial$, 4, 0, 2, 0, 0, 0, 0, 4, 0, 0],
708
716
  ];
709
- var SigningJobRevocationRecord = [3, n0, _SJRR, 0, [_r, _rAe, _rBe], [0, 4, 0]];
710
- var SigningMaterial = [3, n0, _SM, 0, [_cAe], [0]];
711
- var SigningPlatform = [
717
+ var SigningJobRevocationRecord$ = [3, n0, _SJRR, 0, [_r, _rAe, _rBe], [0, 4, 0]];
718
+ var SigningMaterial$ = [3, n0, _SM, 0, [_cAe], [0]];
719
+ var SigningPlatform$ = [
712
720
  3,
713
721
  n0,
714
722
  _SP,
715
723
  0,
716
724
  [_pI, _dN, _pa, _t, _ca, _sC, _sIF, _mSIMB, _rS],
717
- [0, 0, 0, 0, 0, () => SigningConfiguration, () => SigningImageFormat, 1, 2],
725
+ [0, 0, 0, 0, 0, () => SigningConfiguration$, () => SigningImageFormat$, 1, 2],
718
726
  ];
719
- var SigningPlatformOverrides = [
727
+ var SigningPlatformOverrides$ = [
720
728
  3,
721
729
  n0,
722
730
  _SPO,
723
731
  0,
724
732
  [_sC, _sIF],
725
- [() => SigningConfigurationOverrides, 0],
733
+ [() => SigningConfigurationOverrides$, 0],
726
734
  ];
727
- var SigningProfile = [
735
+ var SigningProfile$ = [
728
736
  3,
729
737
  n0,
730
738
  _SPi,
731
739
  0,
732
740
  [_pN, _pV, _pVA, _sM, _sVP, _pI, _pDN, _sP, _st, _ar, _ta],
733
- [0, 0, 0, () => SigningMaterial, () => SignatureValidityPeriod, 0, 0, 128 | 0, 0, 0, 128 | 0],
741
+ [0, 0, 0, () => SigningMaterial$, () => SignatureValidityPeriod$, 0, 0, 128 | 0, 0, 0, 128 | 0],
734
742
  ];
735
- var SigningProfileRevocationRecord = [3, n0, _SPRR, 0, [_rEF, _rAe, _rBe], [4, 4, 0]];
736
- var SignPayloadRequest = [3, n0, _SPR, 0, [_pN, _pO, _pay, _pF], [0, 0, 21, 0]];
737
- var SignPayloadResponse = [3, n0, _SPRi, 0, [_jI, _jO, _me, _si], [0, 0, 128 | 0, 21]];
738
- var Source = [3, n0, _S, 0, [_s_], [() => S3Source]];
739
- var StartSigningJobRequest = [
743
+ var SigningProfileRevocationRecord$ = [3, n0, _SPRR, 0, [_rEF, _rAe, _rBe], [4, 4, 0]];
744
+ var SignPayloadRequest$ = [3, n0, _SPR, 0, [_pN, _pO, _pay, _pF], [0, 0, 21, 0]];
745
+ var SignPayloadResponse$ = [3, n0, _SPRi, 0, [_jI, _jO, _me, _si], [0, 0, 128 | 0, 21]];
746
+ var Source$ = [3, n0, _S, 0, [_s_], [() => S3Source$]];
747
+ var StartSigningJobRequest$ = [
740
748
  3,
741
749
  n0,
742
750
  _SSJR,
743
751
  0,
744
752
  [_s, _d, _pN, _cRT, _pO],
745
- [() => Source, () => Destination, 0, [0, 4], 0],
753
+ [() => Source$, () => Destination$, 0, [0, 4], 0],
746
754
  ];
747
- var StartSigningJobResponse = [3, n0, _SSJRt, 0, [_jI, _jO], [0, 0]];
748
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
749
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
750
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m, _co], [0, 0]];
751
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
752
- var TooManyRequestsException = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_m, _co], [0, 0]];
753
- schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
754
- var UntagResourceRequest = [
755
+ var StartSigningJobResponse$ = [3, n0, _SSJRt, 0, [_jI, _jO], [0, 0]];
756
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
757
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
758
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m, _co], [0, 0]];
759
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
760
+ var TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_m, _co], [0, 0]];
761
+ schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
762
+ var UntagResourceRequest$ = [
755
763
  3,
756
764
  n0,
757
765
  _URR,
@@ -762,167 +770,167 @@ var UntagResourceRequest = [
762
770
  [64 | 0, { [_hQ]: _tK }],
763
771
  ],
764
772
  ];
765
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
766
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m, _co], [0, 0]];
767
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
773
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
774
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m, _co], [0, 0]];
775
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
768
776
  var __Unit = "unit";
769
- var SignerServiceException = [-3, _sm, "SignerServiceException", 0, [], []];
770
- schema.TypeRegistry.for(_sm).registerError(SignerServiceException, SignerServiceException$1);
771
- var Permissions = [1, n0, _Pe, 0, () => Permission];
772
- var SigningJobs = [1, n0, _SJi, 0, () => SigningJob];
773
- var SigningPlatforms = [1, n0, _SPig, 0, () => SigningPlatform];
774
- var SigningProfiles = [1, n0, _SPign, 0, () => SigningProfile];
775
- var AddProfilePermission = [
777
+ var SignerServiceException$ = [-3, _sm, "SignerServiceException", 0, [], []];
778
+ schema.TypeRegistry.for(_sm).registerError(SignerServiceException$, SignerServiceException);
779
+ var Permissions = [1, n0, _Pe, 0, () => Permission$];
780
+ var SigningJobs = [1, n0, _SJi, 0, () => SigningJob$];
781
+ var SigningPlatforms = [1, n0, _SPig, 0, () => SigningPlatform$];
782
+ var SigningProfiles = [1, n0, _SPign, 0, () => SigningProfile$];
783
+ var AddProfilePermission$ = [
776
784
  9,
777
785
  n0,
778
786
  _APP,
779
787
  { [_h]: ["POST", "/signing-profiles/{profileName}/permissions", 200] },
780
- () => AddProfilePermissionRequest,
781
- () => AddProfilePermissionResponse,
788
+ () => AddProfilePermissionRequest$,
789
+ () => AddProfilePermissionResponse$,
782
790
  ];
783
- var CancelSigningProfile = [
791
+ var CancelSigningProfile$ = [
784
792
  9,
785
793
  n0,
786
794
  _CSP,
787
795
  { [_h]: ["DELETE", "/signing-profiles/{profileName}", 200] },
788
- () => CancelSigningProfileRequest,
796
+ () => CancelSigningProfileRequest$,
789
797
  () => __Unit,
790
798
  ];
791
- var DescribeSigningJob = [
799
+ var DescribeSigningJob$ = [
792
800
  9,
793
801
  n0,
794
802
  _DSJ,
795
803
  { [_h]: ["GET", "/signing-jobs/{jobId}", 200] },
796
- () => DescribeSigningJobRequest,
797
- () => DescribeSigningJobResponse,
804
+ () => DescribeSigningJobRequest$,
805
+ () => DescribeSigningJobResponse$,
798
806
  ];
799
- var GetRevocationStatus = [
807
+ var GetRevocationStatus$ = [
800
808
  9,
801
809
  n0,
802
810
  _GRS,
803
811
  { [_h]: ["GET", "/revocations", 200], [_en]: ["data-"] },
804
- () => GetRevocationStatusRequest,
805
- () => GetRevocationStatusResponse,
812
+ () => GetRevocationStatusRequest$,
813
+ () => GetRevocationStatusResponse$,
806
814
  ];
807
- var GetSigningPlatform = [
815
+ var GetSigningPlatform$ = [
808
816
  9,
809
817
  n0,
810
818
  _GSP,
811
819
  { [_h]: ["GET", "/signing-platforms/{platformId}", 200] },
812
- () => GetSigningPlatformRequest,
813
- () => GetSigningPlatformResponse,
820
+ () => GetSigningPlatformRequest$,
821
+ () => GetSigningPlatformResponse$,
814
822
  ];
815
- var GetSigningProfile = [
823
+ var GetSigningProfile$ = [
816
824
  9,
817
825
  n0,
818
826
  _GSPe,
819
827
  { [_h]: ["GET", "/signing-profiles/{profileName}", 200] },
820
- () => GetSigningProfileRequest,
821
- () => GetSigningProfileResponse,
828
+ () => GetSigningProfileRequest$,
829
+ () => GetSigningProfileResponse$,
822
830
  ];
823
- var ListProfilePermissions = [
831
+ var ListProfilePermissions$ = [
824
832
  9,
825
833
  n0,
826
834
  _LPP,
827
835
  { [_h]: ["GET", "/signing-profiles/{profileName}/permissions", 200] },
828
- () => ListProfilePermissionsRequest,
829
- () => ListProfilePermissionsResponse,
836
+ () => ListProfilePermissionsRequest$,
837
+ () => ListProfilePermissionsResponse$,
830
838
  ];
831
- var ListSigningJobs = [
839
+ var ListSigningJobs$ = [
832
840
  9,
833
841
  n0,
834
842
  _LSJ,
835
843
  { [_h]: ["GET", "/signing-jobs", 200] },
836
- () => ListSigningJobsRequest,
837
- () => ListSigningJobsResponse,
844
+ () => ListSigningJobsRequest$,
845
+ () => ListSigningJobsResponse$,
838
846
  ];
839
- var ListSigningPlatforms = [
847
+ var ListSigningPlatforms$ = [
840
848
  9,
841
849
  n0,
842
850
  _LSP,
843
851
  { [_h]: ["GET", "/signing-platforms", 200] },
844
- () => ListSigningPlatformsRequest,
845
- () => ListSigningPlatformsResponse,
852
+ () => ListSigningPlatformsRequest$,
853
+ () => ListSigningPlatformsResponse$,
846
854
  ];
847
- var ListSigningProfiles = [
855
+ var ListSigningProfiles$ = [
848
856
  9,
849
857
  n0,
850
858
  _LSPi,
851
859
  { [_h]: ["GET", "/signing-profiles", 200] },
852
- () => ListSigningProfilesRequest,
853
- () => ListSigningProfilesResponse,
860
+ () => ListSigningProfilesRequest$,
861
+ () => ListSigningProfilesResponse$,
854
862
  ];
855
- var ListTagsForResource = [
863
+ var ListTagsForResource$ = [
856
864
  9,
857
865
  n0,
858
866
  _LTFR,
859
867
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
860
- () => ListTagsForResourceRequest,
861
- () => ListTagsForResourceResponse,
868
+ () => ListTagsForResourceRequest$,
869
+ () => ListTagsForResourceResponse$,
862
870
  ];
863
- var PutSigningProfile = [
871
+ var PutSigningProfile$ = [
864
872
  9,
865
873
  n0,
866
874
  _PSP,
867
875
  { [_h]: ["PUT", "/signing-profiles/{profileName}", 200] },
868
- () => PutSigningProfileRequest,
869
- () => PutSigningProfileResponse,
876
+ () => PutSigningProfileRequest$,
877
+ () => PutSigningProfileResponse$,
870
878
  ];
871
- var RemoveProfilePermission = [
879
+ var RemoveProfilePermission$ = [
872
880
  9,
873
881
  n0,
874
882
  _RPP,
875
883
  { [_h]: ["DELETE", "/signing-profiles/{profileName}/permissions/{statementId}", 200] },
876
- () => RemoveProfilePermissionRequest,
877
- () => RemoveProfilePermissionResponse,
884
+ () => RemoveProfilePermissionRequest$,
885
+ () => RemoveProfilePermissionResponse$,
878
886
  ];
879
- var RevokeSignature = [
887
+ var RevokeSignature$ = [
880
888
  9,
881
889
  n0,
882
890
  _RS,
883
891
  { [_h]: ["PUT", "/signing-jobs/{jobId}/revoke", 200] },
884
- () => RevokeSignatureRequest,
892
+ () => RevokeSignatureRequest$,
885
893
  () => __Unit,
886
894
  ];
887
- var RevokeSigningProfile = [
895
+ var RevokeSigningProfile$ = [
888
896
  9,
889
897
  n0,
890
898
  _RSP,
891
899
  { [_h]: ["PUT", "/signing-profiles/{profileName}/revoke", 200] },
892
- () => RevokeSigningProfileRequest,
900
+ () => RevokeSigningProfileRequest$,
893
901
  () => __Unit,
894
902
  ];
895
- var SignPayload = [
903
+ var SignPayload$ = [
896
904
  9,
897
905
  n0,
898
906
  _SPigna,
899
907
  { [_h]: ["POST", "/signing-jobs/with-payload", 200] },
900
- () => SignPayloadRequest,
901
- () => SignPayloadResponse,
908
+ () => SignPayloadRequest$,
909
+ () => SignPayloadResponse$,
902
910
  ];
903
- var StartSigningJob = [
911
+ var StartSigningJob$ = [
904
912
  9,
905
913
  n0,
906
914
  _SSJ,
907
915
  { [_h]: ["POST", "/signing-jobs", 200] },
908
- () => StartSigningJobRequest,
909
- () => StartSigningJobResponse,
916
+ () => StartSigningJobRequest$,
917
+ () => StartSigningJobResponse$,
910
918
  ];
911
- var TagResource = [
919
+ var TagResource$ = [
912
920
  9,
913
921
  n0,
914
922
  _TR,
915
923
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
916
- () => TagResourceRequest,
917
- () => TagResourceResponse,
924
+ () => TagResourceRequest$,
925
+ () => TagResourceResponse$,
918
926
  ];
919
- var UntagResource = [
927
+ var UntagResource$ = [
920
928
  9,
921
929
  n0,
922
930
  _UR,
923
931
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
924
- () => UntagResourceRequest,
925
- () => UntagResourceResponse,
932
+ () => UntagResourceRequest$,
933
+ () => UntagResourceResponse$,
926
934
  ];
927
935
 
928
936
  class AddProfilePermissionCommand extends smithyClient.Command
@@ -933,7 +941,7 @@ class AddProfilePermissionCommand extends smithyClient.Command
933
941
  })
934
942
  .s("WallabyService", "AddProfilePermission", {})
935
943
  .n("SignerClient", "AddProfilePermissionCommand")
936
- .sc(AddProfilePermission)
944
+ .sc(AddProfilePermission$)
937
945
  .build() {
938
946
  }
939
947
 
@@ -945,7 +953,7 @@ class CancelSigningProfileCommand extends smithyClient.Command
945
953
  })
946
954
  .s("WallabyService", "CancelSigningProfile", {})
947
955
  .n("SignerClient", "CancelSigningProfileCommand")
948
- .sc(CancelSigningProfile)
956
+ .sc(CancelSigningProfile$)
949
957
  .build() {
950
958
  }
951
959
 
@@ -957,7 +965,7 @@ class DescribeSigningJobCommand extends smithyClient.Command
957
965
  })
958
966
  .s("WallabyService", "DescribeSigningJob", {})
959
967
  .n("SignerClient", "DescribeSigningJobCommand")
960
- .sc(DescribeSigningJob)
968
+ .sc(DescribeSigningJob$)
961
969
  .build() {
962
970
  }
963
971
 
@@ -969,7 +977,7 @@ class GetRevocationStatusCommand extends smithyClient.Command
969
977
  })
970
978
  .s("WallabyService", "GetRevocationStatus", {})
971
979
  .n("SignerClient", "GetRevocationStatusCommand")
972
- .sc(GetRevocationStatus)
980
+ .sc(GetRevocationStatus$)
973
981
  .build() {
974
982
  }
975
983
 
@@ -981,7 +989,7 @@ class GetSigningPlatformCommand extends smithyClient.Command
981
989
  })
982
990
  .s("WallabyService", "GetSigningPlatform", {})
983
991
  .n("SignerClient", "GetSigningPlatformCommand")
984
- .sc(GetSigningPlatform)
992
+ .sc(GetSigningPlatform$)
985
993
  .build() {
986
994
  }
987
995
 
@@ -993,7 +1001,7 @@ class GetSigningProfileCommand extends smithyClient.Command
993
1001
  })
994
1002
  .s("WallabyService", "GetSigningProfile", {})
995
1003
  .n("SignerClient", "GetSigningProfileCommand")
996
- .sc(GetSigningProfile)
1004
+ .sc(GetSigningProfile$)
997
1005
  .build() {
998
1006
  }
999
1007
 
@@ -1005,7 +1013,7 @@ class ListProfilePermissionsCommand extends smithyClient.Command
1005
1013
  })
1006
1014
  .s("WallabyService", "ListProfilePermissions", {})
1007
1015
  .n("SignerClient", "ListProfilePermissionsCommand")
1008
- .sc(ListProfilePermissions)
1016
+ .sc(ListProfilePermissions$)
1009
1017
  .build() {
1010
1018
  }
1011
1019
 
@@ -1017,7 +1025,7 @@ class ListSigningJobsCommand extends smithyClient.Command
1017
1025
  })
1018
1026
  .s("WallabyService", "ListSigningJobs", {})
1019
1027
  .n("SignerClient", "ListSigningJobsCommand")
1020
- .sc(ListSigningJobs)
1028
+ .sc(ListSigningJobs$)
1021
1029
  .build() {
1022
1030
  }
1023
1031
 
@@ -1029,7 +1037,7 @@ class ListSigningPlatformsCommand extends smithyClient.Command
1029
1037
  })
1030
1038
  .s("WallabyService", "ListSigningPlatforms", {})
1031
1039
  .n("SignerClient", "ListSigningPlatformsCommand")
1032
- .sc(ListSigningPlatforms)
1040
+ .sc(ListSigningPlatforms$)
1033
1041
  .build() {
1034
1042
  }
1035
1043
 
@@ -1041,7 +1049,7 @@ class ListSigningProfilesCommand extends smithyClient.Command
1041
1049
  })
1042
1050
  .s("WallabyService", "ListSigningProfiles", {})
1043
1051
  .n("SignerClient", "ListSigningProfilesCommand")
1044
- .sc(ListSigningProfiles)
1052
+ .sc(ListSigningProfiles$)
1045
1053
  .build() {
1046
1054
  }
1047
1055
 
@@ -1053,7 +1061,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1053
1061
  })
1054
1062
  .s("WallabyService", "ListTagsForResource", {})
1055
1063
  .n("SignerClient", "ListTagsForResourceCommand")
1056
- .sc(ListTagsForResource)
1064
+ .sc(ListTagsForResource$)
1057
1065
  .build() {
1058
1066
  }
1059
1067
 
@@ -1065,7 +1073,7 @@ class PutSigningProfileCommand extends smithyClient.Command
1065
1073
  })
1066
1074
  .s("WallabyService", "PutSigningProfile", {})
1067
1075
  .n("SignerClient", "PutSigningProfileCommand")
1068
- .sc(PutSigningProfile)
1076
+ .sc(PutSigningProfile$)
1069
1077
  .build() {
1070
1078
  }
1071
1079
 
@@ -1077,7 +1085,7 @@ class RemoveProfilePermissionCommand extends smithyClient.Command
1077
1085
  })
1078
1086
  .s("WallabyService", "RemoveProfilePermission", {})
1079
1087
  .n("SignerClient", "RemoveProfilePermissionCommand")
1080
- .sc(RemoveProfilePermission)
1088
+ .sc(RemoveProfilePermission$)
1081
1089
  .build() {
1082
1090
  }
1083
1091
 
@@ -1089,7 +1097,7 @@ class RevokeSignatureCommand extends smithyClient.Command
1089
1097
  })
1090
1098
  .s("WallabyService", "RevokeSignature", {})
1091
1099
  .n("SignerClient", "RevokeSignatureCommand")
1092
- .sc(RevokeSignature)
1100
+ .sc(RevokeSignature$)
1093
1101
  .build() {
1094
1102
  }
1095
1103
 
@@ -1101,7 +1109,7 @@ class RevokeSigningProfileCommand extends smithyClient.Command
1101
1109
  })
1102
1110
  .s("WallabyService", "RevokeSigningProfile", {})
1103
1111
  .n("SignerClient", "RevokeSigningProfileCommand")
1104
- .sc(RevokeSigningProfile)
1112
+ .sc(RevokeSigningProfile$)
1105
1113
  .build() {
1106
1114
  }
1107
1115
 
@@ -1113,7 +1121,7 @@ class SignPayloadCommand extends smithyClient.Command
1113
1121
  })
1114
1122
  .s("WallabyService", "SignPayload", {})
1115
1123
  .n("SignerClient", "SignPayloadCommand")
1116
- .sc(SignPayload)
1124
+ .sc(SignPayload$)
1117
1125
  .build() {
1118
1126
  }
1119
1127
 
@@ -1125,7 +1133,7 @@ class StartSigningJobCommand extends smithyClient.Command
1125
1133
  })
1126
1134
  .s("WallabyService", "StartSigningJob", {})
1127
1135
  .n("SignerClient", "StartSigningJobCommand")
1128
- .sc(StartSigningJob)
1136
+ .sc(StartSigningJob$)
1129
1137
  .build() {
1130
1138
  }
1131
1139
 
@@ -1137,7 +1145,7 @@ class TagResourceCommand extends smithyClient.Command
1137
1145
  })
1138
1146
  .s("WallabyService", "TagResource", {})
1139
1147
  .n("SignerClient", "TagResourceCommand")
1140
- .sc(TagResource)
1148
+ .sc(TagResource$)
1141
1149
  .build() {
1142
1150
  }
1143
1151
 
@@ -1149,7 +1157,7 @@ class UntagResourceCommand extends smithyClient.Command
1149
1157
  })
1150
1158
  .s("WallabyService", "UntagResource", {})
1151
1159
  .n("SignerClient", "UntagResourceCommand")
1152
- .sc(UntagResource)
1160
+ .sc(UntagResource$)
1153
1161
  .build() {
1154
1162
  }
1155
1163
 
@@ -1266,44 +1274,129 @@ Object.defineProperty(exports, "__Client", {
1266
1274
  enumerable: true,
1267
1275
  get: function () { return smithyClient.Client; }
1268
1276
  });
1269
- exports.AccessDeniedException = AccessDeniedException$1;
1277
+ exports.AccessDeniedException = AccessDeniedException;
1278
+ exports.AccessDeniedException$ = AccessDeniedException$;
1279
+ exports.AddProfilePermission$ = AddProfilePermission$;
1270
1280
  exports.AddProfilePermissionCommand = AddProfilePermissionCommand;
1271
- exports.BadRequestException = BadRequestException$1;
1281
+ exports.AddProfilePermissionRequest$ = AddProfilePermissionRequest$;
1282
+ exports.AddProfilePermissionResponse$ = AddProfilePermissionResponse$;
1283
+ exports.BadRequestException = BadRequestException;
1284
+ exports.BadRequestException$ = BadRequestException$;
1285
+ exports.CancelSigningProfile$ = CancelSigningProfile$;
1272
1286
  exports.CancelSigningProfileCommand = CancelSigningProfileCommand;
1287
+ exports.CancelSigningProfileRequest$ = CancelSigningProfileRequest$;
1273
1288
  exports.Category = Category;
1274
- exports.ConflictException = ConflictException$1;
1289
+ exports.ConflictException = ConflictException;
1290
+ exports.ConflictException$ = ConflictException$;
1291
+ exports.DescribeSigningJob$ = DescribeSigningJob$;
1275
1292
  exports.DescribeSigningJobCommand = DescribeSigningJobCommand;
1293
+ exports.DescribeSigningJobRequest$ = DescribeSigningJobRequest$;
1294
+ exports.DescribeSigningJobResponse$ = DescribeSigningJobResponse$;
1295
+ exports.Destination$ = Destination$;
1276
1296
  exports.EncryptionAlgorithm = EncryptionAlgorithm;
1297
+ exports.EncryptionAlgorithmOptions$ = EncryptionAlgorithmOptions$;
1298
+ exports.GetRevocationStatus$ = GetRevocationStatus$;
1277
1299
  exports.GetRevocationStatusCommand = GetRevocationStatusCommand;
1300
+ exports.GetRevocationStatusRequest$ = GetRevocationStatusRequest$;
1301
+ exports.GetRevocationStatusResponse$ = GetRevocationStatusResponse$;
1302
+ exports.GetSigningPlatform$ = GetSigningPlatform$;
1278
1303
  exports.GetSigningPlatformCommand = GetSigningPlatformCommand;
1304
+ exports.GetSigningPlatformRequest$ = GetSigningPlatformRequest$;
1305
+ exports.GetSigningPlatformResponse$ = GetSigningPlatformResponse$;
1306
+ exports.GetSigningProfile$ = GetSigningProfile$;
1279
1307
  exports.GetSigningProfileCommand = GetSigningProfileCommand;
1308
+ exports.GetSigningProfileRequest$ = GetSigningProfileRequest$;
1309
+ exports.GetSigningProfileResponse$ = GetSigningProfileResponse$;
1280
1310
  exports.HashAlgorithm = HashAlgorithm;
1311
+ exports.HashAlgorithmOptions$ = HashAlgorithmOptions$;
1281
1312
  exports.ImageFormat = ImageFormat;
1282
- exports.InternalServiceErrorException = InternalServiceErrorException$1;
1313
+ exports.InternalServiceErrorException = InternalServiceErrorException;
1314
+ exports.InternalServiceErrorException$ = InternalServiceErrorException$;
1315
+ exports.ListProfilePermissions$ = ListProfilePermissions$;
1283
1316
  exports.ListProfilePermissionsCommand = ListProfilePermissionsCommand;
1317
+ exports.ListProfilePermissionsRequest$ = ListProfilePermissionsRequest$;
1318
+ exports.ListProfilePermissionsResponse$ = ListProfilePermissionsResponse$;
1319
+ exports.ListSigningJobs$ = ListSigningJobs$;
1284
1320
  exports.ListSigningJobsCommand = ListSigningJobsCommand;
1321
+ exports.ListSigningJobsRequest$ = ListSigningJobsRequest$;
1322
+ exports.ListSigningJobsResponse$ = ListSigningJobsResponse$;
1323
+ exports.ListSigningPlatforms$ = ListSigningPlatforms$;
1285
1324
  exports.ListSigningPlatformsCommand = ListSigningPlatformsCommand;
1325
+ exports.ListSigningPlatformsRequest$ = ListSigningPlatformsRequest$;
1326
+ exports.ListSigningPlatformsResponse$ = ListSigningPlatformsResponse$;
1327
+ exports.ListSigningProfiles$ = ListSigningProfiles$;
1286
1328
  exports.ListSigningProfilesCommand = ListSigningProfilesCommand;
1329
+ exports.ListSigningProfilesRequest$ = ListSigningProfilesRequest$;
1330
+ exports.ListSigningProfilesResponse$ = ListSigningProfilesResponse$;
1331
+ exports.ListTagsForResource$ = ListTagsForResource$;
1287
1332
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1288
- exports.NotFoundException = NotFoundException$1;
1333
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1334
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1335
+ exports.NotFoundException = NotFoundException;
1336
+ exports.NotFoundException$ = NotFoundException$;
1337
+ exports.Permission$ = Permission$;
1338
+ exports.PutSigningProfile$ = PutSigningProfile$;
1289
1339
  exports.PutSigningProfileCommand = PutSigningProfileCommand;
1340
+ exports.PutSigningProfileRequest$ = PutSigningProfileRequest$;
1341
+ exports.PutSigningProfileResponse$ = PutSigningProfileResponse$;
1342
+ exports.RemoveProfilePermission$ = RemoveProfilePermission$;
1290
1343
  exports.RemoveProfilePermissionCommand = RemoveProfilePermissionCommand;
1291
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1344
+ exports.RemoveProfilePermissionRequest$ = RemoveProfilePermissionRequest$;
1345
+ exports.RemoveProfilePermissionResponse$ = RemoveProfilePermissionResponse$;
1346
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1347
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1348
+ exports.RevokeSignature$ = RevokeSignature$;
1292
1349
  exports.RevokeSignatureCommand = RevokeSignatureCommand;
1350
+ exports.RevokeSignatureRequest$ = RevokeSignatureRequest$;
1351
+ exports.RevokeSigningProfile$ = RevokeSigningProfile$;
1293
1352
  exports.RevokeSigningProfileCommand = RevokeSigningProfileCommand;
1294
- exports.ServiceLimitExceededException = ServiceLimitExceededException$1;
1353
+ exports.RevokeSigningProfileRequest$ = RevokeSigningProfileRequest$;
1354
+ exports.S3Destination$ = S3Destination$;
1355
+ exports.S3SignedObject$ = S3SignedObject$;
1356
+ exports.S3Source$ = S3Source$;
1357
+ exports.ServiceLimitExceededException = ServiceLimitExceededException;
1358
+ exports.ServiceLimitExceededException$ = ServiceLimitExceededException$;
1359
+ exports.SignPayload$ = SignPayload$;
1295
1360
  exports.SignPayloadCommand = SignPayloadCommand;
1361
+ exports.SignPayloadRequest$ = SignPayloadRequest$;
1362
+ exports.SignPayloadResponse$ = SignPayloadResponse$;
1363
+ exports.SignatureValidityPeriod$ = SignatureValidityPeriod$;
1364
+ exports.SignedObject$ = SignedObject$;
1296
1365
  exports.Signer = Signer;
1297
1366
  exports.SignerClient = SignerClient;
1298
- exports.SignerServiceException = SignerServiceException$1;
1367
+ exports.SignerServiceException = SignerServiceException;
1368
+ exports.SignerServiceException$ = SignerServiceException$;
1369
+ exports.SigningConfiguration$ = SigningConfiguration$;
1370
+ exports.SigningConfigurationOverrides$ = SigningConfigurationOverrides$;
1371
+ exports.SigningImageFormat$ = SigningImageFormat$;
1372
+ exports.SigningJob$ = SigningJob$;
1373
+ exports.SigningJobRevocationRecord$ = SigningJobRevocationRecord$;
1374
+ exports.SigningMaterial$ = SigningMaterial$;
1375
+ exports.SigningPlatform$ = SigningPlatform$;
1376
+ exports.SigningPlatformOverrides$ = SigningPlatformOverrides$;
1377
+ exports.SigningProfile$ = SigningProfile$;
1378
+ exports.SigningProfileRevocationRecord$ = SigningProfileRevocationRecord$;
1299
1379
  exports.SigningProfileStatus = SigningProfileStatus;
1300
1380
  exports.SigningStatus = SigningStatus;
1381
+ exports.Source$ = Source$;
1382
+ exports.StartSigningJob$ = StartSigningJob$;
1301
1383
  exports.StartSigningJobCommand = StartSigningJobCommand;
1384
+ exports.StartSigningJobRequest$ = StartSigningJobRequest$;
1385
+ exports.StartSigningJobResponse$ = StartSigningJobResponse$;
1386
+ exports.TagResource$ = TagResource$;
1302
1387
  exports.TagResourceCommand = TagResourceCommand;
1303
- exports.ThrottlingException = ThrottlingException$1;
1304
- exports.TooManyRequestsException = TooManyRequestsException$1;
1388
+ exports.TagResourceRequest$ = TagResourceRequest$;
1389
+ exports.TagResourceResponse$ = TagResourceResponse$;
1390
+ exports.ThrottlingException = ThrottlingException;
1391
+ exports.ThrottlingException$ = ThrottlingException$;
1392
+ exports.TooManyRequestsException = TooManyRequestsException;
1393
+ exports.TooManyRequestsException$ = TooManyRequestsException$;
1394
+ exports.UntagResource$ = UntagResource$;
1305
1395
  exports.UntagResourceCommand = UntagResourceCommand;
1306
- exports.ValidationException = ValidationException$1;
1396
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1397
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1398
+ exports.ValidationException = ValidationException;
1399
+ exports.ValidationException$ = ValidationException$;
1307
1400
  exports.ValidityType = ValidityType;
1308
1401
  exports.paginateListSigningJobs = paginateListSigningJobs;
1309
1402
  exports.paginateListSigningPlatforms = paginateListSigningPlatforms;