@aws-sdk/client-signer 3.1074.0 → 3.1076.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1018 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SignerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -141
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -672
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSignerHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "signer",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultSignerHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,876 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://signer-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://signer-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://signer.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://signer.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class SignerServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, SignerServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends SignerServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
code;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
this.code = opts.code;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class ConflictException extends SignerServiceException {
|
|
154
|
+
name = "ConflictException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
code;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "ConflictException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
164
|
+
this.code = opts.code;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InternalServiceErrorException extends SignerServiceException {
|
|
168
|
+
name = "InternalServiceErrorException";
|
|
169
|
+
$fault = "server";
|
|
170
|
+
code;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "InternalServiceErrorException",
|
|
174
|
+
$fault: "server",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
178
|
+
this.code = opts.code;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class ResourceNotFoundException extends SignerServiceException {
|
|
182
|
+
name = "ResourceNotFoundException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
code;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ResourceNotFoundException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
192
|
+
this.code = opts.code;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class ServiceLimitExceededException extends SignerServiceException {
|
|
196
|
+
name = "ServiceLimitExceededException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
code;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ServiceLimitExceededException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
|
|
206
|
+
this.code = opts.code;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class TooManyRequestsException extends SignerServiceException {
|
|
210
|
+
name = "TooManyRequestsException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
code;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "TooManyRequestsException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
220
|
+
this.code = opts.code;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class ValidationException extends SignerServiceException {
|
|
224
|
+
name = "ValidationException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
code;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "ValidationException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
234
|
+
this.code = opts.code;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class BadRequestException extends SignerServiceException {
|
|
238
|
+
name = "BadRequestException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
code;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "BadRequestException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
248
|
+
this.code = opts.code;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class NotFoundException extends SignerServiceException {
|
|
252
|
+
name = "NotFoundException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
code;
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "NotFoundException",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
262
|
+
this.code = opts.code;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class ThrottlingException extends SignerServiceException {
|
|
266
|
+
name = "ThrottlingException";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
code;
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "ThrottlingException",
|
|
272
|
+
$fault: "client",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
276
|
+
this.code = opts.code;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
const _ADE = "AccessDeniedException";
|
|
281
|
+
const _APP = "AddProfilePermission";
|
|
282
|
+
const _APPR = "AddProfilePermissionRequest";
|
|
283
|
+
const _APPRd = "AddProfilePermissionResponse";
|
|
284
|
+
const _BRE = "BadRequestException";
|
|
285
|
+
const _CE = "ConflictException";
|
|
286
|
+
const _CSP = "CancelSigningProfile";
|
|
287
|
+
const _CSPR = "CancelSigningProfileRequest";
|
|
288
|
+
const _D = "Destination";
|
|
289
|
+
const _DSJ = "DescribeSigningJob";
|
|
290
|
+
const _DSJR = "DescribeSigningJobRequest";
|
|
291
|
+
const _DSJRe = "DescribeSigningJobResponse";
|
|
292
|
+
const _EAO = "EncryptionAlgorithmOptions";
|
|
293
|
+
const _GRS = "GetRevocationStatus";
|
|
294
|
+
const _GRSR = "GetRevocationStatusRequest";
|
|
295
|
+
const _GRSRe = "GetRevocationStatusResponse";
|
|
296
|
+
const _GSP = "GetSigningPlatform";
|
|
297
|
+
const _GSPR = "GetSigningPlatformRequest";
|
|
298
|
+
const _GSPRe = "GetSigningPlatformResponse";
|
|
299
|
+
const _GSPRet = "GetSigningProfileRequest";
|
|
300
|
+
const _GSPReti = "GetSigningProfileResponse";
|
|
301
|
+
const _GSPe = "GetSigningProfile";
|
|
302
|
+
const _HAO = "HashAlgorithmOptions";
|
|
303
|
+
const _ISEE = "InternalServiceErrorException";
|
|
304
|
+
const _LPP = "ListProfilePermissions";
|
|
305
|
+
const _LPPR = "ListProfilePermissionsRequest";
|
|
306
|
+
const _LPPRi = "ListProfilePermissionsResponse";
|
|
307
|
+
const _LSJ = "ListSigningJobs";
|
|
308
|
+
const _LSJR = "ListSigningJobsRequest";
|
|
309
|
+
const _LSJRi = "ListSigningJobsResponse";
|
|
310
|
+
const _LSP = "ListSigningPlatforms";
|
|
311
|
+
const _LSPR = "ListSigningPlatformsRequest";
|
|
312
|
+
const _LSPRi = "ListSigningPlatformsResponse";
|
|
313
|
+
const _LSPRis = "ListSigningProfilesRequest";
|
|
314
|
+
const _LSPRist = "ListSigningProfilesResponse";
|
|
315
|
+
const _LSPi = "ListSigningProfiles";
|
|
316
|
+
const _LTFR = "ListTagsForResource";
|
|
317
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
318
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
319
|
+
const _NFE = "NotFoundException";
|
|
320
|
+
const _P = "Permission";
|
|
321
|
+
const _PSP = "PutSigningProfile";
|
|
322
|
+
const _PSPR = "PutSigningProfileRequest";
|
|
323
|
+
const _PSPRu = "PutSigningProfileResponse";
|
|
324
|
+
const _Pe = "Permissions";
|
|
325
|
+
const _RNFE = "ResourceNotFoundException";
|
|
326
|
+
const _RPP = "RemoveProfilePermission";
|
|
327
|
+
const _RPPR = "RemoveProfilePermissionRequest";
|
|
328
|
+
const _RPPRe = "RemoveProfilePermissionResponse";
|
|
329
|
+
const _RS = "RevokeSignature";
|
|
330
|
+
const _RSP = "RevokeSigningProfile";
|
|
331
|
+
const _RSPR = "RevokeSigningProfileRequest";
|
|
332
|
+
const _RSR = "RevokeSignatureRequest";
|
|
333
|
+
const _S = "Source";
|
|
334
|
+
const _SC = "SigningConfiguration";
|
|
335
|
+
const _SCO = "SigningConfigurationOverrides";
|
|
336
|
+
const _SD = "S3Destination";
|
|
337
|
+
const _SIF = "SigningImageFormat";
|
|
338
|
+
const _SJ = "SigningJob";
|
|
339
|
+
const _SJRR = "SigningJobRevocationRecord";
|
|
340
|
+
const _SJi = "SigningJobs";
|
|
341
|
+
const _SLEE = "ServiceLimitExceededException";
|
|
342
|
+
const _SM = "SigningMaterial";
|
|
343
|
+
const _SO = "SignedObject";
|
|
344
|
+
const _SP = "SigningPlatform";
|
|
345
|
+
const _SPO = "SigningPlatformOverrides";
|
|
346
|
+
const _SPR = "SignPayloadRequest";
|
|
347
|
+
const _SPRR = "SigningProfileRevocationRecord";
|
|
348
|
+
const _SPRi = "SignPayloadResponse";
|
|
349
|
+
const _SPi = "SigningProfile";
|
|
350
|
+
const _SPig = "SigningPlatforms";
|
|
351
|
+
const _SPign = "SigningProfiles";
|
|
352
|
+
const _SPigna = "SignPayload";
|
|
353
|
+
const _SS = "S3Source";
|
|
354
|
+
const _SSJ = "StartSigningJob";
|
|
355
|
+
const _SSJR = "StartSigningJobRequest";
|
|
356
|
+
const _SSJRt = "StartSigningJobResponse";
|
|
357
|
+
const _SSO = "S3SignedObject";
|
|
358
|
+
const _SVP = "SignatureValidityPeriod";
|
|
359
|
+
const _TE = "ThrottlingException";
|
|
360
|
+
const _TMRE = "TooManyRequestsException";
|
|
361
|
+
const _TR = "TagResource";
|
|
362
|
+
const _TRR = "TagResourceRequest";
|
|
363
|
+
const _TRRa = "TagResourceResponse";
|
|
364
|
+
const _UR = "UntagResource";
|
|
365
|
+
const _URR = "UntagResourceRequest";
|
|
366
|
+
const _URRn = "UntagResourceResponse";
|
|
367
|
+
const _VE = "ValidationException";
|
|
368
|
+
const _a = "action";
|
|
369
|
+
const _aV = "allowedValues";
|
|
370
|
+
const _ar = "arn";
|
|
371
|
+
const _bN = "bucketName";
|
|
372
|
+
const _c = "client";
|
|
373
|
+
const _cA = "createdAt";
|
|
374
|
+
const _cAe = "certificateArn";
|
|
375
|
+
const _cAo = "completedAt";
|
|
376
|
+
const _cH = "certificateHashes";
|
|
377
|
+
const _cRT = "clientRequestToken";
|
|
378
|
+
const _ca = "category";
|
|
379
|
+
const _co = "code";
|
|
380
|
+
const _d = "destination";
|
|
381
|
+
const _dF = "defaultFormat";
|
|
382
|
+
const _dN = "displayName";
|
|
383
|
+
const _dV = "defaultValue";
|
|
384
|
+
const _e = "error";
|
|
385
|
+
const _eA = "encryptionAlgorithm";
|
|
386
|
+
const _eAO = "encryptionAlgorithmOptions";
|
|
387
|
+
const _eT = "effectiveTime";
|
|
388
|
+
const _en = "endpoint";
|
|
389
|
+
const _h = "http";
|
|
390
|
+
const _hA = "hashAlgorithm";
|
|
391
|
+
const _hAO = "hashAlgorithmOptions";
|
|
392
|
+
const _hE = "httpError";
|
|
393
|
+
const _hQ = "httpQuery";
|
|
394
|
+
const _iC = "includeCanceled";
|
|
395
|
+
const _iR = "isRevoked";
|
|
396
|
+
const _j = "jobs";
|
|
397
|
+
const _jA = "jobArn";
|
|
398
|
+
const _jI = "jobId";
|
|
399
|
+
const _jIo = "jobInvoker";
|
|
400
|
+
const _jO = "jobOwner";
|
|
401
|
+
const _k = "key";
|
|
402
|
+
const _m = "message";
|
|
403
|
+
const _mR = "maxResults";
|
|
404
|
+
const _mSIMB = "maxSizeInMB";
|
|
405
|
+
const _me = "metadata";
|
|
406
|
+
const _nT = "nextToken";
|
|
407
|
+
const _o = "overrides";
|
|
408
|
+
const _p = "principal";
|
|
409
|
+
const _pDN = "platformDisplayName";
|
|
410
|
+
const _pF = "payloadFormat";
|
|
411
|
+
const _pI = "platformId";
|
|
412
|
+
const _pN = "profileName";
|
|
413
|
+
const _pO = "profileOwner";
|
|
414
|
+
const _pSB = "policySizeBytes";
|
|
415
|
+
const _pV = "profileVersion";
|
|
416
|
+
const _pVA = "profileVersionArn";
|
|
417
|
+
const _pa = "partner";
|
|
418
|
+
const _pay = "payload";
|
|
419
|
+
const _pe = "permissions";
|
|
420
|
+
const _pl = "platforms";
|
|
421
|
+
const _pr = "profiles";
|
|
422
|
+
const _pre = "prefix";
|
|
423
|
+
const _r = "reason";
|
|
424
|
+
const _rA = "resourceArn";
|
|
425
|
+
const _rAe = "revokedAt";
|
|
426
|
+
const _rB = "requestedBy";
|
|
427
|
+
const _rBe = "revokedBy";
|
|
428
|
+
const _rE = "revokedEntities";
|
|
429
|
+
const _rEF = "revocationEffectiveFrom";
|
|
430
|
+
const _rI = "revisionId";
|
|
431
|
+
const _rR = "revocationRecord";
|
|
432
|
+
const _rS = "revocationSupported";
|
|
433
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.signer";
|
|
434
|
+
const _sC = "signingConfiguration";
|
|
435
|
+
const _sEA = "signatureExpiresAt";
|
|
436
|
+
const _sEAi = "signatureExpiresAfter";
|
|
437
|
+
const _sEB = "signatureExpiresBefore";
|
|
438
|
+
const _sF = "supportedFormats";
|
|
439
|
+
const _sI = "statementId";
|
|
440
|
+
const _sIF = "signingImageFormat";
|
|
441
|
+
const _sM = "signingMaterial";
|
|
442
|
+
const _sO = "signedObject";
|
|
443
|
+
const _sP = "signingParameters";
|
|
444
|
+
const _sR = "statusReason";
|
|
445
|
+
const _sT = "signatureTimestamp";
|
|
446
|
+
const _sVP = "signatureValidityPeriod";
|
|
447
|
+
const _s_ = "s3";
|
|
448
|
+
const _se = "server";
|
|
449
|
+
const _si = "signature";
|
|
450
|
+
const _so = "source";
|
|
451
|
+
const _st = "status";
|
|
452
|
+
const _sta = "statuses";
|
|
453
|
+
const _t = "target";
|
|
454
|
+
const _tK = "tagKeys";
|
|
455
|
+
const _ta = "tags";
|
|
456
|
+
const _ty = "type";
|
|
457
|
+
const _v = "version";
|
|
458
|
+
const _va = "value";
|
|
459
|
+
const n0 = "com.amazonaws.signer";
|
|
460
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
461
|
+
var SignerServiceException$ = [-3, _s, "SignerServiceException", 0, [], []];
|
|
462
|
+
_s_registry.registerError(SignerServiceException$, SignerServiceException);
|
|
463
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
464
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
465
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
466
|
+
[_m, _co],
|
|
467
|
+
[0, 0]
|
|
468
|
+
];
|
|
469
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
470
|
+
var BadRequestException$ = [-3, n0, _BRE,
|
|
471
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
472
|
+
[_m, _co],
|
|
473
|
+
[0, 0]
|
|
474
|
+
];
|
|
475
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
476
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
477
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
478
|
+
[_m, _co],
|
|
479
|
+
[0, 0]
|
|
480
|
+
];
|
|
481
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
482
|
+
var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
483
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
484
|
+
[_m, _co],
|
|
485
|
+
[0, 0]
|
|
486
|
+
];
|
|
487
|
+
n0_registry.registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
488
|
+
var NotFoundException$ = [-3, n0, _NFE,
|
|
489
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
490
|
+
[_m, _co],
|
|
491
|
+
[0, 0]
|
|
492
|
+
];
|
|
493
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
494
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
495
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
496
|
+
[_m, _co],
|
|
497
|
+
[0, 0]
|
|
498
|
+
];
|
|
499
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
500
|
+
var ServiceLimitExceededException$ = [-3, n0, _SLEE,
|
|
501
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
502
|
+
[_m, _co],
|
|
503
|
+
[0, 0]
|
|
504
|
+
];
|
|
505
|
+
n0_registry.registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
|
|
506
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
507
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
508
|
+
[_m, _co],
|
|
509
|
+
[0, 0]
|
|
510
|
+
];
|
|
511
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
512
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
513
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
514
|
+
[_m, _co],
|
|
515
|
+
[0, 0]
|
|
516
|
+
];
|
|
517
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
518
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
519
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
520
|
+
[_m, _co],
|
|
521
|
+
[0, 0]
|
|
522
|
+
];
|
|
523
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
524
|
+
const errorTypeRegistries = [
|
|
525
|
+
_s_registry,
|
|
526
|
+
n0_registry,
|
|
527
|
+
];
|
|
528
|
+
var AddProfilePermissionRequest$ = [3, n0, _APPR,
|
|
529
|
+
0,
|
|
530
|
+
[_pN, _a, _p, _sI, _pV, _rI],
|
|
531
|
+
[[0, 1], 0, 0, 0, 0, 0], 4
|
|
532
|
+
];
|
|
533
|
+
var AddProfilePermissionResponse$ = [3, n0, _APPRd,
|
|
534
|
+
0,
|
|
535
|
+
[_rI],
|
|
536
|
+
[0]
|
|
537
|
+
];
|
|
538
|
+
var CancelSigningProfileRequest$ = [3, n0, _CSPR,
|
|
539
|
+
0,
|
|
540
|
+
[_pN],
|
|
541
|
+
[[0, 1]], 1
|
|
542
|
+
];
|
|
543
|
+
var DescribeSigningJobRequest$ = [3, n0, _DSJR,
|
|
544
|
+
0,
|
|
545
|
+
[_jI],
|
|
546
|
+
[[0, 1]], 1
|
|
547
|
+
];
|
|
548
|
+
var DescribeSigningJobResponse$ = [3, n0, _DSJRe,
|
|
549
|
+
0,
|
|
550
|
+
[_jI, _so, _sM, _pI, _pDN, _pN, _pV, _o, _sP, _cA, _cAo, _sEA, _rB, _st, _sR, _rR, _sO, _jO, _jIo],
|
|
551
|
+
[0, () => Source$, () => SigningMaterial$, 0, 0, 0, 0, () => SigningPlatformOverrides$, 128 | 0, 4, 4, 4, 0, 0, 0, () => SigningJobRevocationRecord$, () => SignedObject$, 0, 0]
|
|
552
|
+
];
|
|
553
|
+
var Destination$ = [3, n0, _D,
|
|
554
|
+
0,
|
|
555
|
+
[_s_],
|
|
556
|
+
[() => S3Destination$]
|
|
557
|
+
];
|
|
558
|
+
var EncryptionAlgorithmOptions$ = [3, n0, _EAO,
|
|
559
|
+
0,
|
|
560
|
+
[_aV, _dV],
|
|
561
|
+
[64 | 0, 0], 2
|
|
562
|
+
];
|
|
563
|
+
var GetRevocationStatusRequest$ = [3, n0, _GRSR,
|
|
564
|
+
0,
|
|
565
|
+
[_sT, _pI, _pVA, _jA, _cH],
|
|
566
|
+
[[4, { [_hQ]: _sT }], [0, { [_hQ]: _pI }], [0, { [_hQ]: _pVA }], [0, { [_hQ]: _jA }], [64 | 0, { [_hQ]: _cH }]], 5
|
|
567
|
+
];
|
|
568
|
+
var GetRevocationStatusResponse$ = [3, n0, _GRSRe,
|
|
569
|
+
0,
|
|
570
|
+
[_rE],
|
|
571
|
+
[64 | 0]
|
|
572
|
+
];
|
|
573
|
+
var GetSigningPlatformRequest$ = [3, n0, _GSPR,
|
|
574
|
+
0,
|
|
575
|
+
[_pI],
|
|
576
|
+
[[0, 1]], 1
|
|
577
|
+
];
|
|
578
|
+
var GetSigningPlatformResponse$ = [3, n0, _GSPRe,
|
|
579
|
+
0,
|
|
580
|
+
[_pI, _dN, _pa, _t, _ca, _sC, _sIF, _mSIMB, _rS],
|
|
581
|
+
[0, 0, 0, 0, 0, () => SigningConfiguration$, () => SigningImageFormat$, 1, 2]
|
|
582
|
+
];
|
|
583
|
+
var GetSigningProfileRequest$ = [3, n0, _GSPRet,
|
|
584
|
+
0,
|
|
585
|
+
[_pN, _pO],
|
|
586
|
+
[[0, 1], [0, { [_hQ]: _pO }]], 1
|
|
587
|
+
];
|
|
588
|
+
var GetSigningProfileResponse$ = [3, n0, _GSPReti,
|
|
589
|
+
0,
|
|
590
|
+
[_pN, _pV, _pVA, _rR, _sM, _pI, _pDN, _sVP, _o, _sP, _st, _sR, _ar, _ta],
|
|
591
|
+
[0, 0, 0, () => SigningProfileRevocationRecord$, () => SigningMaterial$, 0, 0, () => SignatureValidityPeriod$, () => SigningPlatformOverrides$, 128 | 0, 0, 0, 0, 128 | 0]
|
|
592
|
+
];
|
|
593
|
+
var HashAlgorithmOptions$ = [3, n0, _HAO,
|
|
594
|
+
0,
|
|
595
|
+
[_aV, _dV],
|
|
596
|
+
[64 | 0, 0], 2
|
|
597
|
+
];
|
|
598
|
+
var ListProfilePermissionsRequest$ = [3, n0, _LPPR,
|
|
599
|
+
0,
|
|
600
|
+
[_pN, _nT],
|
|
601
|
+
[[0, 1], [0, { [_hQ]: _nT }]], 1
|
|
602
|
+
];
|
|
603
|
+
var ListProfilePermissionsResponse$ = [3, n0, _LPPRi,
|
|
604
|
+
0,
|
|
605
|
+
[_rI, _pSB, _pe, _nT],
|
|
606
|
+
[0, 1, () => Permissions, 0]
|
|
607
|
+
];
|
|
608
|
+
var ListSigningJobsRequest$ = [3, n0, _LSJR,
|
|
609
|
+
0,
|
|
610
|
+
[_st, _pI, _rB, _mR, _nT, _iR, _sEB, _sEAi, _jIo],
|
|
611
|
+
[[0, { [_hQ]: _st }], [0, { [_hQ]: _pI }], [0, { [_hQ]: _rB }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [2, { [_hQ]: _iR }], [4, { [_hQ]: _sEB }], [4, { [_hQ]: _sEAi }], [0, { [_hQ]: _jIo }]]
|
|
612
|
+
];
|
|
613
|
+
var ListSigningJobsResponse$ = [3, n0, _LSJRi,
|
|
614
|
+
0,
|
|
615
|
+
[_j, _nT],
|
|
616
|
+
[() => SigningJobs, 0]
|
|
617
|
+
];
|
|
618
|
+
var ListSigningPlatformsRequest$ = [3, n0, _LSPR,
|
|
619
|
+
0,
|
|
620
|
+
[_ca, _pa, _t, _mR, _nT],
|
|
621
|
+
[[0, { [_hQ]: _ca }], [0, { [_hQ]: _pa }], [0, { [_hQ]: _t }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
622
|
+
];
|
|
623
|
+
var ListSigningPlatformsResponse$ = [3, n0, _LSPRi,
|
|
624
|
+
0,
|
|
625
|
+
[_pl, _nT],
|
|
626
|
+
[() => SigningPlatforms, 0]
|
|
627
|
+
];
|
|
628
|
+
var ListSigningProfilesRequest$ = [3, n0, _LSPRis,
|
|
629
|
+
0,
|
|
630
|
+
[_iC, _mR, _nT, _pI, _sta],
|
|
631
|
+
[[2, { [_hQ]: _iC }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _pI }], [64 | 0, { [_hQ]: _sta }]]
|
|
632
|
+
];
|
|
633
|
+
var ListSigningProfilesResponse$ = [3, n0, _LSPRist,
|
|
634
|
+
0,
|
|
635
|
+
[_pr, _nT],
|
|
636
|
+
[() => SigningProfiles, 0]
|
|
637
|
+
];
|
|
638
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
639
|
+
0,
|
|
640
|
+
[_rA],
|
|
641
|
+
[[0, 1]], 1
|
|
642
|
+
];
|
|
643
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
644
|
+
0,
|
|
645
|
+
[_ta],
|
|
646
|
+
[128 | 0]
|
|
647
|
+
];
|
|
648
|
+
var Permission$ = [3, n0, _P,
|
|
649
|
+
0,
|
|
650
|
+
[_a, _p, _sI, _pV],
|
|
651
|
+
[0, 0, 0, 0]
|
|
652
|
+
];
|
|
653
|
+
var PutSigningProfileRequest$ = [3, n0, _PSPR,
|
|
654
|
+
0,
|
|
655
|
+
[_pN, _pI, _sM, _sVP, _o, _sP, _ta],
|
|
656
|
+
[[0, 1], 0, () => SigningMaterial$, () => SignatureValidityPeriod$, () => SigningPlatformOverrides$, 128 | 0, 128 | 0], 2
|
|
657
|
+
];
|
|
658
|
+
var PutSigningProfileResponse$ = [3, n0, _PSPRu,
|
|
659
|
+
0,
|
|
660
|
+
[_ar, _pV, _pVA],
|
|
661
|
+
[0, 0, 0]
|
|
662
|
+
];
|
|
663
|
+
var RemoveProfilePermissionRequest$ = [3, n0, _RPPR,
|
|
664
|
+
0,
|
|
665
|
+
[_pN, _rI, _sI],
|
|
666
|
+
[[0, 1], [0, { [_hQ]: _rI }], [0, 1]], 3
|
|
667
|
+
];
|
|
668
|
+
var RemoveProfilePermissionResponse$ = [3, n0, _RPPRe,
|
|
669
|
+
0,
|
|
670
|
+
[_rI],
|
|
671
|
+
[0]
|
|
672
|
+
];
|
|
673
|
+
var RevokeSignatureRequest$ = [3, n0, _RSR,
|
|
674
|
+
0,
|
|
675
|
+
[_jI, _r, _jO],
|
|
676
|
+
[[0, 1], 0, 0], 2
|
|
677
|
+
];
|
|
678
|
+
var RevokeSigningProfileRequest$ = [3, n0, _RSPR,
|
|
679
|
+
0,
|
|
680
|
+
[_pN, _pV, _r, _eT],
|
|
681
|
+
[[0, 1], 0, 0, 4], 4
|
|
682
|
+
];
|
|
683
|
+
var S3Destination$ = [3, n0, _SD,
|
|
684
|
+
0,
|
|
685
|
+
[_bN, _pre],
|
|
686
|
+
[0, 0]
|
|
687
|
+
];
|
|
688
|
+
var S3SignedObject$ = [3, n0, _SSO,
|
|
689
|
+
0,
|
|
690
|
+
[_bN, _k],
|
|
691
|
+
[0, 0]
|
|
692
|
+
];
|
|
693
|
+
var S3Source$ = [3, n0, _SS,
|
|
694
|
+
0,
|
|
695
|
+
[_bN, _k, _v],
|
|
696
|
+
[0, 0, 0], 3
|
|
697
|
+
];
|
|
698
|
+
var SignatureValidityPeriod$ = [3, n0, _SVP,
|
|
699
|
+
0,
|
|
700
|
+
[_va, _ty],
|
|
701
|
+
[1, 0]
|
|
702
|
+
];
|
|
703
|
+
var SignedObject$ = [3, n0, _SO,
|
|
704
|
+
0,
|
|
705
|
+
[_s_],
|
|
706
|
+
[() => S3SignedObject$]
|
|
707
|
+
];
|
|
708
|
+
var SigningConfiguration$ = [3, n0, _SC,
|
|
709
|
+
0,
|
|
710
|
+
[_eAO, _hAO],
|
|
711
|
+
[() => EncryptionAlgorithmOptions$, () => HashAlgorithmOptions$], 2
|
|
712
|
+
];
|
|
713
|
+
var SigningConfigurationOverrides$ = [3, n0, _SCO,
|
|
714
|
+
0,
|
|
715
|
+
[_eA, _hA],
|
|
716
|
+
[0, 0]
|
|
717
|
+
];
|
|
718
|
+
var SigningImageFormat$ = [3, n0, _SIF,
|
|
719
|
+
0,
|
|
720
|
+
[_sF, _dF],
|
|
721
|
+
[64 | 0, 0], 2
|
|
722
|
+
];
|
|
723
|
+
var SigningJob$ = [3, n0, _SJ,
|
|
724
|
+
0,
|
|
725
|
+
[_jI, _so, _sO, _sM, _cA, _st, _iR, _pN, _pV, _pI, _pDN, _sEA, _jO, _jIo],
|
|
726
|
+
[0, () => Source$, () => SignedObject$, () => SigningMaterial$, 4, 0, 2, 0, 0, 0, 0, 4, 0, 0]
|
|
727
|
+
];
|
|
728
|
+
var SigningJobRevocationRecord$ = [3, n0, _SJRR,
|
|
729
|
+
0,
|
|
730
|
+
[_r, _rAe, _rBe],
|
|
731
|
+
[0, 4, 0]
|
|
732
|
+
];
|
|
733
|
+
var SigningMaterial$ = [3, n0, _SM,
|
|
734
|
+
0,
|
|
735
|
+
[_cAe],
|
|
736
|
+
[0], 1
|
|
737
|
+
];
|
|
738
|
+
var SigningPlatform$ = [3, n0, _SP,
|
|
739
|
+
0,
|
|
740
|
+
[_pI, _dN, _pa, _t, _ca, _sC, _sIF, _mSIMB, _rS],
|
|
741
|
+
[0, 0, 0, 0, 0, () => SigningConfiguration$, () => SigningImageFormat$, 1, 2]
|
|
742
|
+
];
|
|
743
|
+
var SigningPlatformOverrides$ = [3, n0, _SPO,
|
|
744
|
+
0,
|
|
745
|
+
[_sC, _sIF],
|
|
746
|
+
[() => SigningConfigurationOverrides$, 0]
|
|
747
|
+
];
|
|
748
|
+
var SigningProfile$ = [3, n0, _SPi,
|
|
749
|
+
0,
|
|
750
|
+
[_pN, _pV, _pVA, _sM, _sVP, _pI, _pDN, _sP, _st, _ar, _ta],
|
|
751
|
+
[0, 0, 0, () => SigningMaterial$, () => SignatureValidityPeriod$, 0, 0, 128 | 0, 0, 0, 128 | 0]
|
|
752
|
+
];
|
|
753
|
+
var SigningProfileRevocationRecord$ = [3, n0, _SPRR,
|
|
754
|
+
0,
|
|
755
|
+
[_rEF, _rAe, _rBe],
|
|
756
|
+
[4, 4, 0]
|
|
757
|
+
];
|
|
758
|
+
var SignPayloadRequest$ = [3, n0, _SPR,
|
|
759
|
+
0,
|
|
760
|
+
[_pN, _pay, _pF, _pO],
|
|
761
|
+
[0, 21, 0, 0], 3
|
|
762
|
+
];
|
|
763
|
+
var SignPayloadResponse$ = [3, n0, _SPRi,
|
|
764
|
+
0,
|
|
765
|
+
[_jI, _jO, _me, _si],
|
|
766
|
+
[0, 0, 128 | 0, 21]
|
|
767
|
+
];
|
|
768
|
+
var Source$ = [3, n0, _S,
|
|
769
|
+
0,
|
|
770
|
+
[_s_],
|
|
771
|
+
[() => S3Source$]
|
|
772
|
+
];
|
|
773
|
+
var StartSigningJobRequest$ = [3, n0, _SSJR,
|
|
774
|
+
0,
|
|
775
|
+
[_so, _d, _pN, _cRT, _pO],
|
|
776
|
+
[() => Source$, () => Destination$, 0, [0, 4], 0], 3
|
|
777
|
+
];
|
|
778
|
+
var StartSigningJobResponse$ = [3, n0, _SSJRt,
|
|
779
|
+
0,
|
|
780
|
+
[_jI, _jO],
|
|
781
|
+
[0, 0]
|
|
782
|
+
];
|
|
783
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
784
|
+
0,
|
|
785
|
+
[_rA, _ta],
|
|
786
|
+
[[0, 1], 128 | 0], 2
|
|
787
|
+
];
|
|
788
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
789
|
+
0,
|
|
790
|
+
[],
|
|
791
|
+
[]
|
|
792
|
+
];
|
|
793
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
794
|
+
0,
|
|
795
|
+
[_rA, _tK],
|
|
796
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
797
|
+
];
|
|
798
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
799
|
+
0,
|
|
800
|
+
[],
|
|
801
|
+
[]
|
|
802
|
+
];
|
|
803
|
+
var __Unit = "unit";
|
|
804
|
+
var Permissions = [1, n0, _Pe,
|
|
805
|
+
0, () => Permission$
|
|
806
|
+
];
|
|
807
|
+
var SigningJobs = [1, n0, _SJi,
|
|
808
|
+
0, () => SigningJob$
|
|
809
|
+
];
|
|
810
|
+
var SigningPlatforms = [1, n0, _SPig,
|
|
811
|
+
0, () => SigningPlatform$
|
|
812
|
+
];
|
|
813
|
+
var SigningProfiles = [1, n0, _SPign,
|
|
814
|
+
0, () => SigningProfile$
|
|
815
|
+
];
|
|
816
|
+
var AddProfilePermission$ = [9, n0, _APP,
|
|
817
|
+
{ [_h]: ["POST", "/signing-profiles/{profileName}/permissions", 200] }, () => AddProfilePermissionRequest$, () => AddProfilePermissionResponse$
|
|
818
|
+
];
|
|
819
|
+
var CancelSigningProfile$ = [9, n0, _CSP,
|
|
820
|
+
{ [_h]: ["DELETE", "/signing-profiles/{profileName}", 200] }, () => CancelSigningProfileRequest$, () => __Unit
|
|
821
|
+
];
|
|
822
|
+
var DescribeSigningJob$ = [9, n0, _DSJ,
|
|
823
|
+
{ [_h]: ["GET", "/signing-jobs/{jobId}", 200] }, () => DescribeSigningJobRequest$, () => DescribeSigningJobResponse$
|
|
824
|
+
];
|
|
825
|
+
var GetRevocationStatus$ = [9, n0, _GRS,
|
|
826
|
+
{ [_en]: ["data-"], [_h]: ["GET", "/revocations", 200] }, () => GetRevocationStatusRequest$, () => GetRevocationStatusResponse$
|
|
827
|
+
];
|
|
828
|
+
var GetSigningPlatform$ = [9, n0, _GSP,
|
|
829
|
+
{ [_h]: ["GET", "/signing-platforms/{platformId}", 200] }, () => GetSigningPlatformRequest$, () => GetSigningPlatformResponse$
|
|
830
|
+
];
|
|
831
|
+
var GetSigningProfile$ = [9, n0, _GSPe,
|
|
832
|
+
{ [_h]: ["GET", "/signing-profiles/{profileName}", 200] }, () => GetSigningProfileRequest$, () => GetSigningProfileResponse$
|
|
833
|
+
];
|
|
834
|
+
var ListProfilePermissions$ = [9, n0, _LPP,
|
|
835
|
+
{ [_h]: ["GET", "/signing-profiles/{profileName}/permissions", 200] }, () => ListProfilePermissionsRequest$, () => ListProfilePermissionsResponse$
|
|
836
|
+
];
|
|
837
|
+
var ListSigningJobs$ = [9, n0, _LSJ,
|
|
838
|
+
{ [_h]: ["GET", "/signing-jobs", 200] }, () => ListSigningJobsRequest$, () => ListSigningJobsResponse$
|
|
839
|
+
];
|
|
840
|
+
var ListSigningPlatforms$ = [9, n0, _LSP,
|
|
841
|
+
{ [_h]: ["GET", "/signing-platforms", 200] }, () => ListSigningPlatformsRequest$, () => ListSigningPlatformsResponse$
|
|
842
|
+
];
|
|
843
|
+
var ListSigningProfiles$ = [9, n0, _LSPi,
|
|
844
|
+
{ [_h]: ["GET", "/signing-profiles", 200] }, () => ListSigningProfilesRequest$, () => ListSigningProfilesResponse$
|
|
845
|
+
];
|
|
846
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
847
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
848
|
+
];
|
|
849
|
+
var PutSigningProfile$ = [9, n0, _PSP,
|
|
850
|
+
{ [_h]: ["PUT", "/signing-profiles/{profileName}", 200] }, () => PutSigningProfileRequest$, () => PutSigningProfileResponse$
|
|
851
|
+
];
|
|
852
|
+
var RemoveProfilePermission$ = [9, n0, _RPP,
|
|
853
|
+
{ [_h]: ["DELETE", "/signing-profiles/{profileName}/permissions/{statementId}", 200] }, () => RemoveProfilePermissionRequest$, () => RemoveProfilePermissionResponse$
|
|
854
|
+
];
|
|
855
|
+
var RevokeSignature$ = [9, n0, _RS,
|
|
856
|
+
{ [_h]: ["PUT", "/signing-jobs/{jobId}/revoke", 200] }, () => RevokeSignatureRequest$, () => __Unit
|
|
857
|
+
];
|
|
858
|
+
var RevokeSigningProfile$ = [9, n0, _RSP,
|
|
859
|
+
{ [_h]: ["PUT", "/signing-profiles/{profileName}/revoke", 200] }, () => RevokeSigningProfileRequest$, () => __Unit
|
|
860
|
+
];
|
|
861
|
+
var SignPayload$ = [9, n0, _SPigna,
|
|
862
|
+
{ [_h]: ["POST", "/signing-jobs/with-payload", 200] }, () => SignPayloadRequest$, () => SignPayloadResponse$
|
|
863
|
+
];
|
|
864
|
+
var StartSigningJob$ = [9, n0, _SSJ,
|
|
865
|
+
{ [_h]: ["POST", "/signing-jobs", 200] }, () => StartSigningJobRequest$, () => StartSigningJobResponse$
|
|
866
|
+
];
|
|
867
|
+
var TagResource$ = [9, n0, _TR,
|
|
868
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
869
|
+
];
|
|
870
|
+
var UntagResource$ = [9, n0, _UR,
|
|
871
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
872
|
+
];
|
|
873
|
+
|
|
874
|
+
const getRuntimeConfig$1 = (config) => {
|
|
875
|
+
return {
|
|
876
|
+
apiVersion: "2017-08-25",
|
|
877
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
878
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
879
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
880
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
881
|
+
extensions: config?.extensions ?? [],
|
|
882
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSignerHttpAuthSchemeProvider,
|
|
883
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
884
|
+
{
|
|
885
|
+
schemeId: "aws.auth#sigv4",
|
|
886
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
887
|
+
signer: new AwsSdkSigV4Signer(),
|
|
888
|
+
},
|
|
889
|
+
],
|
|
890
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
891
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
892
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
893
|
+
defaultNamespace: "com.amazonaws.signer",
|
|
894
|
+
errorTypeRegistries,
|
|
895
|
+
version: "2017-08-25",
|
|
896
|
+
serviceTarget: "WallabyService",
|
|
897
|
+
},
|
|
898
|
+
serviceId: config?.serviceId ?? "signer",
|
|
899
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
900
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
901
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
902
|
+
};
|
|
903
|
+
};
|
|
904
|
+
|
|
905
|
+
const getRuntimeConfig = (config) => {
|
|
906
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
907
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
908
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
909
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
910
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
911
|
+
const loaderConfig = {
|
|
912
|
+
profile: config?.profile,
|
|
913
|
+
logger: clientSharedValues.logger,
|
|
914
|
+
};
|
|
915
|
+
return {
|
|
916
|
+
...clientSharedValues,
|
|
917
|
+
...config,
|
|
918
|
+
runtime: "node",
|
|
919
|
+
defaultsMode,
|
|
920
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
921
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
922
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
923
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
924
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
925
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
926
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
927
|
+
retryMode: config?.retryMode ??
|
|
928
|
+
loadConfig({
|
|
929
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
930
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
931
|
+
}, config),
|
|
932
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
933
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
934
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
935
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
936
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
937
|
+
};
|
|
938
|
+
};
|
|
939
|
+
|
|
34
940
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
941
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
942
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -452,34 +1358,131 @@ const SigningProfileStatus = {
|
|
|
452
1358
|
Revoked: "Revoked",
|
|
453
1359
|
};
|
|
454
1360
|
|
|
1361
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1362
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1363
|
+
exports.AddProfilePermission$ = AddProfilePermission$;
|
|
455
1364
|
exports.AddProfilePermissionCommand = AddProfilePermissionCommand;
|
|
1365
|
+
exports.AddProfilePermissionRequest$ = AddProfilePermissionRequest$;
|
|
1366
|
+
exports.AddProfilePermissionResponse$ = AddProfilePermissionResponse$;
|
|
1367
|
+
exports.BadRequestException = BadRequestException;
|
|
1368
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
1369
|
+
exports.CancelSigningProfile$ = CancelSigningProfile$;
|
|
456
1370
|
exports.CancelSigningProfileCommand = CancelSigningProfileCommand;
|
|
1371
|
+
exports.CancelSigningProfileRequest$ = CancelSigningProfileRequest$;
|
|
457
1372
|
exports.Category = Category;
|
|
1373
|
+
exports.ConflictException = ConflictException;
|
|
1374
|
+
exports.ConflictException$ = ConflictException$;
|
|
1375
|
+
exports.DescribeSigningJob$ = DescribeSigningJob$;
|
|
458
1376
|
exports.DescribeSigningJobCommand = DescribeSigningJobCommand;
|
|
1377
|
+
exports.DescribeSigningJobRequest$ = DescribeSigningJobRequest$;
|
|
1378
|
+
exports.DescribeSigningJobResponse$ = DescribeSigningJobResponse$;
|
|
1379
|
+
exports.Destination$ = Destination$;
|
|
459
1380
|
exports.EncryptionAlgorithm = EncryptionAlgorithm;
|
|
1381
|
+
exports.EncryptionAlgorithmOptions$ = EncryptionAlgorithmOptions$;
|
|
1382
|
+
exports.GetRevocationStatus$ = GetRevocationStatus$;
|
|
460
1383
|
exports.GetRevocationStatusCommand = GetRevocationStatusCommand;
|
|
1384
|
+
exports.GetRevocationStatusRequest$ = GetRevocationStatusRequest$;
|
|
1385
|
+
exports.GetRevocationStatusResponse$ = GetRevocationStatusResponse$;
|
|
1386
|
+
exports.GetSigningPlatform$ = GetSigningPlatform$;
|
|
461
1387
|
exports.GetSigningPlatformCommand = GetSigningPlatformCommand;
|
|
1388
|
+
exports.GetSigningPlatformRequest$ = GetSigningPlatformRequest$;
|
|
1389
|
+
exports.GetSigningPlatformResponse$ = GetSigningPlatformResponse$;
|
|
1390
|
+
exports.GetSigningProfile$ = GetSigningProfile$;
|
|
462
1391
|
exports.GetSigningProfileCommand = GetSigningProfileCommand;
|
|
1392
|
+
exports.GetSigningProfileRequest$ = GetSigningProfileRequest$;
|
|
1393
|
+
exports.GetSigningProfileResponse$ = GetSigningProfileResponse$;
|
|
463
1394
|
exports.HashAlgorithm = HashAlgorithm;
|
|
1395
|
+
exports.HashAlgorithmOptions$ = HashAlgorithmOptions$;
|
|
464
1396
|
exports.ImageFormat = ImageFormat;
|
|
1397
|
+
exports.InternalServiceErrorException = InternalServiceErrorException;
|
|
1398
|
+
exports.InternalServiceErrorException$ = InternalServiceErrorException$;
|
|
1399
|
+
exports.ListProfilePermissions$ = ListProfilePermissions$;
|
|
465
1400
|
exports.ListProfilePermissionsCommand = ListProfilePermissionsCommand;
|
|
1401
|
+
exports.ListProfilePermissionsRequest$ = ListProfilePermissionsRequest$;
|
|
1402
|
+
exports.ListProfilePermissionsResponse$ = ListProfilePermissionsResponse$;
|
|
1403
|
+
exports.ListSigningJobs$ = ListSigningJobs$;
|
|
466
1404
|
exports.ListSigningJobsCommand = ListSigningJobsCommand;
|
|
1405
|
+
exports.ListSigningJobsRequest$ = ListSigningJobsRequest$;
|
|
1406
|
+
exports.ListSigningJobsResponse$ = ListSigningJobsResponse$;
|
|
1407
|
+
exports.ListSigningPlatforms$ = ListSigningPlatforms$;
|
|
467
1408
|
exports.ListSigningPlatformsCommand = ListSigningPlatformsCommand;
|
|
1409
|
+
exports.ListSigningPlatformsRequest$ = ListSigningPlatformsRequest$;
|
|
1410
|
+
exports.ListSigningPlatformsResponse$ = ListSigningPlatformsResponse$;
|
|
1411
|
+
exports.ListSigningProfiles$ = ListSigningProfiles$;
|
|
468
1412
|
exports.ListSigningProfilesCommand = ListSigningProfilesCommand;
|
|
1413
|
+
exports.ListSigningProfilesRequest$ = ListSigningProfilesRequest$;
|
|
1414
|
+
exports.ListSigningProfilesResponse$ = ListSigningProfilesResponse$;
|
|
1415
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
469
1416
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1417
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1418
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1419
|
+
exports.NotFoundException = NotFoundException;
|
|
1420
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
1421
|
+
exports.Permission$ = Permission$;
|
|
1422
|
+
exports.PutSigningProfile$ = PutSigningProfile$;
|
|
470
1423
|
exports.PutSigningProfileCommand = PutSigningProfileCommand;
|
|
1424
|
+
exports.PutSigningProfileRequest$ = PutSigningProfileRequest$;
|
|
1425
|
+
exports.PutSigningProfileResponse$ = PutSigningProfileResponse$;
|
|
1426
|
+
exports.RemoveProfilePermission$ = RemoveProfilePermission$;
|
|
471
1427
|
exports.RemoveProfilePermissionCommand = RemoveProfilePermissionCommand;
|
|
1428
|
+
exports.RemoveProfilePermissionRequest$ = RemoveProfilePermissionRequest$;
|
|
1429
|
+
exports.RemoveProfilePermissionResponse$ = RemoveProfilePermissionResponse$;
|
|
1430
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1431
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1432
|
+
exports.RevokeSignature$ = RevokeSignature$;
|
|
472
1433
|
exports.RevokeSignatureCommand = RevokeSignatureCommand;
|
|
1434
|
+
exports.RevokeSignatureRequest$ = RevokeSignatureRequest$;
|
|
1435
|
+
exports.RevokeSigningProfile$ = RevokeSigningProfile$;
|
|
473
1436
|
exports.RevokeSigningProfileCommand = RevokeSigningProfileCommand;
|
|
1437
|
+
exports.RevokeSigningProfileRequest$ = RevokeSigningProfileRequest$;
|
|
1438
|
+
exports.S3Destination$ = S3Destination$;
|
|
1439
|
+
exports.S3SignedObject$ = S3SignedObject$;
|
|
1440
|
+
exports.S3Source$ = S3Source$;
|
|
1441
|
+
exports.ServiceLimitExceededException = ServiceLimitExceededException;
|
|
1442
|
+
exports.ServiceLimitExceededException$ = ServiceLimitExceededException$;
|
|
1443
|
+
exports.SignPayload$ = SignPayload$;
|
|
474
1444
|
exports.SignPayloadCommand = SignPayloadCommand;
|
|
1445
|
+
exports.SignPayloadRequest$ = SignPayloadRequest$;
|
|
1446
|
+
exports.SignPayloadResponse$ = SignPayloadResponse$;
|
|
1447
|
+
exports.SignatureValidityPeriod$ = SignatureValidityPeriod$;
|
|
1448
|
+
exports.SignedObject$ = SignedObject$;
|
|
475
1449
|
exports.Signer = Signer;
|
|
476
1450
|
exports.SignerClient = SignerClient;
|
|
1451
|
+
exports.SignerServiceException = SignerServiceException;
|
|
1452
|
+
exports.SignerServiceException$ = SignerServiceException$;
|
|
1453
|
+
exports.SigningConfiguration$ = SigningConfiguration$;
|
|
1454
|
+
exports.SigningConfigurationOverrides$ = SigningConfigurationOverrides$;
|
|
1455
|
+
exports.SigningImageFormat$ = SigningImageFormat$;
|
|
1456
|
+
exports.SigningJob$ = SigningJob$;
|
|
1457
|
+
exports.SigningJobRevocationRecord$ = SigningJobRevocationRecord$;
|
|
1458
|
+
exports.SigningMaterial$ = SigningMaterial$;
|
|
1459
|
+
exports.SigningPlatform$ = SigningPlatform$;
|
|
1460
|
+
exports.SigningPlatformOverrides$ = SigningPlatformOverrides$;
|
|
1461
|
+
exports.SigningProfile$ = SigningProfile$;
|
|
1462
|
+
exports.SigningProfileRevocationRecord$ = SigningProfileRevocationRecord$;
|
|
477
1463
|
exports.SigningProfileStatus = SigningProfileStatus;
|
|
478
1464
|
exports.SigningStatus = SigningStatus;
|
|
1465
|
+
exports.Source$ = Source$;
|
|
1466
|
+
exports.StartSigningJob$ = StartSigningJob$;
|
|
479
1467
|
exports.StartSigningJobCommand = StartSigningJobCommand;
|
|
1468
|
+
exports.StartSigningJobRequest$ = StartSigningJobRequest$;
|
|
1469
|
+
exports.StartSigningJobResponse$ = StartSigningJobResponse$;
|
|
1470
|
+
exports.TagResource$ = TagResource$;
|
|
480
1471
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1472
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1473
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1474
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1475
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1476
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1477
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1478
|
+
exports.UntagResource$ = UntagResource$;
|
|
481
1479
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1480
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1481
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1482
|
+
exports.ValidationException = ValidationException;
|
|
1483
|
+
exports.ValidationException$ = ValidationException$;
|
|
482
1484
|
exports.ValidityType = ValidityType;
|
|
1485
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
483
1486
|
exports.paginateListSigningJobs = paginateListSigningJobs;
|
|
484
1487
|
exports.paginateListSigningPlatforms = paginateListSigningPlatforms;
|
|
485
1488
|
exports.paginateListSigningProfiles = paginateListSigningProfiles;
|