@aws-sdk/client-signer 3.927.0 → 3.929.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 (40) hide show
  1. package/dist-cjs/index.js +988 -980
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/SignerClient.js +2 -0
  4. package/dist-es/commands/AddProfilePermissionCommand.js +3 -9
  5. package/dist-es/commands/CancelSigningProfileCommand.js +3 -9
  6. package/dist-es/commands/DescribeSigningJobCommand.js +3 -9
  7. package/dist-es/commands/GetRevocationStatusCommand.js +3 -9
  8. package/dist-es/commands/GetSigningPlatformCommand.js +3 -9
  9. package/dist-es/commands/GetSigningProfileCommand.js +3 -9
  10. package/dist-es/commands/ListProfilePermissionsCommand.js +3 -9
  11. package/dist-es/commands/ListSigningJobsCommand.js +3 -9
  12. package/dist-es/commands/ListSigningPlatformsCommand.js +3 -9
  13. package/dist-es/commands/ListSigningProfilesCommand.js +3 -9
  14. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  15. package/dist-es/commands/PutSigningProfileCommand.js +3 -9
  16. package/dist-es/commands/RemoveProfilePermissionCommand.js +3 -9
  17. package/dist-es/commands/RevokeSignatureCommand.js +3 -9
  18. package/dist-es/commands/RevokeSigningProfileCommand.js +3 -9
  19. package/dist-es/commands/SignPayloadCommand.js +3 -9
  20. package/dist-es/commands/StartSigningJobCommand.js +3 -9
  21. package/dist-es/commands/TagResourceCommand.js +3 -9
  22. package/dist-es/commands/UntagResourceCommand.js +3 -9
  23. package/dist-es/runtimeConfig.shared.js +2 -0
  24. package/dist-es/schemas/schemas_0.js +943 -0
  25. package/dist-types/SignerClient.d.ts +10 -1
  26. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  27. package/dist-types/runtimeConfig.d.ts +1 -0
  28. package/dist-types/runtimeConfig.native.d.ts +1 -0
  29. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  30. package/dist-types/schemas/schemas_0.d.ts +101 -0
  31. package/dist-types/ts3.4/SignerClient.d.ts +4 -0
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +106 -0
  37. package/package.json +5 -6
  38. package/dist-es/protocols/Aws_restJson1.js +0 -834
  39. package/dist-types/protocols/Aws_restJson1.d.ts +0 -173
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -233
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
- var uuid = require('@smithy/uuid');
20
18
  var utilWaiter = require('@smithy/util-waiter');
21
19
 
22
20
  const resolveClientEndpointParameters = (options) => {
@@ -93,6 +91,7 @@ class SignerClient extends smithyClient.Client {
93
91
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
94
92
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
95
93
  this.config = _config_8;
94
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
96
95
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
97
96
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
98
97
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -112,14 +111,14 @@ class SignerClient extends smithyClient.Client {
112
111
  }
113
112
  }
114
113
 
115
- class SignerServiceException extends smithyClient.ServiceException {
114
+ let SignerServiceException$1 = class SignerServiceException extends smithyClient.ServiceException {
116
115
  constructor(options) {
117
116
  super(options);
118
117
  Object.setPrototypeOf(this, SignerServiceException.prototype);
119
118
  }
120
- }
119
+ };
121
120
 
122
- class AccessDeniedException extends SignerServiceException {
121
+ let AccessDeniedException$1 = class AccessDeniedException extends SignerServiceException$1 {
123
122
  name = "AccessDeniedException";
124
123
  $fault = "client";
125
124
  code;
@@ -132,8 +131,8 @@ class AccessDeniedException extends SignerServiceException {
132
131
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
133
132
  this.code = opts.code;
134
133
  }
135
- }
136
- class ConflictException extends SignerServiceException {
134
+ };
135
+ let ConflictException$1 = class ConflictException extends SignerServiceException$1 {
137
136
  name = "ConflictException";
138
137
  $fault = "client";
139
138
  code;
@@ -146,8 +145,8 @@ class ConflictException extends SignerServiceException {
146
145
  Object.setPrototypeOf(this, ConflictException.prototype);
147
146
  this.code = opts.code;
148
147
  }
149
- }
150
- class InternalServiceErrorException extends SignerServiceException {
148
+ };
149
+ let InternalServiceErrorException$1 = class InternalServiceErrorException extends SignerServiceException$1 {
151
150
  name = "InternalServiceErrorException";
152
151
  $fault = "server";
153
152
  code;
@@ -160,8 +159,8 @@ class InternalServiceErrorException extends SignerServiceException {
160
159
  Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
161
160
  this.code = opts.code;
162
161
  }
163
- }
164
- class ResourceNotFoundException extends SignerServiceException {
162
+ };
163
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends SignerServiceException$1 {
165
164
  name = "ResourceNotFoundException";
166
165
  $fault = "client";
167
166
  code;
@@ -174,8 +173,8 @@ class ResourceNotFoundException extends SignerServiceException {
174
173
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
175
174
  this.code = opts.code;
176
175
  }
177
- }
178
- class ServiceLimitExceededException extends SignerServiceException {
176
+ };
177
+ let ServiceLimitExceededException$1 = class ServiceLimitExceededException extends SignerServiceException$1 {
179
178
  name = "ServiceLimitExceededException";
180
179
  $fault = "client";
181
180
  code;
@@ -188,8 +187,8 @@ class ServiceLimitExceededException extends SignerServiceException {
188
187
  Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
189
188
  this.code = opts.code;
190
189
  }
191
- }
192
- class TooManyRequestsException extends SignerServiceException {
190
+ };
191
+ let TooManyRequestsException$1 = class TooManyRequestsException extends SignerServiceException$1 {
193
192
  name = "TooManyRequestsException";
194
193
  $fault = "client";
195
194
  code;
@@ -202,8 +201,8 @@ class TooManyRequestsException extends SignerServiceException {
202
201
  Object.setPrototypeOf(this, TooManyRequestsException.prototype);
203
202
  this.code = opts.code;
204
203
  }
205
- }
206
- class ValidationException extends SignerServiceException {
204
+ };
205
+ let ValidationException$1 = class ValidationException extends SignerServiceException$1 {
207
206
  name = "ValidationException";
208
207
  $fault = "client";
209
208
  code;
@@ -216,8 +215,8 @@ class ValidationException extends SignerServiceException {
216
215
  Object.setPrototypeOf(this, ValidationException.prototype);
217
216
  this.code = opts.code;
218
217
  }
219
- }
220
- class BadRequestException extends SignerServiceException {
218
+ };
219
+ let BadRequestException$1 = class BadRequestException extends SignerServiceException$1 {
221
220
  name = "BadRequestException";
222
221
  $fault = "client";
223
222
  code;
@@ -230,7 +229,7 @@ class BadRequestException extends SignerServiceException {
230
229
  Object.setPrototypeOf(this, BadRequestException.prototype);
231
230
  this.code = opts.code;
232
231
  }
233
- }
232
+ };
234
233
  const Category = {
235
234
  AWSIoT: "AWSIoT",
236
235
  };
@@ -262,7 +261,7 @@ const SigningProfileStatus = {
262
261
  Canceled: "Canceled",
263
262
  Revoked: "Revoked",
264
263
  };
265
- class NotFoundException extends SignerServiceException {
264
+ let NotFoundException$1 = class NotFoundException extends SignerServiceException$1 {
266
265
  name = "NotFoundException";
267
266
  $fault = "client";
268
267
  code;
@@ -275,8 +274,8 @@ class NotFoundException extends SignerServiceException {
275
274
  Object.setPrototypeOf(this, NotFoundException.prototype);
276
275
  this.code = opts.code;
277
276
  }
278
- }
279
- class ThrottlingException extends SignerServiceException {
277
+ };
278
+ let ThrottlingException$1 = class ThrottlingException extends SignerServiceException$1 {
280
279
  name = "ThrottlingException";
281
280
  $fault = "client";
282
281
  code;
@@ -289,849 +288,948 @@ class ThrottlingException extends SignerServiceException {
289
288
  Object.setPrototypeOf(this, ThrottlingException.prototype);
290
289
  this.code = opts.code;
291
290
  }
292
- }
293
-
294
- const se_AddProfilePermissionCommand = async (input, context) => {
295
- const b = core.requestBuilder(input, context);
296
- const headers = {
297
- "content-type": "application/json",
298
- };
299
- b.bp("/signing-profiles/{profileName}/permissions");
300
- b.p("profileName", () => input.profileName, "{profileName}", false);
301
- let body;
302
- body = JSON.stringify(smithyClient.take(input, {
303
- action: [],
304
- principal: [],
305
- profileVersion: [],
306
- revisionId: [],
307
- statementId: [],
308
- }));
309
- b.m("POST").h(headers).b(body);
310
- return b.build();
311
- };
312
- const se_CancelSigningProfileCommand = async (input, context) => {
313
- const b = core.requestBuilder(input, context);
314
- const headers = {};
315
- b.bp("/signing-profiles/{profileName}");
316
- b.p("profileName", () => input.profileName, "{profileName}", false);
317
- let body;
318
- b.m("DELETE").h(headers).b(body);
319
- return b.build();
320
- };
321
- const se_DescribeSigningJobCommand = async (input, context) => {
322
- const b = core.requestBuilder(input, context);
323
- const headers = {};
324
- b.bp("/signing-jobs/{jobId}");
325
- b.p("jobId", () => input.jobId, "{jobId}", false);
326
- let body;
327
- b.m("GET").h(headers).b(body);
328
- return b.build();
329
- };
330
- const se_GetRevocationStatusCommand = async (input, context) => {
331
- const b = core.requestBuilder(input, context);
332
- const headers = {};
333
- b.bp("/revocations");
334
- const query = smithyClient.map({
335
- [_sT]: [
336
- smithyClient.expectNonNull(input.signatureTimestamp, `signatureTimestamp`) != null,
337
- () => smithyClient.serializeDateTime(input[_sT]).toString(),
338
- ],
339
- [_pI]: [, smithyClient.expectNonNull(input[_pI], `platformId`)],
340
- [_pVA]: [, smithyClient.expectNonNull(input[_pVA], `profileVersionArn`)],
341
- [_jA]: [, smithyClient.expectNonNull(input[_jA], `jobArn`)],
342
- [_cH]: [smithyClient.expectNonNull(input.certificateHashes, `certificateHashes`) != null, () => input[_cH] || []],
343
- });
344
- let body;
345
- let { hostname: resolvedHostname } = await context.endpoint();
346
- if (context.disableHostPrefix !== true) {
347
- resolvedHostname = "verification." + resolvedHostname;
348
- if (!protocolHttp.isValidHostname(resolvedHostname)) {
349
- throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
350
- }
351
- }
352
- b.hn(resolvedHostname);
353
- b.m("GET").h(headers).q(query).b(body);
354
- return b.build();
355
- };
356
- const se_GetSigningPlatformCommand = async (input, context) => {
357
- const b = core.requestBuilder(input, context);
358
- const headers = {};
359
- b.bp("/signing-platforms/{platformId}");
360
- b.p("platformId", () => input.platformId, "{platformId}", false);
361
- let body;
362
- b.m("GET").h(headers).b(body);
363
- return b.build();
364
- };
365
- const se_GetSigningProfileCommand = async (input, context) => {
366
- const b = core.requestBuilder(input, context);
367
- const headers = {};
368
- b.bp("/signing-profiles/{profileName}");
369
- b.p("profileName", () => input.profileName, "{profileName}", false);
370
- const query = smithyClient.map({
371
- [_pO]: [, input[_pO]],
372
- });
373
- let body;
374
- b.m("GET").h(headers).q(query).b(body);
375
- return b.build();
376
- };
377
- const se_ListProfilePermissionsCommand = async (input, context) => {
378
- const b = core.requestBuilder(input, context);
379
- const headers = {};
380
- b.bp("/signing-profiles/{profileName}/permissions");
381
- b.p("profileName", () => input.profileName, "{profileName}", false);
382
- const query = smithyClient.map({
383
- [_nT]: [, input[_nT]],
384
- });
385
- let body;
386
- b.m("GET").h(headers).q(query).b(body);
387
- return b.build();
388
- };
389
- const se_ListSigningJobsCommand = async (input, context) => {
390
- const b = core.requestBuilder(input, context);
391
- const headers = {};
392
- b.bp("/signing-jobs");
393
- const query = smithyClient.map({
394
- [_s]: [, input[_s]],
395
- [_pI]: [, input[_pI]],
396
- [_rB]: [, input[_rB]],
397
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
398
- [_nT]: [, input[_nT]],
399
- [_iR]: [() => input.isRevoked !== void 0, () => input[_iR].toString()],
400
- [_sEB]: [() => input.signatureExpiresBefore !== void 0, () => smithyClient.serializeDateTime(input[_sEB]).toString()],
401
- [_sEA]: [() => input.signatureExpiresAfter !== void 0, () => smithyClient.serializeDateTime(input[_sEA]).toString()],
402
- [_jI]: [, input[_jI]],
403
- });
404
- let body;
405
- b.m("GET").h(headers).q(query).b(body);
406
- return b.build();
407
- };
408
- const se_ListSigningPlatformsCommand = async (input, context) => {
409
- const b = core.requestBuilder(input, context);
410
- const headers = {};
411
- b.bp("/signing-platforms");
412
- const query = smithyClient.map({
413
- [_c]: [, input[_c]],
414
- [_p]: [, input[_p]],
415
- [_t]: [, input[_t]],
416
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
417
- [_nT]: [, input[_nT]],
418
- });
419
- let body;
420
- b.m("GET").h(headers).q(query).b(body);
421
- return b.build();
422
- };
423
- const se_ListSigningProfilesCommand = async (input, context) => {
424
- const b = core.requestBuilder(input, context);
425
- const headers = {};
426
- b.bp("/signing-profiles");
427
- const query = smithyClient.map({
428
- [_iC]: [() => input.includeCanceled !== void 0, () => input[_iC].toString()],
429
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
430
- [_nT]: [, input[_nT]],
431
- [_pI]: [, input[_pI]],
432
- [_st]: [() => input.statuses !== void 0, () => input[_st] || []],
433
- });
434
- let body;
435
- b.m("GET").h(headers).q(query).b(body);
436
- return b.build();
437
- };
438
- const se_ListTagsForResourceCommand = async (input, context) => {
439
- const b = core.requestBuilder(input, context);
440
- const headers = {};
441
- b.bp("/tags/{resourceArn}");
442
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
443
- let body;
444
- b.m("GET").h(headers).b(body);
445
- return b.build();
446
- };
447
- const se_PutSigningProfileCommand = async (input, context) => {
448
- const b = core.requestBuilder(input, context);
449
- const headers = {
450
- "content-type": "application/json",
451
- };
452
- b.bp("/signing-profiles/{profileName}");
453
- b.p("profileName", () => input.profileName, "{profileName}", false);
454
- let body;
455
- body = JSON.stringify(smithyClient.take(input, {
456
- overrides: (_) => smithyClient._json(_),
457
- platformId: [],
458
- signatureValidityPeriod: (_) => smithyClient._json(_),
459
- signingMaterial: (_) => smithyClient._json(_),
460
- signingParameters: (_) => smithyClient._json(_),
461
- tags: (_) => smithyClient._json(_),
462
- }));
463
- b.m("PUT").h(headers).b(body);
464
- return b.build();
465
- };
466
- const se_RemoveProfilePermissionCommand = async (input, context) => {
467
- const b = core.requestBuilder(input, context);
468
- const headers = {};
469
- b.bp("/signing-profiles/{profileName}/permissions/{statementId}");
470
- b.p("profileName", () => input.profileName, "{profileName}", false);
471
- b.p("statementId", () => input.statementId, "{statementId}", false);
472
- const query = smithyClient.map({
473
- [_rI]: [, smithyClient.expectNonNull(input[_rI], `revisionId`)],
474
- });
475
- let body;
476
- b.m("DELETE").h(headers).q(query).b(body);
477
- return b.build();
478
- };
479
- const se_RevokeSignatureCommand = async (input, context) => {
480
- const b = core.requestBuilder(input, context);
481
- const headers = {
482
- "content-type": "application/json",
483
- };
484
- b.bp("/signing-jobs/{jobId}/revoke");
485
- b.p("jobId", () => input.jobId, "{jobId}", false);
486
- let body;
487
- body = JSON.stringify(smithyClient.take(input, {
488
- jobOwner: [],
489
- reason: [],
490
- }));
491
- b.m("PUT").h(headers).b(body);
492
- return b.build();
493
- };
494
- const se_RevokeSigningProfileCommand = async (input, context) => {
495
- const b = core.requestBuilder(input, context);
496
- const headers = {
497
- "content-type": "application/json",
498
- };
499
- b.bp("/signing-profiles/{profileName}/revoke");
500
- b.p("profileName", () => input.profileName, "{profileName}", false);
501
- let body;
502
- body = JSON.stringify(smithyClient.take(input, {
503
- effectiveTime: (_) => _.getTime() / 1_000,
504
- profileVersion: [],
505
- reason: [],
506
- }));
507
- b.m("PUT").h(headers).b(body);
508
- return b.build();
509
- };
510
- const se_SignPayloadCommand = async (input, context) => {
511
- const b = core.requestBuilder(input, context);
512
- const headers = {
513
- "content-type": "application/json",
514
- };
515
- b.bp("/signing-jobs/with-payload");
516
- let body;
517
- body = JSON.stringify(smithyClient.take(input, {
518
- payload: (_) => context.base64Encoder(_),
519
- payloadFormat: [],
520
- profileName: [],
521
- profileOwner: [],
522
- }));
523
- b.m("POST").h(headers).b(body);
524
- return b.build();
525
- };
526
- const se_StartSigningJobCommand = async (input, context) => {
527
- const b = core.requestBuilder(input, context);
528
- const headers = {
529
- "content-type": "application/json",
530
- };
531
- b.bp("/signing-jobs");
532
- let body;
533
- body = JSON.stringify(smithyClient.take(input, {
534
- clientRequestToken: [true, (_) => _ ?? uuid.v4()],
535
- destination: (_) => smithyClient._json(_),
536
- profileName: [],
537
- profileOwner: [],
538
- source: (_) => smithyClient._json(_),
539
- }));
540
- b.m("POST").h(headers).b(body);
541
- return b.build();
542
- };
543
- const se_TagResourceCommand = async (input, context) => {
544
- const b = core.requestBuilder(input, context);
545
- const headers = {
546
- "content-type": "application/json",
547
- };
548
- b.bp("/tags/{resourceArn}");
549
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
550
- let body;
551
- body = JSON.stringify(smithyClient.take(input, {
552
- tags: (_) => smithyClient._json(_),
553
- }));
554
- b.m("POST").h(headers).b(body);
555
- return b.build();
556
- };
557
- const se_UntagResourceCommand = async (input, context) => {
558
- const b = core.requestBuilder(input, context);
559
- const headers = {};
560
- b.bp("/tags/{resourceArn}");
561
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
562
- const query = smithyClient.map({
563
- [_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
564
- });
565
- let body;
566
- b.m("DELETE").h(headers).q(query).b(body);
567
- return b.build();
568
- };
569
- const de_AddProfilePermissionCommand = async (output, context) => {
570
- if (output.statusCode !== 200 && output.statusCode >= 300) {
571
- return de_CommandError(output, context);
572
- }
573
- const contents = smithyClient.map({
574
- $metadata: deserializeMetadata(output),
575
- });
576
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
577
- const doc = smithyClient.take(data, {
578
- revisionId: smithyClient.expectString,
579
- });
580
- Object.assign(contents, doc);
581
- return contents;
582
- };
583
- const de_CancelSigningProfileCommand = async (output, context) => {
584
- if (output.statusCode !== 200 && output.statusCode >= 300) {
585
- return de_CommandError(output, context);
586
- }
587
- const contents = smithyClient.map({
588
- $metadata: deserializeMetadata(output),
589
- });
590
- await smithyClient.collectBody(output.body, context);
591
- return contents;
592
- };
593
- const de_DescribeSigningJobCommand = async (output, context) => {
594
- if (output.statusCode !== 200 && output.statusCode >= 300) {
595
- return de_CommandError(output, context);
596
- }
597
- const contents = smithyClient.map({
598
- $metadata: deserializeMetadata(output),
599
- });
600
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
601
- const doc = smithyClient.take(data, {
602
- completedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
603
- createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
604
- jobId: smithyClient.expectString,
605
- jobInvoker: smithyClient.expectString,
606
- jobOwner: smithyClient.expectString,
607
- overrides: smithyClient._json,
608
- platformDisplayName: smithyClient.expectString,
609
- platformId: smithyClient.expectString,
610
- profileName: smithyClient.expectString,
611
- profileVersion: smithyClient.expectString,
612
- requestedBy: smithyClient.expectString,
613
- revocationRecord: (_) => de_SigningJobRevocationRecord(_),
614
- signatureExpiresAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
615
- signedObject: smithyClient._json,
616
- signingMaterial: smithyClient._json,
617
- signingParameters: smithyClient._json,
618
- source: smithyClient._json,
619
- status: smithyClient.expectString,
620
- statusReason: smithyClient.expectString,
621
- });
622
- Object.assign(contents, doc);
623
- return contents;
624
- };
625
- const de_GetRevocationStatusCommand = async (output, context) => {
626
- if (output.statusCode !== 200 && output.statusCode >= 300) {
627
- return de_CommandError(output, context);
628
- }
629
- const contents = smithyClient.map({
630
- $metadata: deserializeMetadata(output),
631
- });
632
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
633
- const doc = smithyClient.take(data, {
634
- revokedEntities: smithyClient._json,
635
- });
636
- Object.assign(contents, doc);
637
- return contents;
638
- };
639
- const de_GetSigningPlatformCommand = async (output, context) => {
640
- if (output.statusCode !== 200 && output.statusCode >= 300) {
641
- return de_CommandError(output, context);
642
- }
643
- const contents = smithyClient.map({
644
- $metadata: deserializeMetadata(output),
645
- });
646
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
647
- const doc = smithyClient.take(data, {
648
- category: smithyClient.expectString,
649
- displayName: smithyClient.expectString,
650
- maxSizeInMB: smithyClient.expectInt32,
651
- partner: smithyClient.expectString,
652
- platformId: smithyClient.expectString,
653
- revocationSupported: smithyClient.expectBoolean,
654
- signingConfiguration: smithyClient._json,
655
- signingImageFormat: smithyClient._json,
656
- target: smithyClient.expectString,
657
- });
658
- Object.assign(contents, doc);
659
- return contents;
660
- };
661
- const de_GetSigningProfileCommand = async (output, context) => {
662
- if (output.statusCode !== 200 && output.statusCode >= 300) {
663
- return de_CommandError(output, context);
664
- }
665
- const contents = smithyClient.map({
666
- $metadata: deserializeMetadata(output),
667
- });
668
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
669
- const doc = smithyClient.take(data, {
670
- arn: smithyClient.expectString,
671
- overrides: smithyClient._json,
672
- platformDisplayName: smithyClient.expectString,
673
- platformId: smithyClient.expectString,
674
- profileName: smithyClient.expectString,
675
- profileVersion: smithyClient.expectString,
676
- profileVersionArn: smithyClient.expectString,
677
- revocationRecord: (_) => de_SigningProfileRevocationRecord(_),
678
- signatureValidityPeriod: smithyClient._json,
679
- signingMaterial: smithyClient._json,
680
- signingParameters: smithyClient._json,
681
- status: smithyClient.expectString,
682
- statusReason: smithyClient.expectString,
683
- tags: smithyClient._json,
684
- });
685
- Object.assign(contents, doc);
686
- return contents;
687
- };
688
- const de_ListProfilePermissionsCommand = async (output, context) => {
689
- if (output.statusCode !== 200 && output.statusCode >= 300) {
690
- return de_CommandError(output, context);
691
- }
692
- const contents = smithyClient.map({
693
- $metadata: deserializeMetadata(output),
694
- });
695
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
696
- const doc = smithyClient.take(data, {
697
- nextToken: smithyClient.expectString,
698
- permissions: smithyClient._json,
699
- policySizeBytes: smithyClient.expectInt32,
700
- revisionId: smithyClient.expectString,
701
- });
702
- Object.assign(contents, doc);
703
- return contents;
704
- };
705
- const de_ListSigningJobsCommand = async (output, context) => {
706
- if (output.statusCode !== 200 && output.statusCode >= 300) {
707
- return de_CommandError(output, context);
708
- }
709
- const contents = smithyClient.map({
710
- $metadata: deserializeMetadata(output),
711
- });
712
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
713
- const doc = smithyClient.take(data, {
714
- jobs: (_) => de_SigningJobs(_),
715
- nextToken: smithyClient.expectString,
716
- });
717
- Object.assign(contents, doc);
718
- return contents;
719
- };
720
- const de_ListSigningPlatformsCommand = async (output, context) => {
721
- if (output.statusCode !== 200 && output.statusCode >= 300) {
722
- return de_CommandError(output, context);
723
- }
724
- const contents = smithyClient.map({
725
- $metadata: deserializeMetadata(output),
726
- });
727
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
728
- const doc = smithyClient.take(data, {
729
- nextToken: smithyClient.expectString,
730
- platforms: smithyClient._json,
731
- });
732
- Object.assign(contents, doc);
733
- return contents;
734
- };
735
- const de_ListSigningProfilesCommand = async (output, context) => {
736
- if (output.statusCode !== 200 && output.statusCode >= 300) {
737
- return de_CommandError(output, context);
738
- }
739
- const contents = smithyClient.map({
740
- $metadata: deserializeMetadata(output),
741
- });
742
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
743
- const doc = smithyClient.take(data, {
744
- nextToken: smithyClient.expectString,
745
- profiles: smithyClient._json,
746
- });
747
- Object.assign(contents, doc);
748
- return contents;
749
- };
750
- const de_ListTagsForResourceCommand = async (output, context) => {
751
- if (output.statusCode !== 200 && output.statusCode >= 300) {
752
- return de_CommandError(output, context);
753
- }
754
- const contents = smithyClient.map({
755
- $metadata: deserializeMetadata(output),
756
- });
757
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
758
- const doc = smithyClient.take(data, {
759
- tags: smithyClient._json,
760
- });
761
- Object.assign(contents, doc);
762
- return contents;
763
- };
764
- const de_PutSigningProfileCommand = async (output, context) => {
765
- if (output.statusCode !== 200 && output.statusCode >= 300) {
766
- return de_CommandError(output, context);
767
- }
768
- const contents = smithyClient.map({
769
- $metadata: deserializeMetadata(output),
770
- });
771
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
772
- const doc = smithyClient.take(data, {
773
- arn: smithyClient.expectString,
774
- profileVersion: smithyClient.expectString,
775
- profileVersionArn: smithyClient.expectString,
776
- });
777
- Object.assign(contents, doc);
778
- return contents;
779
- };
780
- const de_RemoveProfilePermissionCommand = async (output, context) => {
781
- if (output.statusCode !== 200 && output.statusCode >= 300) {
782
- return de_CommandError(output, context);
783
- }
784
- const contents = smithyClient.map({
785
- $metadata: deserializeMetadata(output),
786
- });
787
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
788
- const doc = smithyClient.take(data, {
789
- revisionId: smithyClient.expectString,
790
- });
791
- Object.assign(contents, doc);
792
- return contents;
793
- };
794
- const de_RevokeSignatureCommand = async (output, context) => {
795
- if (output.statusCode !== 200 && output.statusCode >= 300) {
796
- return de_CommandError(output, context);
797
- }
798
- const contents = smithyClient.map({
799
- $metadata: deserializeMetadata(output),
800
- });
801
- await smithyClient.collectBody(output.body, context);
802
- return contents;
803
- };
804
- const de_RevokeSigningProfileCommand = async (output, context) => {
805
- if (output.statusCode !== 200 && output.statusCode >= 300) {
806
- return de_CommandError(output, context);
807
- }
808
- const contents = smithyClient.map({
809
- $metadata: deserializeMetadata(output),
810
- });
811
- await smithyClient.collectBody(output.body, context);
812
- return contents;
813
- };
814
- const de_SignPayloadCommand = async (output, context) => {
815
- if (output.statusCode !== 200 && output.statusCode >= 300) {
816
- return de_CommandError(output, context);
817
- }
818
- const contents = smithyClient.map({
819
- $metadata: deserializeMetadata(output),
820
- });
821
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
822
- const doc = smithyClient.take(data, {
823
- jobId: smithyClient.expectString,
824
- jobOwner: smithyClient.expectString,
825
- metadata: smithyClient._json,
826
- signature: context.base64Decoder,
827
- });
828
- Object.assign(contents, doc);
829
- return contents;
830
- };
831
- const de_StartSigningJobCommand = async (output, context) => {
832
- if (output.statusCode !== 200 && output.statusCode >= 300) {
833
- return de_CommandError(output, context);
834
- }
835
- const contents = smithyClient.map({
836
- $metadata: deserializeMetadata(output),
837
- });
838
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
839
- const doc = smithyClient.take(data, {
840
- jobId: smithyClient.expectString,
841
- jobOwner: smithyClient.expectString,
842
- });
843
- Object.assign(contents, doc);
844
- return contents;
845
- };
846
- const de_TagResourceCommand = async (output, context) => {
847
- if (output.statusCode !== 200 && output.statusCode >= 300) {
848
- return de_CommandError(output, context);
849
- }
850
- const contents = smithyClient.map({
851
- $metadata: deserializeMetadata(output),
852
- });
853
- await smithyClient.collectBody(output.body, context);
854
- return contents;
855
- };
856
- const de_UntagResourceCommand = async (output, context) => {
857
- if (output.statusCode !== 200 && output.statusCode >= 300) {
858
- return de_CommandError(output, context);
859
- }
860
- const contents = smithyClient.map({
861
- $metadata: deserializeMetadata(output),
862
- });
863
- await smithyClient.collectBody(output.body, context);
864
- return contents;
865
- };
866
- const de_CommandError = async (output, context) => {
867
- const parsedOutput = {
868
- ...output,
869
- body: await core$1.parseJsonErrorBody(output.body, context),
870
- };
871
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
872
- switch (errorCode) {
873
- case "AccessDeniedException":
874
- case "com.amazonaws.signer#AccessDeniedException":
875
- throw await de_AccessDeniedExceptionRes(parsedOutput);
876
- case "ConflictException":
877
- case "com.amazonaws.signer#ConflictException":
878
- throw await de_ConflictExceptionRes(parsedOutput);
879
- case "InternalServiceErrorException":
880
- case "com.amazonaws.signer#InternalServiceErrorException":
881
- throw await de_InternalServiceErrorExceptionRes(parsedOutput);
882
- case "ResourceNotFoundException":
883
- case "com.amazonaws.signer#ResourceNotFoundException":
884
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
885
- case "ServiceLimitExceededException":
886
- case "com.amazonaws.signer#ServiceLimitExceededException":
887
- throw await de_ServiceLimitExceededExceptionRes(parsedOutput);
888
- case "TooManyRequestsException":
889
- case "com.amazonaws.signer#TooManyRequestsException":
890
- throw await de_TooManyRequestsExceptionRes(parsedOutput);
891
- case "ValidationException":
892
- case "com.amazonaws.signer#ValidationException":
893
- throw await de_ValidationExceptionRes(parsedOutput);
894
- case "BadRequestException":
895
- case "com.amazonaws.signer#BadRequestException":
896
- throw await de_BadRequestExceptionRes(parsedOutput);
897
- case "NotFoundException":
898
- case "com.amazonaws.signer#NotFoundException":
899
- throw await de_NotFoundExceptionRes(parsedOutput);
900
- case "ThrottlingException":
901
- case "com.amazonaws.signer#ThrottlingException":
902
- throw await de_ThrottlingExceptionRes(parsedOutput);
903
- default:
904
- const parsedBody = parsedOutput.body;
905
- return throwDefaultError({
906
- output,
907
- parsedBody,
908
- errorCode,
909
- });
910
- }
911
- };
912
- const throwDefaultError = smithyClient.withBaseException(SignerServiceException);
913
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
914
- const contents = smithyClient.map({});
915
- const data = parsedOutput.body;
916
- const doc = smithyClient.take(data, {
917
- code: smithyClient.expectString,
918
- message: smithyClient.expectString,
919
- });
920
- Object.assign(contents, doc);
921
- const exception = new AccessDeniedException({
922
- $metadata: deserializeMetadata(parsedOutput),
923
- ...contents,
924
- });
925
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
926
- };
927
- const de_BadRequestExceptionRes = async (parsedOutput, context) => {
928
- const contents = smithyClient.map({});
929
- const data = parsedOutput.body;
930
- const doc = smithyClient.take(data, {
931
- code: smithyClient.expectString,
932
- message: smithyClient.expectString,
933
- });
934
- Object.assign(contents, doc);
935
- const exception = new BadRequestException({
936
- $metadata: deserializeMetadata(parsedOutput),
937
- ...contents,
938
- });
939
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
940
- };
941
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
942
- const contents = smithyClient.map({});
943
- const data = parsedOutput.body;
944
- const doc = smithyClient.take(data, {
945
- code: smithyClient.expectString,
946
- message: smithyClient.expectString,
947
- });
948
- Object.assign(contents, doc);
949
- const exception = new ConflictException({
950
- $metadata: deserializeMetadata(parsedOutput),
951
- ...contents,
952
- });
953
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
954
- };
955
- const de_InternalServiceErrorExceptionRes = async (parsedOutput, context) => {
956
- const contents = smithyClient.map({});
957
- const data = parsedOutput.body;
958
- const doc = smithyClient.take(data, {
959
- code: smithyClient.expectString,
960
- message: smithyClient.expectString,
961
- });
962
- Object.assign(contents, doc);
963
- const exception = new InternalServiceErrorException({
964
- $metadata: deserializeMetadata(parsedOutput),
965
- ...contents,
966
- });
967
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
968
- };
969
- const de_NotFoundExceptionRes = async (parsedOutput, context) => {
970
- const contents = smithyClient.map({});
971
- const data = parsedOutput.body;
972
- const doc = smithyClient.take(data, {
973
- code: smithyClient.expectString,
974
- message: smithyClient.expectString,
975
- });
976
- Object.assign(contents, doc);
977
- const exception = new NotFoundException({
978
- $metadata: deserializeMetadata(parsedOutput),
979
- ...contents,
980
- });
981
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
982
- };
983
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
984
- const contents = smithyClient.map({});
985
- const data = parsedOutput.body;
986
- const doc = smithyClient.take(data, {
987
- code: smithyClient.expectString,
988
- message: smithyClient.expectString,
989
- });
990
- Object.assign(contents, doc);
991
- const exception = new ResourceNotFoundException({
992
- $metadata: deserializeMetadata(parsedOutput),
993
- ...contents,
994
- });
995
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
996
291
  };
997
- const de_ServiceLimitExceededExceptionRes = async (parsedOutput, context) => {
998
- const contents = smithyClient.map({});
999
- const data = parsedOutput.body;
1000
- const doc = smithyClient.take(data, {
1001
- code: smithyClient.expectString,
1002
- message: smithyClient.expectString,
1003
- });
1004
- Object.assign(contents, doc);
1005
- const exception = new ServiceLimitExceededException({
1006
- $metadata: deserializeMetadata(parsedOutput),
1007
- ...contents,
1008
- });
1009
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1010
- };
1011
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
1012
- const contents = smithyClient.map({});
1013
- const data = parsedOutput.body;
1014
- const doc = smithyClient.take(data, {
1015
- code: smithyClient.expectString,
1016
- message: smithyClient.expectString,
1017
- });
1018
- Object.assign(contents, doc);
1019
- const exception = new ThrottlingException({
1020
- $metadata: deserializeMetadata(parsedOutput),
1021
- ...contents,
1022
- });
1023
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1024
- };
1025
- const de_TooManyRequestsExceptionRes = async (parsedOutput, context) => {
1026
- const contents = smithyClient.map({});
1027
- const data = parsedOutput.body;
1028
- const doc = smithyClient.take(data, {
1029
- code: smithyClient.expectString,
1030
- message: smithyClient.expectString,
1031
- });
1032
- Object.assign(contents, doc);
1033
- const exception = new TooManyRequestsException({
1034
- $metadata: deserializeMetadata(parsedOutput),
1035
- ...contents,
1036
- });
1037
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1038
- };
1039
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1040
- const contents = smithyClient.map({});
1041
- const data = parsedOutput.body;
1042
- const doc = smithyClient.take(data, {
1043
- code: smithyClient.expectString,
1044
- message: smithyClient.expectString,
1045
- });
1046
- Object.assign(contents, doc);
1047
- const exception = new ValidationException({
1048
- $metadata: deserializeMetadata(parsedOutput),
1049
- ...contents,
1050
- });
1051
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1052
- };
1053
- const de_SigningJob = (output, context) => {
1054
- return smithyClient.take(output, {
1055
- createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1056
- isRevoked: smithyClient.expectBoolean,
1057
- jobId: smithyClient.expectString,
1058
- jobInvoker: smithyClient.expectString,
1059
- jobOwner: smithyClient.expectString,
1060
- platformDisplayName: smithyClient.expectString,
1061
- platformId: smithyClient.expectString,
1062
- profileName: smithyClient.expectString,
1063
- profileVersion: smithyClient.expectString,
1064
- signatureExpiresAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1065
- signedObject: smithyClient._json,
1066
- signingMaterial: smithyClient._json,
1067
- source: smithyClient._json,
1068
- status: smithyClient.expectString,
1069
- });
1070
- };
1071
- const de_SigningJobRevocationRecord = (output, context) => {
1072
- return smithyClient.take(output, {
1073
- reason: smithyClient.expectString,
1074
- revokedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1075
- revokedBy: smithyClient.expectString,
1076
- });
1077
- };
1078
- const de_SigningJobs = (output, context) => {
1079
- const retVal = (output || [])
1080
- .filter((e) => e != null)
1081
- .map((entry) => {
1082
- return de_SigningJob(entry);
1083
- });
1084
- return retVal;
1085
- };
1086
- const de_SigningProfileRevocationRecord = (output, context) => {
1087
- return smithyClient.take(output, {
1088
- revocationEffectiveFrom: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1089
- revokedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1090
- revokedBy: smithyClient.expectString,
1091
- });
1092
- };
1093
- const deserializeMetadata = (output) => ({
1094
- httpStatusCode: output.statusCode,
1095
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1096
- extendedRequestId: output.headers["x-amz-id-2"],
1097
- cfId: output.headers["x-amz-cf-id"],
1098
- });
1099
- const _c = "category";
292
+
293
+ const _ADE = "AccessDeniedException";
294
+ const _APP = "AddProfilePermission";
295
+ const _APPR = "AddProfilePermissionRequest";
296
+ const _APPRd = "AddProfilePermissionResponse";
297
+ const _BRE = "BadRequestException";
298
+ const _CE = "ConflictException";
299
+ const _CSP = "CancelSigningProfile";
300
+ const _CSPR = "CancelSigningProfileRequest";
301
+ const _D = "Destination";
302
+ const _DSJ = "DescribeSigningJob";
303
+ const _DSJR = "DescribeSigningJobRequest";
304
+ const _DSJRe = "DescribeSigningJobResponse";
305
+ const _EAO = "EncryptionAlgorithmOptions";
306
+ const _GRS = "GetRevocationStatus";
307
+ const _GRSR = "GetRevocationStatusRequest";
308
+ const _GRSRe = "GetRevocationStatusResponse";
309
+ const _GSP = "GetSigningPlatform";
310
+ const _GSPR = "GetSigningPlatformRequest";
311
+ const _GSPRe = "GetSigningPlatformResponse";
312
+ const _GSPRet = "GetSigningProfileRequest";
313
+ const _GSPReti = "GetSigningProfileResponse";
314
+ const _GSPe = "GetSigningProfile";
315
+ const _HAO = "HashAlgorithmOptions";
316
+ const _ISEE = "InternalServiceErrorException";
317
+ const _LPP = "ListProfilePermissions";
318
+ const _LPPR = "ListProfilePermissionsRequest";
319
+ const _LPPRi = "ListProfilePermissionsResponse";
320
+ const _LSJ = "ListSigningJobs";
321
+ const _LSJR = "ListSigningJobsRequest";
322
+ const _LSJRi = "ListSigningJobsResponse";
323
+ const _LSP = "ListSigningPlatforms";
324
+ const _LSPR = "ListSigningPlatformsRequest";
325
+ const _LSPRi = "ListSigningPlatformsResponse";
326
+ const _LSPRis = "ListSigningProfilesRequest";
327
+ const _LSPRist = "ListSigningProfilesResponse";
328
+ const _LSPi = "ListSigningProfiles";
329
+ const _LTFR = "ListTagsForResource";
330
+ const _LTFRR = "ListTagsForResourceRequest";
331
+ const _LTFRRi = "ListTagsForResourceResponse";
332
+ const _NFE = "NotFoundException";
333
+ const _P = "Permission";
334
+ const _PSP = "PutSigningProfile";
335
+ const _PSPR = "PutSigningProfileRequest";
336
+ const _PSPRu = "PutSigningProfileResponse";
337
+ const _Pe = "Permissions";
338
+ const _RNFE = "ResourceNotFoundException";
339
+ const _RPP = "RemoveProfilePermission";
340
+ const _RPPR = "RemoveProfilePermissionRequest";
341
+ const _RPPRe = "RemoveProfilePermissionResponse";
342
+ const _RS = "RevokeSignature";
343
+ const _RSP = "RevokeSigningProfile";
344
+ const _RSPR = "RevokeSigningProfileRequest";
345
+ const _RSR = "RevokeSignatureRequest";
346
+ const _S = "Source";
347
+ const _SC = "SigningConfiguration";
348
+ const _SCO = "SigningConfigurationOverrides";
349
+ const _SD = "S3Destination";
350
+ const _SIF = "SigningImageFormat";
351
+ const _SJ = "SigningJob";
352
+ const _SJRR = "SigningJobRevocationRecord";
353
+ const _SJi = "SigningJobs";
354
+ const _SLEE = "ServiceLimitExceededException";
355
+ const _SM = "SigningMaterial";
356
+ const _SO = "SignedObject";
357
+ const _SP = "SigningPlatform";
358
+ const _SPO = "SigningPlatformOverrides";
359
+ const _SPR = "SignPayloadRequest";
360
+ const _SPRR = "SigningProfileRevocationRecord";
361
+ const _SPRi = "SignPayloadResponse";
362
+ const _SPi = "SigningProfile";
363
+ const _SPig = "SigningPlatforms";
364
+ const _SPign = "SigningProfiles";
365
+ const _SPigna = "SignPayload";
366
+ const _SS = "S3Source";
367
+ const _SSJ = "StartSigningJob";
368
+ const _SSJR = "StartSigningJobRequest";
369
+ const _SSJRt = "StartSigningJobResponse";
370
+ const _SSO = "S3SignedObject";
371
+ const _SVP = "SignatureValidityPeriod";
372
+ const _TE = "ThrottlingException";
373
+ const _TMRE = "TooManyRequestsException";
374
+ const _TR = "TagResource";
375
+ const _TRR = "TagResourceRequest";
376
+ const _TRRa = "TagResourceResponse";
377
+ const _UR = "UntagResource";
378
+ const _URR = "UntagResourceRequest";
379
+ const _URRn = "UntagResourceResponse";
380
+ const _VE = "ValidationException";
381
+ const _a = "action";
382
+ const _aV = "allowedValues";
383
+ const _ar = "arn";
384
+ const _bN = "bucketName";
385
+ const _c = "client";
386
+ const _cA = "createdAt";
387
+ const _cAe = "certificateArn";
388
+ const _cAo = "completedAt";
1100
389
  const _cH = "certificateHashes";
390
+ const _cRT = "clientRequestToken";
391
+ const _ca = "category";
392
+ const _co = "code";
393
+ const _d = "destination";
394
+ const _dF = "defaultFormat";
395
+ const _dN = "displayName";
396
+ const _dV = "defaultValue";
397
+ const _e = "error";
398
+ const _eA = "encryptionAlgorithm";
399
+ const _eAO = "encryptionAlgorithmOptions";
400
+ const _eT = "effectiveTime";
401
+ const _en = "endpoint";
402
+ const _h = "http";
403
+ const _hA = "hashAlgorithm";
404
+ const _hAO = "hashAlgorithmOptions";
405
+ const _hE = "httpError";
406
+ const _hQ = "httpQuery";
1101
407
  const _iC = "includeCanceled";
1102
408
  const _iR = "isRevoked";
409
+ const _j = "jobs";
1103
410
  const _jA = "jobArn";
1104
- const _jI = "jobInvoker";
411
+ const _jI = "jobId";
412
+ const _jIo = "jobInvoker";
413
+ const _jO = "jobOwner";
414
+ const _k = "key";
415
+ const _m = "message";
1105
416
  const _mR = "maxResults";
417
+ const _mSIMB = "maxSizeInMB";
418
+ const _me = "metadata";
1106
419
  const _nT = "nextToken";
1107
- const _p = "partner";
420
+ const _o = "overrides";
421
+ const _p = "principal";
422
+ const _pDN = "platformDisplayName";
423
+ const _pF = "payloadFormat";
1108
424
  const _pI = "platformId";
425
+ const _pN = "profileName";
1109
426
  const _pO = "profileOwner";
427
+ const _pSB = "policySizeBytes";
428
+ const _pV = "profileVersion";
1110
429
  const _pVA = "profileVersionArn";
430
+ const _pa = "partner";
431
+ const _pay = "payload";
432
+ const _pe = "permissions";
433
+ const _pl = "platforms";
434
+ const _pr = "profiles";
435
+ const _pre = "prefix";
436
+ const _r = "reason";
437
+ const _rA = "resourceArn";
438
+ const _rAe = "revokedAt";
1111
439
  const _rB = "requestedBy";
440
+ const _rBe = "revokedBy";
441
+ const _rE = "revokedEntities";
442
+ const _rEF = "revocationEffectiveFrom";
1112
443
  const _rI = "revisionId";
1113
- const _s = "status";
1114
- const _sEA = "signatureExpiresAfter";
444
+ const _rR = "revocationRecord";
445
+ const _rS = "revocationSupported";
446
+ const _s = "source";
447
+ const _sC = "signingConfiguration";
448
+ const _sEA = "signatureExpiresAt";
449
+ const _sEAi = "signatureExpiresAfter";
1115
450
  const _sEB = "signatureExpiresBefore";
451
+ const _sF = "supportedFormats";
452
+ const _sI = "statementId";
453
+ const _sIF = "signingImageFormat";
454
+ const _sM = "signingMaterial";
455
+ const _sO = "signedObject";
456
+ const _sP = "signingParameters";
457
+ const _sR = "statusReason";
1116
458
  const _sT = "signatureTimestamp";
1117
- const _st = "statuses";
459
+ const _sVP = "signatureValidityPeriod";
460
+ const _s_ = "s3";
461
+ const _se = "server";
462
+ const _si = "signature";
463
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.signer";
464
+ const _st = "status";
465
+ const _sta = "statuses";
1118
466
  const _t = "target";
1119
467
  const _tK = "tagKeys";
468
+ const _ta = "tags";
469
+ const _ty = "type";
470
+ const _v = "version";
471
+ const _va = "value";
472
+ const n0 = "com.amazonaws.signer";
473
+ var AccessDeniedException = [
474
+ -3,
475
+ n0,
476
+ _ADE,
477
+ {
478
+ [_e]: _c,
479
+ [_hE]: 403,
480
+ },
481
+ [_m, _co],
482
+ [0, 0],
483
+ ];
484
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
485
+ var AddProfilePermissionRequest = [
486
+ 3,
487
+ n0,
488
+ _APPR,
489
+ 0,
490
+ [_pN, _pV, _a, _p, _rI, _sI],
491
+ [[0, 1], 0, 0, 0, 0, 0],
492
+ ];
493
+ var AddProfilePermissionResponse = [3, n0, _APPRd, 0, [_rI], [0]];
494
+ var BadRequestException = [
495
+ -3,
496
+ n0,
497
+ _BRE,
498
+ {
499
+ [_e]: _c,
500
+ [_hE]: 400,
501
+ },
502
+ [_m, _co],
503
+ [0, 0],
504
+ ];
505
+ schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
506
+ var CancelSigningProfileRequest = [3, n0, _CSPR, 0, [_pN], [[0, 1]]];
507
+ var ConflictException = [
508
+ -3,
509
+ n0,
510
+ _CE,
511
+ {
512
+ [_e]: _c,
513
+ [_hE]: 409,
514
+ },
515
+ [_m, _co],
516
+ [0, 0],
517
+ ];
518
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
519
+ var DescribeSigningJobRequest = [3, n0, _DSJR, 0, [_jI], [[0, 1]]];
520
+ var DescribeSigningJobResponse = [
521
+ 3,
522
+ n0,
523
+ _DSJRe,
524
+ 0,
525
+ [_jI, _s, _sM, _pI, _pDN, _pN, _pV, _o, _sP, _cA, _cAo, _sEA, _rB, _st, _sR, _rR, _sO, _jO, _jIo],
526
+ [
527
+ 0,
528
+ () => Source,
529
+ () => SigningMaterial,
530
+ 0,
531
+ 0,
532
+ 0,
533
+ 0,
534
+ () => SigningPlatformOverrides,
535
+ 128 | 0,
536
+ 4,
537
+ 4,
538
+ 4,
539
+ 0,
540
+ 0,
541
+ 0,
542
+ () => SigningJobRevocationRecord,
543
+ () => SignedObject,
544
+ 0,
545
+ 0,
546
+ ],
547
+ ];
548
+ var Destination = [3, n0, _D, 0, [_s_], [() => S3Destination]];
549
+ var EncryptionAlgorithmOptions = [3, n0, _EAO, 0, [_aV, _dV], [64 | 0, 0]];
550
+ var GetRevocationStatusRequest = [
551
+ 3,
552
+ n0,
553
+ _GRSR,
554
+ 0,
555
+ [_sT, _pI, _pVA, _jA, _cH],
556
+ [
557
+ [
558
+ 4,
559
+ {
560
+ [_hQ]: _sT,
561
+ },
562
+ ],
563
+ [
564
+ 0,
565
+ {
566
+ [_hQ]: _pI,
567
+ },
568
+ ],
569
+ [
570
+ 0,
571
+ {
572
+ [_hQ]: _pVA,
573
+ },
574
+ ],
575
+ [
576
+ 0,
577
+ {
578
+ [_hQ]: _jA,
579
+ },
580
+ ],
581
+ [
582
+ 64 | 0,
583
+ {
584
+ [_hQ]: _cH,
585
+ },
586
+ ],
587
+ ],
588
+ ];
589
+ var GetRevocationStatusResponse = [3, n0, _GRSRe, 0, [_rE], [64 | 0]];
590
+ var GetSigningPlatformRequest = [3, n0, _GSPR, 0, [_pI], [[0, 1]]];
591
+ var GetSigningPlatformResponse = [
592
+ 3,
593
+ n0,
594
+ _GSPRe,
595
+ 0,
596
+ [_pI, _dN, _pa, _t, _ca, _sC, _sIF, _mSIMB, _rS],
597
+ [0, 0, 0, 0, 0, () => SigningConfiguration, () => SigningImageFormat, 1, 2],
598
+ ];
599
+ var GetSigningProfileRequest = [
600
+ 3,
601
+ n0,
602
+ _GSPRet,
603
+ 0,
604
+ [_pN, _pO],
605
+ [
606
+ [0, 1],
607
+ [
608
+ 0,
609
+ {
610
+ [_hQ]: _pO,
611
+ },
612
+ ],
613
+ ],
614
+ ];
615
+ var GetSigningProfileResponse = [
616
+ 3,
617
+ n0,
618
+ _GSPReti,
619
+ 0,
620
+ [_pN, _pV, _pVA, _rR, _sM, _pI, _pDN, _sVP, _o, _sP, _st, _sR, _ar, _ta],
621
+ [
622
+ 0,
623
+ 0,
624
+ 0,
625
+ () => SigningProfileRevocationRecord,
626
+ () => SigningMaterial,
627
+ 0,
628
+ 0,
629
+ () => SignatureValidityPeriod,
630
+ () => SigningPlatformOverrides,
631
+ 128 | 0,
632
+ 0,
633
+ 0,
634
+ 0,
635
+ 128 | 0,
636
+ ],
637
+ ];
638
+ var HashAlgorithmOptions = [3, n0, _HAO, 0, [_aV, _dV], [64 | 0, 0]];
639
+ var InternalServiceErrorException = [
640
+ -3,
641
+ n0,
642
+ _ISEE,
643
+ {
644
+ [_e]: _se,
645
+ [_hE]: 500,
646
+ },
647
+ [_m, _co],
648
+ [0, 0],
649
+ ];
650
+ schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException, InternalServiceErrorException$1);
651
+ var ListProfilePermissionsRequest = [
652
+ 3,
653
+ n0,
654
+ _LPPR,
655
+ 0,
656
+ [_pN, _nT],
657
+ [
658
+ [0, 1],
659
+ [
660
+ 0,
661
+ {
662
+ [_hQ]: _nT,
663
+ },
664
+ ],
665
+ ],
666
+ ];
667
+ var ListProfilePermissionsResponse = [
668
+ 3,
669
+ n0,
670
+ _LPPRi,
671
+ 0,
672
+ [_rI, _pSB, _pe, _nT],
673
+ [0, 1, () => Permissions, 0],
674
+ ];
675
+ var ListSigningJobsRequest = [
676
+ 3,
677
+ n0,
678
+ _LSJR,
679
+ 0,
680
+ [_st, _pI, _rB, _mR, _nT, _iR, _sEB, _sEAi, _jIo],
681
+ [
682
+ [
683
+ 0,
684
+ {
685
+ [_hQ]: _st,
686
+ },
687
+ ],
688
+ [
689
+ 0,
690
+ {
691
+ [_hQ]: _pI,
692
+ },
693
+ ],
694
+ [
695
+ 0,
696
+ {
697
+ [_hQ]: _rB,
698
+ },
699
+ ],
700
+ [
701
+ 1,
702
+ {
703
+ [_hQ]: _mR,
704
+ },
705
+ ],
706
+ [
707
+ 0,
708
+ {
709
+ [_hQ]: _nT,
710
+ },
711
+ ],
712
+ [
713
+ 2,
714
+ {
715
+ [_hQ]: _iR,
716
+ },
717
+ ],
718
+ [
719
+ 4,
720
+ {
721
+ [_hQ]: _sEB,
722
+ },
723
+ ],
724
+ [
725
+ 4,
726
+ {
727
+ [_hQ]: _sEAi,
728
+ },
729
+ ],
730
+ [
731
+ 0,
732
+ {
733
+ [_hQ]: _jIo,
734
+ },
735
+ ],
736
+ ],
737
+ ];
738
+ var ListSigningJobsResponse = [3, n0, _LSJRi, 0, [_j, _nT], [() => SigningJobs, 0]];
739
+ var ListSigningPlatformsRequest = [
740
+ 3,
741
+ n0,
742
+ _LSPR,
743
+ 0,
744
+ [_ca, _pa, _t, _mR, _nT],
745
+ [
746
+ [
747
+ 0,
748
+ {
749
+ [_hQ]: _ca,
750
+ },
751
+ ],
752
+ [
753
+ 0,
754
+ {
755
+ [_hQ]: _pa,
756
+ },
757
+ ],
758
+ [
759
+ 0,
760
+ {
761
+ [_hQ]: _t,
762
+ },
763
+ ],
764
+ [
765
+ 1,
766
+ {
767
+ [_hQ]: _mR,
768
+ },
769
+ ],
770
+ [
771
+ 0,
772
+ {
773
+ [_hQ]: _nT,
774
+ },
775
+ ],
776
+ ],
777
+ ];
778
+ var ListSigningPlatformsResponse = [
779
+ 3,
780
+ n0,
781
+ _LSPRi,
782
+ 0,
783
+ [_pl, _nT],
784
+ [() => SigningPlatforms, 0],
785
+ ];
786
+ var ListSigningProfilesRequest = [
787
+ 3,
788
+ n0,
789
+ _LSPRis,
790
+ 0,
791
+ [_iC, _mR, _nT, _pI, _sta],
792
+ [
793
+ [
794
+ 2,
795
+ {
796
+ [_hQ]: _iC,
797
+ },
798
+ ],
799
+ [
800
+ 1,
801
+ {
802
+ [_hQ]: _mR,
803
+ },
804
+ ],
805
+ [
806
+ 0,
807
+ {
808
+ [_hQ]: _nT,
809
+ },
810
+ ],
811
+ [
812
+ 0,
813
+ {
814
+ [_hQ]: _pI,
815
+ },
816
+ ],
817
+ [
818
+ 64 | 0,
819
+ {
820
+ [_hQ]: _sta,
821
+ },
822
+ ],
823
+ ],
824
+ ];
825
+ var ListSigningProfilesResponse = [
826
+ 3,
827
+ n0,
828
+ _LSPRist,
829
+ 0,
830
+ [_pr, _nT],
831
+ [() => SigningProfiles, 0],
832
+ ];
833
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
834
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
835
+ var NotFoundException = [
836
+ -3,
837
+ n0,
838
+ _NFE,
839
+ {
840
+ [_e]: _c,
841
+ [_hE]: 404,
842
+ },
843
+ [_m, _co],
844
+ [0, 0],
845
+ ];
846
+ schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
847
+ var Permission = [3, n0, _P, 0, [_a, _p, _sI, _pV], [0, 0, 0, 0]];
848
+ var PutSigningProfileRequest = [
849
+ 3,
850
+ n0,
851
+ _PSPR,
852
+ 0,
853
+ [_pN, _sM, _sVP, _pI, _o, _sP, _ta],
854
+ [[0, 1], () => SigningMaterial, () => SignatureValidityPeriod, 0, () => SigningPlatformOverrides, 128 | 0, 128 | 0],
855
+ ];
856
+ var PutSigningProfileResponse = [3, n0, _PSPRu, 0, [_ar, _pV, _pVA], [0, 0, 0]];
857
+ var RemoveProfilePermissionRequest = [
858
+ 3,
859
+ n0,
860
+ _RPPR,
861
+ 0,
862
+ [_pN, _rI, _sI],
863
+ [
864
+ [0, 1],
865
+ [
866
+ 0,
867
+ {
868
+ [_hQ]: _rI,
869
+ },
870
+ ],
871
+ [0, 1],
872
+ ],
873
+ ];
874
+ var RemoveProfilePermissionResponse = [3, n0, _RPPRe, 0, [_rI], [0]];
875
+ var ResourceNotFoundException = [
876
+ -3,
877
+ n0,
878
+ _RNFE,
879
+ {
880
+ [_e]: _c,
881
+ [_hE]: 404,
882
+ },
883
+ [_m, _co],
884
+ [0, 0],
885
+ ];
886
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
887
+ var RevokeSignatureRequest = [3, n0, _RSR, 0, [_jI, _jO, _r], [[0, 1], 0, 0]];
888
+ var RevokeSigningProfileRequest = [
889
+ 3,
890
+ n0,
891
+ _RSPR,
892
+ 0,
893
+ [_pN, _pV, _r, _eT],
894
+ [[0, 1], 0, 0, 4],
895
+ ];
896
+ var S3Destination = [3, n0, _SD, 0, [_bN, _pre], [0, 0]];
897
+ var S3SignedObject = [3, n0, _SSO, 0, [_bN, _k], [0, 0]];
898
+ var S3Source = [3, n0, _SS, 0, [_bN, _k, _v], [0, 0, 0]];
899
+ var ServiceLimitExceededException = [
900
+ -3,
901
+ n0,
902
+ _SLEE,
903
+ {
904
+ [_e]: _c,
905
+ [_hE]: 402,
906
+ },
907
+ [_m, _co],
908
+ [0, 0],
909
+ ];
910
+ schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException, ServiceLimitExceededException$1);
911
+ var SignatureValidityPeriod = [3, n0, _SVP, 0, [_va, _ty], [1, 0]];
912
+ var SignedObject = [3, n0, _SO, 0, [_s_], [() => S3SignedObject]];
913
+ var SigningConfiguration = [
914
+ 3,
915
+ n0,
916
+ _SC,
917
+ 0,
918
+ [_eAO, _hAO],
919
+ [() => EncryptionAlgorithmOptions, () => HashAlgorithmOptions],
920
+ ];
921
+ var SigningConfigurationOverrides = [3, n0, _SCO, 0, [_eA, _hA], [0, 0]];
922
+ var SigningImageFormat = [3, n0, _SIF, 0, [_sF, _dF], [64 | 0, 0]];
923
+ var SigningJob = [
924
+ 3,
925
+ n0,
926
+ _SJ,
927
+ 0,
928
+ [_jI, _s, _sO, _sM, _cA, _st, _iR, _pN, _pV, _pI, _pDN, _sEA, _jO, _jIo],
929
+ [0, () => Source, () => SignedObject, () => SigningMaterial, 4, 0, 2, 0, 0, 0, 0, 4, 0, 0],
930
+ ];
931
+ var SigningJobRevocationRecord = [3, n0, _SJRR, 0, [_r, _rAe, _rBe], [0, 4, 0]];
932
+ var SigningMaterial = [3, n0, _SM, 0, [_cAe], [0]];
933
+ var SigningPlatform = [
934
+ 3,
935
+ n0,
936
+ _SP,
937
+ 0,
938
+ [_pI, _dN, _pa, _t, _ca, _sC, _sIF, _mSIMB, _rS],
939
+ [0, 0, 0, 0, 0, () => SigningConfiguration, () => SigningImageFormat, 1, 2],
940
+ ];
941
+ var SigningPlatformOverrides = [
942
+ 3,
943
+ n0,
944
+ _SPO,
945
+ 0,
946
+ [_sC, _sIF],
947
+ [() => SigningConfigurationOverrides, 0],
948
+ ];
949
+ var SigningProfile = [
950
+ 3,
951
+ n0,
952
+ _SPi,
953
+ 0,
954
+ [_pN, _pV, _pVA, _sM, _sVP, _pI, _pDN, _sP, _st, _ar, _ta],
955
+ [0, 0, 0, () => SigningMaterial, () => SignatureValidityPeriod, 0, 0, 128 | 0, 0, 0, 128 | 0],
956
+ ];
957
+ var SigningProfileRevocationRecord = [3, n0, _SPRR, 0, [_rEF, _rAe, _rBe], [4, 4, 0]];
958
+ var SignPayloadRequest = [3, n0, _SPR, 0, [_pN, _pO, _pay, _pF], [0, 0, 21, 0]];
959
+ var SignPayloadResponse = [3, n0, _SPRi, 0, [_jI, _jO, _me, _si], [0, 0, 128 | 0, 21]];
960
+ var Source = [3, n0, _S, 0, [_s_], [() => S3Source]];
961
+ var StartSigningJobRequest = [
962
+ 3,
963
+ n0,
964
+ _SSJR,
965
+ 0,
966
+ [_s, _d, _pN, _cRT, _pO],
967
+ [() => Source, () => Destination, 0, [0, 4], 0],
968
+ ];
969
+ var StartSigningJobResponse = [3, n0, _SSJRt, 0, [_jI, _jO], [0, 0]];
970
+ var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
971
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
972
+ var ThrottlingException = [
973
+ -3,
974
+ n0,
975
+ _TE,
976
+ {
977
+ [_e]: _c,
978
+ [_hE]: 429,
979
+ },
980
+ [_m, _co],
981
+ [0, 0],
982
+ ];
983
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
984
+ var TooManyRequestsException = [
985
+ -3,
986
+ n0,
987
+ _TMRE,
988
+ {
989
+ [_e]: _c,
990
+ [_hE]: 429,
991
+ },
992
+ [_m, _co],
993
+ [0, 0],
994
+ ];
995
+ schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
996
+ var UntagResourceRequest = [
997
+ 3,
998
+ n0,
999
+ _URR,
1000
+ 0,
1001
+ [_rA, _tK],
1002
+ [
1003
+ [0, 1],
1004
+ [
1005
+ 64 | 0,
1006
+ {
1007
+ [_hQ]: _tK,
1008
+ },
1009
+ ],
1010
+ ],
1011
+ ];
1012
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1013
+ var ValidationException = [
1014
+ -3,
1015
+ n0,
1016
+ _VE,
1017
+ {
1018
+ [_e]: _c,
1019
+ [_hE]: 400,
1020
+ },
1021
+ [_m, _co],
1022
+ [0, 0],
1023
+ ];
1024
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1025
+ var __Unit = "unit";
1026
+ var SignerServiceException = [-3, _sm, "SignerServiceException", 0, [], []];
1027
+ schema.TypeRegistry.for(_sm).registerError(SignerServiceException, SignerServiceException$1);
1028
+ var Permissions = [1, n0, _Pe, 0, () => Permission];
1029
+ var SigningJobs = [1, n0, _SJi, 0, () => SigningJob];
1030
+ var SigningPlatforms = [1, n0, _SPig, 0, () => SigningPlatform];
1031
+ var SigningProfiles = [1, n0, _SPign, 0, () => SigningProfile];
1032
+ var AddProfilePermission = [
1033
+ 9,
1034
+ n0,
1035
+ _APP,
1036
+ {
1037
+ [_h]: ["POST", "/signing-profiles/{profileName}/permissions", 200],
1038
+ },
1039
+ () => AddProfilePermissionRequest,
1040
+ () => AddProfilePermissionResponse,
1041
+ ];
1042
+ var CancelSigningProfile = [
1043
+ 9,
1044
+ n0,
1045
+ _CSP,
1046
+ {
1047
+ [_h]: ["DELETE", "/signing-profiles/{profileName}", 200],
1048
+ },
1049
+ () => CancelSigningProfileRequest,
1050
+ () => __Unit,
1051
+ ];
1052
+ var DescribeSigningJob = [
1053
+ 9,
1054
+ n0,
1055
+ _DSJ,
1056
+ {
1057
+ [_h]: ["GET", "/signing-jobs/{jobId}", 200],
1058
+ },
1059
+ () => DescribeSigningJobRequest,
1060
+ () => DescribeSigningJobResponse,
1061
+ ];
1062
+ var GetRevocationStatus = [
1063
+ 9,
1064
+ n0,
1065
+ _GRS,
1066
+ {
1067
+ [_h]: ["GET", "/revocations", 200],
1068
+ [_en]: ["verification."],
1069
+ },
1070
+ () => GetRevocationStatusRequest,
1071
+ () => GetRevocationStatusResponse,
1072
+ ];
1073
+ var GetSigningPlatform = [
1074
+ 9,
1075
+ n0,
1076
+ _GSP,
1077
+ {
1078
+ [_h]: ["GET", "/signing-platforms/{platformId}", 200],
1079
+ },
1080
+ () => GetSigningPlatformRequest,
1081
+ () => GetSigningPlatformResponse,
1082
+ ];
1083
+ var GetSigningProfile = [
1084
+ 9,
1085
+ n0,
1086
+ _GSPe,
1087
+ {
1088
+ [_h]: ["GET", "/signing-profiles/{profileName}", 200],
1089
+ },
1090
+ () => GetSigningProfileRequest,
1091
+ () => GetSigningProfileResponse,
1092
+ ];
1093
+ var ListProfilePermissions = [
1094
+ 9,
1095
+ n0,
1096
+ _LPP,
1097
+ {
1098
+ [_h]: ["GET", "/signing-profiles/{profileName}/permissions", 200],
1099
+ },
1100
+ () => ListProfilePermissionsRequest,
1101
+ () => ListProfilePermissionsResponse,
1102
+ ];
1103
+ var ListSigningJobs = [
1104
+ 9,
1105
+ n0,
1106
+ _LSJ,
1107
+ {
1108
+ [_h]: ["GET", "/signing-jobs", 200],
1109
+ },
1110
+ () => ListSigningJobsRequest,
1111
+ () => ListSigningJobsResponse,
1112
+ ];
1113
+ var ListSigningPlatforms = [
1114
+ 9,
1115
+ n0,
1116
+ _LSP,
1117
+ {
1118
+ [_h]: ["GET", "/signing-platforms", 200],
1119
+ },
1120
+ () => ListSigningPlatformsRequest,
1121
+ () => ListSigningPlatformsResponse,
1122
+ ];
1123
+ var ListSigningProfiles = [
1124
+ 9,
1125
+ n0,
1126
+ _LSPi,
1127
+ {
1128
+ [_h]: ["GET", "/signing-profiles", 200],
1129
+ },
1130
+ () => ListSigningProfilesRequest,
1131
+ () => ListSigningProfilesResponse,
1132
+ ];
1133
+ var ListTagsForResource = [
1134
+ 9,
1135
+ n0,
1136
+ _LTFR,
1137
+ {
1138
+ [_h]: ["GET", "/tags/{resourceArn}", 200],
1139
+ },
1140
+ () => ListTagsForResourceRequest,
1141
+ () => ListTagsForResourceResponse,
1142
+ ];
1143
+ var PutSigningProfile = [
1144
+ 9,
1145
+ n0,
1146
+ _PSP,
1147
+ {
1148
+ [_h]: ["PUT", "/signing-profiles/{profileName}", 200],
1149
+ },
1150
+ () => PutSigningProfileRequest,
1151
+ () => PutSigningProfileResponse,
1152
+ ];
1153
+ var RemoveProfilePermission = [
1154
+ 9,
1155
+ n0,
1156
+ _RPP,
1157
+ {
1158
+ [_h]: ["DELETE", "/signing-profiles/{profileName}/permissions/{statementId}", 200],
1159
+ },
1160
+ () => RemoveProfilePermissionRequest,
1161
+ () => RemoveProfilePermissionResponse,
1162
+ ];
1163
+ var RevokeSignature = [
1164
+ 9,
1165
+ n0,
1166
+ _RS,
1167
+ {
1168
+ [_h]: ["PUT", "/signing-jobs/{jobId}/revoke", 200],
1169
+ },
1170
+ () => RevokeSignatureRequest,
1171
+ () => __Unit,
1172
+ ];
1173
+ var RevokeSigningProfile = [
1174
+ 9,
1175
+ n0,
1176
+ _RSP,
1177
+ {
1178
+ [_h]: ["PUT", "/signing-profiles/{profileName}/revoke", 200],
1179
+ },
1180
+ () => RevokeSigningProfileRequest,
1181
+ () => __Unit,
1182
+ ];
1183
+ var SignPayload = [
1184
+ 9,
1185
+ n0,
1186
+ _SPigna,
1187
+ {
1188
+ [_h]: ["POST", "/signing-jobs/with-payload", 200],
1189
+ },
1190
+ () => SignPayloadRequest,
1191
+ () => SignPayloadResponse,
1192
+ ];
1193
+ var StartSigningJob = [
1194
+ 9,
1195
+ n0,
1196
+ _SSJ,
1197
+ {
1198
+ [_h]: ["POST", "/signing-jobs", 200],
1199
+ },
1200
+ () => StartSigningJobRequest,
1201
+ () => StartSigningJobResponse,
1202
+ ];
1203
+ var TagResource = [
1204
+ 9,
1205
+ n0,
1206
+ _TR,
1207
+ {
1208
+ [_h]: ["POST", "/tags/{resourceArn}", 200],
1209
+ },
1210
+ () => TagResourceRequest,
1211
+ () => TagResourceResponse,
1212
+ ];
1213
+ var UntagResource = [
1214
+ 9,
1215
+ n0,
1216
+ _UR,
1217
+ {
1218
+ [_h]: ["DELETE", "/tags/{resourceArn}", 200],
1219
+ },
1220
+ () => UntagResourceRequest,
1221
+ () => UntagResourceResponse,
1222
+ ];
1120
1223
 
1121
1224
  class AddProfilePermissionCommand extends smithyClient.Command
1122
1225
  .classBuilder()
1123
1226
  .ep(commonParams)
1124
1227
  .m(function (Command, cs, config, o) {
1125
- return [
1126
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1127
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1128
- ];
1228
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1129
1229
  })
1130
1230
  .s("WallabyService", "AddProfilePermission", {})
1131
1231
  .n("SignerClient", "AddProfilePermissionCommand")
1132
- .f(void 0, void 0)
1133
- .ser(se_AddProfilePermissionCommand)
1134
- .de(de_AddProfilePermissionCommand)
1232
+ .sc(AddProfilePermission)
1135
1233
  .build() {
1136
1234
  }
1137
1235
 
@@ -1139,16 +1237,11 @@ class CancelSigningProfileCommand extends smithyClient.Command
1139
1237
  .classBuilder()
1140
1238
  .ep(commonParams)
1141
1239
  .m(function (Command, cs, config, o) {
1142
- return [
1143
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1144
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1145
- ];
1240
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1146
1241
  })
1147
1242
  .s("WallabyService", "CancelSigningProfile", {})
1148
1243
  .n("SignerClient", "CancelSigningProfileCommand")
1149
- .f(void 0, void 0)
1150
- .ser(se_CancelSigningProfileCommand)
1151
- .de(de_CancelSigningProfileCommand)
1244
+ .sc(CancelSigningProfile)
1152
1245
  .build() {
1153
1246
  }
1154
1247
 
@@ -1156,16 +1249,11 @@ class DescribeSigningJobCommand extends smithyClient.Command
1156
1249
  .classBuilder()
1157
1250
  .ep(commonParams)
1158
1251
  .m(function (Command, cs, config, o) {
1159
- return [
1160
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1161
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1162
- ];
1252
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1163
1253
  })
1164
1254
  .s("WallabyService", "DescribeSigningJob", {})
1165
1255
  .n("SignerClient", "DescribeSigningJobCommand")
1166
- .f(void 0, void 0)
1167
- .ser(se_DescribeSigningJobCommand)
1168
- .de(de_DescribeSigningJobCommand)
1256
+ .sc(DescribeSigningJob)
1169
1257
  .build() {
1170
1258
  }
1171
1259
 
@@ -1173,16 +1261,11 @@ class GetRevocationStatusCommand extends smithyClient.Command
1173
1261
  .classBuilder()
1174
1262
  .ep(commonParams)
1175
1263
  .m(function (Command, cs, config, o) {
1176
- return [
1177
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1178
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1179
- ];
1264
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1180
1265
  })
1181
1266
  .s("WallabyService", "GetRevocationStatus", {})
1182
1267
  .n("SignerClient", "GetRevocationStatusCommand")
1183
- .f(void 0, void 0)
1184
- .ser(se_GetRevocationStatusCommand)
1185
- .de(de_GetRevocationStatusCommand)
1268
+ .sc(GetRevocationStatus)
1186
1269
  .build() {
1187
1270
  }
1188
1271
 
@@ -1190,16 +1273,11 @@ class GetSigningPlatformCommand extends smithyClient.Command
1190
1273
  .classBuilder()
1191
1274
  .ep(commonParams)
1192
1275
  .m(function (Command, cs, config, o) {
1193
- return [
1194
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1195
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1196
- ];
1276
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1197
1277
  })
1198
1278
  .s("WallabyService", "GetSigningPlatform", {})
1199
1279
  .n("SignerClient", "GetSigningPlatformCommand")
1200
- .f(void 0, void 0)
1201
- .ser(se_GetSigningPlatformCommand)
1202
- .de(de_GetSigningPlatformCommand)
1280
+ .sc(GetSigningPlatform)
1203
1281
  .build() {
1204
1282
  }
1205
1283
 
@@ -1207,16 +1285,11 @@ class GetSigningProfileCommand extends smithyClient.Command
1207
1285
  .classBuilder()
1208
1286
  .ep(commonParams)
1209
1287
  .m(function (Command, cs, config, o) {
1210
- return [
1211
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1212
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1213
- ];
1288
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1214
1289
  })
1215
1290
  .s("WallabyService", "GetSigningProfile", {})
1216
1291
  .n("SignerClient", "GetSigningProfileCommand")
1217
- .f(void 0, void 0)
1218
- .ser(se_GetSigningProfileCommand)
1219
- .de(de_GetSigningProfileCommand)
1292
+ .sc(GetSigningProfile)
1220
1293
  .build() {
1221
1294
  }
1222
1295
 
@@ -1224,16 +1297,11 @@ class ListProfilePermissionsCommand extends smithyClient.Command
1224
1297
  .classBuilder()
1225
1298
  .ep(commonParams)
1226
1299
  .m(function (Command, cs, config, o) {
1227
- return [
1228
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1229
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1230
- ];
1300
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1231
1301
  })
1232
1302
  .s("WallabyService", "ListProfilePermissions", {})
1233
1303
  .n("SignerClient", "ListProfilePermissionsCommand")
1234
- .f(void 0, void 0)
1235
- .ser(se_ListProfilePermissionsCommand)
1236
- .de(de_ListProfilePermissionsCommand)
1304
+ .sc(ListProfilePermissions)
1237
1305
  .build() {
1238
1306
  }
1239
1307
 
@@ -1241,16 +1309,11 @@ class ListSigningJobsCommand extends smithyClient.Command
1241
1309
  .classBuilder()
1242
1310
  .ep(commonParams)
1243
1311
  .m(function (Command, cs, config, o) {
1244
- return [
1245
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1246
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1247
- ];
1312
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1248
1313
  })
1249
1314
  .s("WallabyService", "ListSigningJobs", {})
1250
1315
  .n("SignerClient", "ListSigningJobsCommand")
1251
- .f(void 0, void 0)
1252
- .ser(se_ListSigningJobsCommand)
1253
- .de(de_ListSigningJobsCommand)
1316
+ .sc(ListSigningJobs)
1254
1317
  .build() {
1255
1318
  }
1256
1319
 
@@ -1258,16 +1321,11 @@ class ListSigningPlatformsCommand extends smithyClient.Command
1258
1321
  .classBuilder()
1259
1322
  .ep(commonParams)
1260
1323
  .m(function (Command, cs, config, o) {
1261
- return [
1262
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1263
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1264
- ];
1324
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1265
1325
  })
1266
1326
  .s("WallabyService", "ListSigningPlatforms", {})
1267
1327
  .n("SignerClient", "ListSigningPlatformsCommand")
1268
- .f(void 0, void 0)
1269
- .ser(se_ListSigningPlatformsCommand)
1270
- .de(de_ListSigningPlatformsCommand)
1328
+ .sc(ListSigningPlatforms)
1271
1329
  .build() {
1272
1330
  }
1273
1331
 
@@ -1275,16 +1333,11 @@ class ListSigningProfilesCommand extends smithyClient.Command
1275
1333
  .classBuilder()
1276
1334
  .ep(commonParams)
1277
1335
  .m(function (Command, cs, config, o) {
1278
- return [
1279
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1280
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1281
- ];
1336
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1282
1337
  })
1283
1338
  .s("WallabyService", "ListSigningProfiles", {})
1284
1339
  .n("SignerClient", "ListSigningProfilesCommand")
1285
- .f(void 0, void 0)
1286
- .ser(se_ListSigningProfilesCommand)
1287
- .de(de_ListSigningProfilesCommand)
1340
+ .sc(ListSigningProfiles)
1288
1341
  .build() {
1289
1342
  }
1290
1343
 
@@ -1292,16 +1345,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1292
1345
  .classBuilder()
1293
1346
  .ep(commonParams)
1294
1347
  .m(function (Command, cs, config, o) {
1295
- return [
1296
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1297
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1298
- ];
1348
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1299
1349
  })
1300
1350
  .s("WallabyService", "ListTagsForResource", {})
1301
1351
  .n("SignerClient", "ListTagsForResourceCommand")
1302
- .f(void 0, void 0)
1303
- .ser(se_ListTagsForResourceCommand)
1304
- .de(de_ListTagsForResourceCommand)
1352
+ .sc(ListTagsForResource)
1305
1353
  .build() {
1306
1354
  }
1307
1355
 
@@ -1309,16 +1357,11 @@ class PutSigningProfileCommand extends smithyClient.Command
1309
1357
  .classBuilder()
1310
1358
  .ep(commonParams)
1311
1359
  .m(function (Command, cs, config, o) {
1312
- return [
1313
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1314
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1315
- ];
1360
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1316
1361
  })
1317
1362
  .s("WallabyService", "PutSigningProfile", {})
1318
1363
  .n("SignerClient", "PutSigningProfileCommand")
1319
- .f(void 0, void 0)
1320
- .ser(se_PutSigningProfileCommand)
1321
- .de(de_PutSigningProfileCommand)
1364
+ .sc(PutSigningProfile)
1322
1365
  .build() {
1323
1366
  }
1324
1367
 
@@ -1326,16 +1369,11 @@ class RemoveProfilePermissionCommand extends smithyClient.Command
1326
1369
  .classBuilder()
1327
1370
  .ep(commonParams)
1328
1371
  .m(function (Command, cs, config, o) {
1329
- return [
1330
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1331
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1332
- ];
1372
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1333
1373
  })
1334
1374
  .s("WallabyService", "RemoveProfilePermission", {})
1335
1375
  .n("SignerClient", "RemoveProfilePermissionCommand")
1336
- .f(void 0, void 0)
1337
- .ser(se_RemoveProfilePermissionCommand)
1338
- .de(de_RemoveProfilePermissionCommand)
1376
+ .sc(RemoveProfilePermission)
1339
1377
  .build() {
1340
1378
  }
1341
1379
 
@@ -1343,16 +1381,11 @@ class RevokeSignatureCommand extends smithyClient.Command
1343
1381
  .classBuilder()
1344
1382
  .ep(commonParams)
1345
1383
  .m(function (Command, cs, config, o) {
1346
- return [
1347
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1348
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1349
- ];
1384
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1350
1385
  })
1351
1386
  .s("WallabyService", "RevokeSignature", {})
1352
1387
  .n("SignerClient", "RevokeSignatureCommand")
1353
- .f(void 0, void 0)
1354
- .ser(se_RevokeSignatureCommand)
1355
- .de(de_RevokeSignatureCommand)
1388
+ .sc(RevokeSignature)
1356
1389
  .build() {
1357
1390
  }
1358
1391
 
@@ -1360,16 +1393,11 @@ class RevokeSigningProfileCommand extends smithyClient.Command
1360
1393
  .classBuilder()
1361
1394
  .ep(commonParams)
1362
1395
  .m(function (Command, cs, config, o) {
1363
- return [
1364
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1365
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1366
- ];
1396
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1367
1397
  })
1368
1398
  .s("WallabyService", "RevokeSigningProfile", {})
1369
1399
  .n("SignerClient", "RevokeSigningProfileCommand")
1370
- .f(void 0, void 0)
1371
- .ser(se_RevokeSigningProfileCommand)
1372
- .de(de_RevokeSigningProfileCommand)
1400
+ .sc(RevokeSigningProfile)
1373
1401
  .build() {
1374
1402
  }
1375
1403
 
@@ -1377,16 +1405,11 @@ class SignPayloadCommand extends smithyClient.Command
1377
1405
  .classBuilder()
1378
1406
  .ep(commonParams)
1379
1407
  .m(function (Command, cs, config, o) {
1380
- return [
1381
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1382
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1383
- ];
1408
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1384
1409
  })
1385
1410
  .s("WallabyService", "SignPayload", {})
1386
1411
  .n("SignerClient", "SignPayloadCommand")
1387
- .f(void 0, void 0)
1388
- .ser(se_SignPayloadCommand)
1389
- .de(de_SignPayloadCommand)
1412
+ .sc(SignPayload)
1390
1413
  .build() {
1391
1414
  }
1392
1415
 
@@ -1394,16 +1417,11 @@ class StartSigningJobCommand extends smithyClient.Command
1394
1417
  .classBuilder()
1395
1418
  .ep(commonParams)
1396
1419
  .m(function (Command, cs, config, o) {
1397
- return [
1398
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1399
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1400
- ];
1420
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1401
1421
  })
1402
1422
  .s("WallabyService", "StartSigningJob", {})
1403
1423
  .n("SignerClient", "StartSigningJobCommand")
1404
- .f(void 0, void 0)
1405
- .ser(se_StartSigningJobCommand)
1406
- .de(de_StartSigningJobCommand)
1424
+ .sc(StartSigningJob)
1407
1425
  .build() {
1408
1426
  }
1409
1427
 
@@ -1411,16 +1429,11 @@ class TagResourceCommand extends smithyClient.Command
1411
1429
  .classBuilder()
1412
1430
  .ep(commonParams)
1413
1431
  .m(function (Command, cs, config, o) {
1414
- return [
1415
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1416
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1417
- ];
1432
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1418
1433
  })
1419
1434
  .s("WallabyService", "TagResource", {})
1420
1435
  .n("SignerClient", "TagResourceCommand")
1421
- .f(void 0, void 0)
1422
- .ser(se_TagResourceCommand)
1423
- .de(de_TagResourceCommand)
1436
+ .sc(TagResource)
1424
1437
  .build() {
1425
1438
  }
1426
1439
 
@@ -1428,16 +1441,11 @@ class UntagResourceCommand extends smithyClient.Command
1428
1441
  .classBuilder()
1429
1442
  .ep(commonParams)
1430
1443
  .m(function (Command, cs, config, o) {
1431
- return [
1432
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1433
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1434
- ];
1444
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1435
1445
  })
1436
1446
  .s("WallabyService", "UntagResource", {})
1437
1447
  .n("SignerClient", "UntagResourceCommand")
1438
- .f(void 0, void 0)
1439
- .ser(se_UntagResourceCommand)
1440
- .de(de_UntagResourceCommand)
1448
+ .sc(UntagResource)
1441
1449
  .build() {
1442
1450
  }
1443
1451
 
@@ -1522,12 +1530,12 @@ Object.defineProperty(exports, "__Client", {
1522
1530
  enumerable: true,
1523
1531
  get: function () { return smithyClient.Client; }
1524
1532
  });
1525
- exports.AccessDeniedException = AccessDeniedException;
1533
+ exports.AccessDeniedException = AccessDeniedException$1;
1526
1534
  exports.AddProfilePermissionCommand = AddProfilePermissionCommand;
1527
- exports.BadRequestException = BadRequestException;
1535
+ exports.BadRequestException = BadRequestException$1;
1528
1536
  exports.CancelSigningProfileCommand = CancelSigningProfileCommand;
1529
1537
  exports.Category = Category;
1530
- exports.ConflictException = ConflictException;
1538
+ exports.ConflictException = ConflictException$1;
1531
1539
  exports.DescribeSigningJobCommand = DescribeSigningJobCommand;
1532
1540
  exports.EncryptionAlgorithm = EncryptionAlgorithm;
1533
1541
  exports.GetRevocationStatusCommand = GetRevocationStatusCommand;
@@ -1535,31 +1543,31 @@ exports.GetSigningPlatformCommand = GetSigningPlatformCommand;
1535
1543
  exports.GetSigningProfileCommand = GetSigningProfileCommand;
1536
1544
  exports.HashAlgorithm = HashAlgorithm;
1537
1545
  exports.ImageFormat = ImageFormat;
1538
- exports.InternalServiceErrorException = InternalServiceErrorException;
1546
+ exports.InternalServiceErrorException = InternalServiceErrorException$1;
1539
1547
  exports.ListProfilePermissionsCommand = ListProfilePermissionsCommand;
1540
1548
  exports.ListSigningJobsCommand = ListSigningJobsCommand;
1541
1549
  exports.ListSigningPlatformsCommand = ListSigningPlatformsCommand;
1542
1550
  exports.ListSigningProfilesCommand = ListSigningProfilesCommand;
1543
1551
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1544
- exports.NotFoundException = NotFoundException;
1552
+ exports.NotFoundException = NotFoundException$1;
1545
1553
  exports.PutSigningProfileCommand = PutSigningProfileCommand;
1546
1554
  exports.RemoveProfilePermissionCommand = RemoveProfilePermissionCommand;
1547
- exports.ResourceNotFoundException = ResourceNotFoundException;
1555
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1548
1556
  exports.RevokeSignatureCommand = RevokeSignatureCommand;
1549
1557
  exports.RevokeSigningProfileCommand = RevokeSigningProfileCommand;
1550
- exports.ServiceLimitExceededException = ServiceLimitExceededException;
1558
+ exports.ServiceLimitExceededException = ServiceLimitExceededException$1;
1551
1559
  exports.SignPayloadCommand = SignPayloadCommand;
1552
1560
  exports.Signer = Signer;
1553
1561
  exports.SignerClient = SignerClient;
1554
- exports.SignerServiceException = SignerServiceException;
1562
+ exports.SignerServiceException = SignerServiceException$1;
1555
1563
  exports.SigningProfileStatus = SigningProfileStatus;
1556
1564
  exports.SigningStatus = SigningStatus;
1557
1565
  exports.StartSigningJobCommand = StartSigningJobCommand;
1558
1566
  exports.TagResourceCommand = TagResourceCommand;
1559
- exports.ThrottlingException = ThrottlingException;
1560
- exports.TooManyRequestsException = TooManyRequestsException;
1567
+ exports.ThrottlingException = ThrottlingException$1;
1568
+ exports.TooManyRequestsException = TooManyRequestsException$1;
1561
1569
  exports.UntagResourceCommand = UntagResourceCommand;
1562
- exports.ValidationException = ValidationException;
1570
+ exports.ValidationException = ValidationException$1;
1563
1571
  exports.ValidityType = ValidityType;
1564
1572
  exports.paginateListSigningJobs = paginateListSigningJobs;
1565
1573
  exports.paginateListSigningPlatforms = paginateListSigningPlatforms;