@aws-sdk/client-signer 3.490.0 → 3.495.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 (38) hide show
  1. package/dist-cjs/Signer.js +1 -49
  2. package/dist-cjs/SignerClient.js +1 -43
  3. package/dist-cjs/commands/AddProfilePermissionCommand.js +1 -28
  4. package/dist-cjs/commands/CancelSigningProfileCommand.js +1 -28
  5. package/dist-cjs/commands/DescribeSigningJobCommand.js +1 -28
  6. package/dist-cjs/commands/GetRevocationStatusCommand.js +1 -28
  7. package/dist-cjs/commands/GetSigningPlatformCommand.js +1 -28
  8. package/dist-cjs/commands/GetSigningProfileCommand.js +1 -28
  9. package/dist-cjs/commands/ListProfilePermissionsCommand.js +1 -28
  10. package/dist-cjs/commands/ListSigningJobsCommand.js +1 -28
  11. package/dist-cjs/commands/ListSigningPlatformsCommand.js +1 -28
  12. package/dist-cjs/commands/ListSigningProfilesCommand.js +1 -28
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  14. package/dist-cjs/commands/PutSigningProfileCommand.js +1 -28
  15. package/dist-cjs/commands/RemoveProfilePermissionCommand.js +1 -28
  16. package/dist-cjs/commands/RevokeSignatureCommand.js +1 -28
  17. package/dist-cjs/commands/RevokeSigningProfileCommand.js +1 -28
  18. package/dist-cjs/commands/SignPayloadCommand.js +1 -28
  19. package/dist-cjs/commands/StartSigningJobCommand.js +1 -28
  20. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  21. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  22. package/dist-cjs/commands/index.js +1 -22
  23. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  24. package/dist-cjs/extensionConfiguration.js +1 -2
  25. package/dist-cjs/index.js +2261 -12
  26. package/dist-cjs/models/SignerServiceException.js +1 -12
  27. package/dist-cjs/models/index.js +1 -4
  28. package/dist-cjs/models/models_0.js +1 -175
  29. package/dist-cjs/pagination/Interfaces.js +1 -2
  30. package/dist-cjs/pagination/ListSigningJobsPaginator.js +1 -7
  31. package/dist-cjs/pagination/ListSigningPlatformsPaginator.js +1 -7
  32. package/dist-cjs/pagination/ListSigningProfilesPaginator.js +1 -7
  33. package/dist-cjs/pagination/index.js +1 -7
  34. package/dist-cjs/protocols/Aws_restJson1.js +1 -1450
  35. package/dist-cjs/runtimeExtensions.js +1 -22
  36. package/dist-cjs/waiters/index.js +1 -4
  37. package/dist-cjs/waiters/waitForSuccessfulSigningJob.js +1 -48
  38. package/package.json +41 -41
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SignerServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class SignerServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, SignerServiceException.prototype);
10
- }
11
- }
12
- exports.SignerServiceException = SignerServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,175 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ThrottlingException = exports.NotFoundException = exports.SigningProfileStatus = exports.ValidityType = exports.SigningStatus = exports.ImageFormat = exports.HashAlgorithm = exports.EncryptionAlgorithm = exports.Category = exports.BadRequestException = exports.ValidationException = exports.TooManyRequestsException = exports.ServiceLimitExceededException = exports.ResourceNotFoundException = exports.InternalServiceErrorException = exports.ConflictException = exports.AccessDeniedException = void 0;
4
- const SignerServiceException_1 = require("./SignerServiceException");
5
- class AccessDeniedException extends SignerServiceException_1.SignerServiceException {
6
- constructor(opts) {
7
- super({
8
- name: "AccessDeniedException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- this.name = "AccessDeniedException";
13
- this.$fault = "client";
14
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
15
- this.code = opts.code;
16
- }
17
- }
18
- exports.AccessDeniedException = AccessDeniedException;
19
- class ConflictException extends SignerServiceException_1.SignerServiceException {
20
- constructor(opts) {
21
- super({
22
- name: "ConflictException",
23
- $fault: "client",
24
- ...opts,
25
- });
26
- this.name = "ConflictException";
27
- this.$fault = "client";
28
- Object.setPrototypeOf(this, ConflictException.prototype);
29
- this.code = opts.code;
30
- }
31
- }
32
- exports.ConflictException = ConflictException;
33
- class InternalServiceErrorException extends SignerServiceException_1.SignerServiceException {
34
- constructor(opts) {
35
- super({
36
- name: "InternalServiceErrorException",
37
- $fault: "server",
38
- ...opts,
39
- });
40
- this.name = "InternalServiceErrorException";
41
- this.$fault = "server";
42
- Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
43
- this.code = opts.code;
44
- }
45
- }
46
- exports.InternalServiceErrorException = InternalServiceErrorException;
47
- class ResourceNotFoundException extends SignerServiceException_1.SignerServiceException {
48
- constructor(opts) {
49
- super({
50
- name: "ResourceNotFoundException",
51
- $fault: "client",
52
- ...opts,
53
- });
54
- this.name = "ResourceNotFoundException";
55
- this.$fault = "client";
56
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
57
- this.code = opts.code;
58
- }
59
- }
60
- exports.ResourceNotFoundException = ResourceNotFoundException;
61
- class ServiceLimitExceededException extends SignerServiceException_1.SignerServiceException {
62
- constructor(opts) {
63
- super({
64
- name: "ServiceLimitExceededException",
65
- $fault: "client",
66
- ...opts,
67
- });
68
- this.name = "ServiceLimitExceededException";
69
- this.$fault = "client";
70
- Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
71
- this.code = opts.code;
72
- }
73
- }
74
- exports.ServiceLimitExceededException = ServiceLimitExceededException;
75
- class TooManyRequestsException extends SignerServiceException_1.SignerServiceException {
76
- constructor(opts) {
77
- super({
78
- name: "TooManyRequestsException",
79
- $fault: "client",
80
- ...opts,
81
- });
82
- this.name = "TooManyRequestsException";
83
- this.$fault = "client";
84
- Object.setPrototypeOf(this, TooManyRequestsException.prototype);
85
- this.code = opts.code;
86
- }
87
- }
88
- exports.TooManyRequestsException = TooManyRequestsException;
89
- class ValidationException extends SignerServiceException_1.SignerServiceException {
90
- constructor(opts) {
91
- super({
92
- name: "ValidationException",
93
- $fault: "client",
94
- ...opts,
95
- });
96
- this.name = "ValidationException";
97
- this.$fault = "client";
98
- Object.setPrototypeOf(this, ValidationException.prototype);
99
- this.code = opts.code;
100
- }
101
- }
102
- exports.ValidationException = ValidationException;
103
- class BadRequestException extends SignerServiceException_1.SignerServiceException {
104
- constructor(opts) {
105
- super({
106
- name: "BadRequestException",
107
- $fault: "client",
108
- ...opts,
109
- });
110
- this.name = "BadRequestException";
111
- this.$fault = "client";
112
- Object.setPrototypeOf(this, BadRequestException.prototype);
113
- this.code = opts.code;
114
- }
115
- }
116
- exports.BadRequestException = BadRequestException;
117
- exports.Category = {
118
- AWSIoT: "AWSIoT",
119
- };
120
- exports.EncryptionAlgorithm = {
121
- ECDSA: "ECDSA",
122
- RSA: "RSA",
123
- };
124
- exports.HashAlgorithm = {
125
- SHA1: "SHA1",
126
- SHA256: "SHA256",
127
- };
128
- exports.ImageFormat = {
129
- JSON: "JSON",
130
- JSONDetached: "JSONDetached",
131
- JSONEmbedded: "JSONEmbedded",
132
- };
133
- exports.SigningStatus = {
134
- Failed: "Failed",
135
- InProgress: "InProgress",
136
- Succeeded: "Succeeded",
137
- };
138
- exports.ValidityType = {
139
- DAYS: "DAYS",
140
- MONTHS: "MONTHS",
141
- YEARS: "YEARS",
142
- };
143
- exports.SigningProfileStatus = {
144
- Active: "Active",
145
- Canceled: "Canceled",
146
- Revoked: "Revoked",
147
- };
148
- class NotFoundException extends SignerServiceException_1.SignerServiceException {
149
- constructor(opts) {
150
- super({
151
- name: "NotFoundException",
152
- $fault: "client",
153
- ...opts,
154
- });
155
- this.name = "NotFoundException";
156
- this.$fault = "client";
157
- Object.setPrototypeOf(this, NotFoundException.prototype);
158
- this.code = opts.code;
159
- }
160
- }
161
- exports.NotFoundException = NotFoundException;
162
- class ThrottlingException extends SignerServiceException_1.SignerServiceException {
163
- constructor(opts) {
164
- super({
165
- name: "ThrottlingException",
166
- $fault: "client",
167
- ...opts,
168
- });
169
- this.name = "ThrottlingException";
170
- this.$fault = "client";
171
- Object.setPrototypeOf(this, ThrottlingException.prototype);
172
- this.code = opts.code;
173
- }
174
- }
175
- exports.ThrottlingException = ThrottlingException;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListSigningJobs = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListSigningJobsCommand_1 = require("../commands/ListSigningJobsCommand");
6
- const SignerClient_1 = require("../SignerClient");
7
- exports.paginateListSigningJobs = (0, core_1.createPaginator)(SignerClient_1.SignerClient, ListSigningJobsCommand_1.ListSigningJobsCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListSigningPlatforms = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListSigningPlatformsCommand_1 = require("../commands/ListSigningPlatformsCommand");
6
- const SignerClient_1 = require("../SignerClient");
7
- exports.paginateListSigningPlatforms = (0, core_1.createPaginator)(SignerClient_1.SignerClient, ListSigningPlatformsCommand_1.ListSigningPlatformsCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListSigningProfiles = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListSigningProfilesCommand_1 = require("../commands/ListSigningProfilesCommand");
6
- const SignerClient_1 = require("../SignerClient");
7
- exports.paginateListSigningProfiles = (0, core_1.createPaginator)(SignerClient_1.SignerClient, ListSigningProfilesCommand_1.ListSigningProfilesCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Interfaces"), exports);
5
- tslib_1.__exportStar(require("./ListSigningJobsPaginator"), exports);
6
- tslib_1.__exportStar(require("./ListSigningPlatformsPaginator"), exports);
7
- tslib_1.__exportStar(require("./ListSigningProfilesPaginator"), exports);
1
+ module.exports = require("../index.js");