@aws-sdk/client-acm-pca 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 +1282 -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 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ACMPCAServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -229
- 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 -37
- package/dist-cjs/schemas/schemas_0.js +0 -824
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 { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultACMPCAHttpAuthSchemeParametersProvider = 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: "acm-pca",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultACMPCAHttpAuthSchemeProvider = (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,1113 @@ 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
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://acm-pca-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://acm-pca.{Region}.amazonaws.com", i],
|
|
95
|
+
["https://acm-pca-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
96
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
97
|
+
["https://acm-pca.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
98
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
99
|
+
["https://acm-pca.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
100
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
101
|
+
]
|
|
102
|
+
};
|
|
103
|
+
const root = 2;
|
|
104
|
+
const r = 100_000_000;
|
|
105
|
+
const nodes = new Int32Array([
|
|
106
|
+
-1, 1, -1,
|
|
107
|
+
0, 13, 3,
|
|
108
|
+
1, 4, r + 12,
|
|
109
|
+
2, 5, r + 12,
|
|
110
|
+
3, 8, 6,
|
|
111
|
+
4, 7, r + 11,
|
|
112
|
+
5, r + 9, r + 10,
|
|
113
|
+
4, 11, 9,
|
|
114
|
+
6, 10, r + 8,
|
|
115
|
+
7, r + 6, r + 7,
|
|
116
|
+
5, 12, r + 5,
|
|
117
|
+
6, r + 4, r + 5,
|
|
118
|
+
3, r + 1, 14,
|
|
119
|
+
4, r + 2, r + 3,
|
|
120
|
+
]);
|
|
121
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
122
|
+
|
|
123
|
+
const cache = new EndpointCache({
|
|
124
|
+
size: 50,
|
|
125
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
126
|
+
});
|
|
127
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
128
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
129
|
+
endpointParams: endpointParams,
|
|
130
|
+
logger: context.logger,
|
|
131
|
+
}));
|
|
132
|
+
};
|
|
133
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
134
|
+
|
|
135
|
+
class ACMPCAServiceException extends ServiceException {
|
|
136
|
+
constructor(options) {
|
|
137
|
+
super(options);
|
|
138
|
+
Object.setPrototypeOf(this, ACMPCAServiceException.prototype);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
class InvalidArgsException extends ACMPCAServiceException {
|
|
143
|
+
name = "InvalidArgsException";
|
|
144
|
+
$fault = "client";
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "InvalidArgsException",
|
|
148
|
+
$fault: "client",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
Object.setPrototypeOf(this, InvalidArgsException.prototype);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
class InvalidPolicyException extends ACMPCAServiceException {
|
|
155
|
+
name = "InvalidPolicyException";
|
|
156
|
+
$fault = "client";
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InvalidPolicyException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
class InvalidTagException extends ACMPCAServiceException {
|
|
167
|
+
name = "InvalidTagException";
|
|
168
|
+
$fault = "client";
|
|
169
|
+
constructor(opts) {
|
|
170
|
+
super({
|
|
171
|
+
name: "InvalidTagException",
|
|
172
|
+
$fault: "client",
|
|
173
|
+
...opts,
|
|
174
|
+
});
|
|
175
|
+
Object.setPrototypeOf(this, InvalidTagException.prototype);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
class LimitExceededException extends ACMPCAServiceException {
|
|
179
|
+
name = "LimitExceededException";
|
|
180
|
+
$fault = "client";
|
|
181
|
+
constructor(opts) {
|
|
182
|
+
super({
|
|
183
|
+
name: "LimitExceededException",
|
|
184
|
+
$fault: "client",
|
|
185
|
+
...opts,
|
|
186
|
+
});
|
|
187
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
class InvalidArnException extends ACMPCAServiceException {
|
|
191
|
+
name = "InvalidArnException";
|
|
192
|
+
$fault = "client";
|
|
193
|
+
constructor(opts) {
|
|
194
|
+
super({
|
|
195
|
+
name: "InvalidArnException",
|
|
196
|
+
$fault: "client",
|
|
197
|
+
...opts,
|
|
198
|
+
});
|
|
199
|
+
Object.setPrototypeOf(this, InvalidArnException.prototype);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
class InvalidStateException extends ACMPCAServiceException {
|
|
203
|
+
name = "InvalidStateException";
|
|
204
|
+
$fault = "client";
|
|
205
|
+
constructor(opts) {
|
|
206
|
+
super({
|
|
207
|
+
name: "InvalidStateException",
|
|
208
|
+
$fault: "client",
|
|
209
|
+
...opts,
|
|
210
|
+
});
|
|
211
|
+
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
class RequestFailedException extends ACMPCAServiceException {
|
|
215
|
+
name = "RequestFailedException";
|
|
216
|
+
$fault = "client";
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "RequestFailedException",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
Object.setPrototypeOf(this, RequestFailedException.prototype);
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
class RequestInProgressException extends ACMPCAServiceException {
|
|
227
|
+
name = "RequestInProgressException";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
constructor(opts) {
|
|
230
|
+
super({
|
|
231
|
+
name: "RequestInProgressException",
|
|
232
|
+
$fault: "client",
|
|
233
|
+
...opts,
|
|
234
|
+
});
|
|
235
|
+
Object.setPrototypeOf(this, RequestInProgressException.prototype);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
class ResourceNotFoundException extends ACMPCAServiceException {
|
|
239
|
+
name = "ResourceNotFoundException";
|
|
240
|
+
$fault = "client";
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ResourceNotFoundException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
class PermissionAlreadyExistsException extends ACMPCAServiceException {
|
|
251
|
+
name = "PermissionAlreadyExistsException";
|
|
252
|
+
$fault = "client";
|
|
253
|
+
constructor(opts) {
|
|
254
|
+
super({
|
|
255
|
+
name: "PermissionAlreadyExistsException",
|
|
256
|
+
$fault: "client",
|
|
257
|
+
...opts,
|
|
258
|
+
});
|
|
259
|
+
Object.setPrototypeOf(this, PermissionAlreadyExistsException.prototype);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
class ConcurrentModificationException extends ACMPCAServiceException {
|
|
263
|
+
name = "ConcurrentModificationException";
|
|
264
|
+
$fault = "client";
|
|
265
|
+
constructor(opts) {
|
|
266
|
+
super({
|
|
267
|
+
name: "ConcurrentModificationException",
|
|
268
|
+
$fault: "client",
|
|
269
|
+
...opts,
|
|
270
|
+
});
|
|
271
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
class LockoutPreventedException extends ACMPCAServiceException {
|
|
275
|
+
name = "LockoutPreventedException";
|
|
276
|
+
$fault = "client";
|
|
277
|
+
constructor(opts) {
|
|
278
|
+
super({
|
|
279
|
+
name: "LockoutPreventedException",
|
|
280
|
+
$fault: "client",
|
|
281
|
+
...opts,
|
|
282
|
+
});
|
|
283
|
+
Object.setPrototypeOf(this, LockoutPreventedException.prototype);
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
class CertificateMismatchException extends ACMPCAServiceException {
|
|
287
|
+
name = "CertificateMismatchException";
|
|
288
|
+
$fault = "client";
|
|
289
|
+
constructor(opts) {
|
|
290
|
+
super({
|
|
291
|
+
name: "CertificateMismatchException",
|
|
292
|
+
$fault: "client",
|
|
293
|
+
...opts,
|
|
294
|
+
});
|
|
295
|
+
Object.setPrototypeOf(this, CertificateMismatchException.prototype);
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
class InvalidRequestException extends ACMPCAServiceException {
|
|
299
|
+
name = "InvalidRequestException";
|
|
300
|
+
$fault = "client";
|
|
301
|
+
constructor(opts) {
|
|
302
|
+
super({
|
|
303
|
+
name: "InvalidRequestException",
|
|
304
|
+
$fault: "client",
|
|
305
|
+
...opts,
|
|
306
|
+
});
|
|
307
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
class MalformedCertificateException extends ACMPCAServiceException {
|
|
311
|
+
name = "MalformedCertificateException";
|
|
312
|
+
$fault = "client";
|
|
313
|
+
constructor(opts) {
|
|
314
|
+
super({
|
|
315
|
+
name: "MalformedCertificateException",
|
|
316
|
+
$fault: "client",
|
|
317
|
+
...opts,
|
|
318
|
+
});
|
|
319
|
+
Object.setPrototypeOf(this, MalformedCertificateException.prototype);
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
class MalformedCSRException extends ACMPCAServiceException {
|
|
323
|
+
name = "MalformedCSRException";
|
|
324
|
+
$fault = "client";
|
|
325
|
+
constructor(opts) {
|
|
326
|
+
super({
|
|
327
|
+
name: "MalformedCSRException",
|
|
328
|
+
$fault: "client",
|
|
329
|
+
...opts,
|
|
330
|
+
});
|
|
331
|
+
Object.setPrototypeOf(this, MalformedCSRException.prototype);
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
class InvalidNextTokenException extends ACMPCAServiceException {
|
|
335
|
+
name = "InvalidNextTokenException";
|
|
336
|
+
$fault = "client";
|
|
337
|
+
constructor(opts) {
|
|
338
|
+
super({
|
|
339
|
+
name: "InvalidNextTokenException",
|
|
340
|
+
$fault: "client",
|
|
341
|
+
...opts,
|
|
342
|
+
});
|
|
343
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
class RequestAlreadyProcessedException extends ACMPCAServiceException {
|
|
347
|
+
name = "RequestAlreadyProcessedException";
|
|
348
|
+
$fault = "client";
|
|
349
|
+
constructor(opts) {
|
|
350
|
+
super({
|
|
351
|
+
name: "RequestAlreadyProcessedException",
|
|
352
|
+
$fault: "client",
|
|
353
|
+
...opts,
|
|
354
|
+
});
|
|
355
|
+
Object.setPrototypeOf(this, RequestAlreadyProcessedException.prototype);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
class TooManyTagsException extends ACMPCAServiceException {
|
|
359
|
+
name = "TooManyTagsException";
|
|
360
|
+
$fault = "client";
|
|
361
|
+
constructor(opts) {
|
|
362
|
+
super({
|
|
363
|
+
name: "TooManyTagsException",
|
|
364
|
+
$fault: "client",
|
|
365
|
+
...opts,
|
|
366
|
+
});
|
|
367
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
const _A = "Arn";
|
|
372
|
+
const _AD = "AccessDescription";
|
|
373
|
+
const _ADL = "AccessDescriptionList";
|
|
374
|
+
const _AL = "AccessLocation";
|
|
375
|
+
const _AM = "AccessMethod";
|
|
376
|
+
const _AMT = "AccessMethodType";
|
|
377
|
+
const _AP = "ApiPassthrough";
|
|
378
|
+
const _ARI = "AuditReportId";
|
|
379
|
+
const _ARRF = "AuditReportResponseFormat";
|
|
380
|
+
const _ARS = "AuditReportStatus";
|
|
381
|
+
const _ASNS = "ASN1Subject";
|
|
382
|
+
const _Ac = "Actions";
|
|
383
|
+
const _C = "Country";
|
|
384
|
+
const _CA = "CustomAttributes";
|
|
385
|
+
const _CAA = "CertificateAuthorityArn";
|
|
386
|
+
const _CAC = "CertificateAuthorityConfiguration";
|
|
387
|
+
const _CAL = "CustomAttributeList";
|
|
388
|
+
const _CAT = "CertificateAuthorityType";
|
|
389
|
+
const _CAe = "CertificateAuthority";
|
|
390
|
+
const _CAer = "CertificateArn";
|
|
391
|
+
const _CAert = "CertificateAuthorities";
|
|
392
|
+
const _CAr = "CreatedAt";
|
|
393
|
+
const _CAu = "CustomAttribute";
|
|
394
|
+
const _CC = "CrlConfiguration";
|
|
395
|
+
const _CCA = "CreateCertificateAuthority";
|
|
396
|
+
const _CCAAR = "CreateCertificateAuthorityAuditReport";
|
|
397
|
+
const _CCAARR = "CreateCertificateAuthorityAuditReportRequest";
|
|
398
|
+
const _CCAARRr = "CreateCertificateAuthorityAuditReportResponse";
|
|
399
|
+
const _CCAR = "CreateCertificateAuthorityRequest";
|
|
400
|
+
const _CCARr = "CreateCertificateAuthorityResponse";
|
|
401
|
+
const _CCe = "CertificateChain";
|
|
402
|
+
const _CCu = "CustomCname";
|
|
403
|
+
const _CDPEC = "CrlDistributionPointExtensionConfiguration";
|
|
404
|
+
const _CE = "CsrExtensions";
|
|
405
|
+
const _CEL = "CustomExtensionList";
|
|
406
|
+
const _CEu = "CustomExtension";
|
|
407
|
+
const _CEus = "CustomExtensions";
|
|
408
|
+
const _CME = "CertificateMismatchException";
|
|
409
|
+
const _CMEo = "ConcurrentModificationException";
|
|
410
|
+
const _CN = "CommonName";
|
|
411
|
+
const _COI = "CustomObjectIdentifier";
|
|
412
|
+
const _CP = "CustomPath";
|
|
413
|
+
const _CPI = "CertPolicyId";
|
|
414
|
+
const _CPL = "CertificatePolicyList";
|
|
415
|
+
const _CPR = "CreatePermissionRequest";
|
|
416
|
+
const _CPe = "CertificatePolicies";
|
|
417
|
+
const _CPr = "CreatePermission";
|
|
418
|
+
const _CRLS = "CRLSign";
|
|
419
|
+
const _CS = "CertificateSerial";
|
|
420
|
+
const _CT = "CrlType";
|
|
421
|
+
const _CU = "CpsUri";
|
|
422
|
+
const _Ce = "Certificate";
|
|
423
|
+
const _Cr = "Critical";
|
|
424
|
+
const _Cs = "Csr";
|
|
425
|
+
const _DCA = "DeleteCertificateAuthority";
|
|
426
|
+
const _DCAAR = "DescribeCertificateAuthorityAuditReport";
|
|
427
|
+
const _DCAARR = "DescribeCertificateAuthorityAuditReportRequest";
|
|
428
|
+
const _DCAARRe = "DescribeCertificateAuthorityAuditReportResponse";
|
|
429
|
+
const _DCAR = "DeleteCertificateAuthorityRequest";
|
|
430
|
+
const _DCARe = "DescribeCertificateAuthorityRequest";
|
|
431
|
+
const _DCARes = "DescribeCertificateAuthorityResponse";
|
|
432
|
+
const _DCAe = "DescribeCertificateAuthority";
|
|
433
|
+
const _DE = "DataEncipherment";
|
|
434
|
+
const _DN = "DnsName";
|
|
435
|
+
const _DNQ = "DistinguishedNameQualifier";
|
|
436
|
+
const _DNi = "DirectoryName";
|
|
437
|
+
const _DO = "DecipherOnly";
|
|
438
|
+
const _DP = "DeletePermission";
|
|
439
|
+
const _DPR = "DeletePermissionRequest";
|
|
440
|
+
const _DPRe = "DeletePolicyRequest";
|
|
441
|
+
const _DPe = "DeletePolicy";
|
|
442
|
+
const _DS = "DigitalSignature";
|
|
443
|
+
const _E = "Extensions";
|
|
444
|
+
const _EID = "ExpirationInDays";
|
|
445
|
+
const _EKU = "ExtendedKeyUsage";
|
|
446
|
+
const _EKUL = "ExtendedKeyUsageList";
|
|
447
|
+
const _EKUOI = "ExtendedKeyUsageObjectIdentifier";
|
|
448
|
+
const _EKUT = "ExtendedKeyUsageType";
|
|
449
|
+
const _EO = "EncipherOnly";
|
|
450
|
+
const _EPN = "EdiPartyName";
|
|
451
|
+
const _En = "Enabled";
|
|
452
|
+
const _FR = "FailureReason";
|
|
453
|
+
const _GC = "GetCertificate";
|
|
454
|
+
const _GCAC = "GetCertificateAuthorityCertificate";
|
|
455
|
+
const _GCACR = "GetCertificateAuthorityCertificateRequest";
|
|
456
|
+
const _GCACRe = "GetCertificateAuthorityCertificateResponse";
|
|
457
|
+
const _GCACRet = "GetCertificateAuthorityCsrRequest";
|
|
458
|
+
const _GCACRete = "GetCertificateAuthorityCsrResponse";
|
|
459
|
+
const _GCACe = "GetCertificateAuthorityCsr";
|
|
460
|
+
const _GCR = "GetCertificateRequest";
|
|
461
|
+
const _GCRe = "GetCertificateResponse";
|
|
462
|
+
const _GN = "GivenName";
|
|
463
|
+
const _GNL = "GeneralNameList";
|
|
464
|
+
const _GNe = "GeneralName";
|
|
465
|
+
const _GP = "GetPolicy";
|
|
466
|
+
const _GPR = "GetPolicyRequest";
|
|
467
|
+
const _GPRe = "GetPolicyResponse";
|
|
468
|
+
const _GQ = "GenerationQualifier";
|
|
469
|
+
const _I = "Initials";
|
|
470
|
+
const _IA = "IpAddress";
|
|
471
|
+
const _IAE = "InvalidArgsException";
|
|
472
|
+
const _IAEn = "InvalidArnException";
|
|
473
|
+
const _IC = "IssueCertificate";
|
|
474
|
+
const _ICAC = "ImportCertificateAuthorityCertificate";
|
|
475
|
+
const _ICACR = "ImportCertificateAuthorityCertificateRequest";
|
|
476
|
+
const _ICR = "IssueCertificateRequest";
|
|
477
|
+
const _ICRs = "IssueCertificateResponse";
|
|
478
|
+
const _INTE = "InvalidNextTokenException";
|
|
479
|
+
const _IPE = "InvalidPolicyException";
|
|
480
|
+
const _IRE = "InvalidRequestException";
|
|
481
|
+
const _ISE = "InvalidStateException";
|
|
482
|
+
const _IT = "IdempotencyToken";
|
|
483
|
+
const _ITE = "InvalidTagException";
|
|
484
|
+
const _K = "Key";
|
|
485
|
+
const _KA = "KeyAlgorithm";
|
|
486
|
+
const _KAe = "KeyAgreement";
|
|
487
|
+
const _KCS = "KeyCertSign";
|
|
488
|
+
const _KE = "KeyEncipherment";
|
|
489
|
+
const _KSSS = "KeyStorageSecurityStandard";
|
|
490
|
+
const _KU = "KeyUsage";
|
|
491
|
+
const _L = "Locality";
|
|
492
|
+
const _LCA = "ListCertificateAuthorities";
|
|
493
|
+
const _LCAR = "ListCertificateAuthoritiesRequest";
|
|
494
|
+
const _LCARi = "ListCertificateAuthoritiesResponse";
|
|
495
|
+
const _LEE = "LimitExceededException";
|
|
496
|
+
const _LP = "ListPermissions";
|
|
497
|
+
const _LPE = "LockoutPreventedException";
|
|
498
|
+
const _LPR = "ListPermissionsRequest";
|
|
499
|
+
const _LPRi = "ListPermissionsResponse";
|
|
500
|
+
const _LSCA = "LastStateChangeAt";
|
|
501
|
+
const _LT = "ListTags";
|
|
502
|
+
const _LTR = "ListTagsRequest";
|
|
503
|
+
const _LTRi = "ListTagsResponse";
|
|
504
|
+
const _MCE = "MalformedCertificateException";
|
|
505
|
+
const _MCSRE = "MalformedCSRException";
|
|
506
|
+
const _MR = "MaxResults";
|
|
507
|
+
const _NA = "NotAfter";
|
|
508
|
+
const _NAa = "NameAssigner";
|
|
509
|
+
const _NB = "NotBefore";
|
|
510
|
+
const _NR = "NonRepudiation";
|
|
511
|
+
const _NT = "NextToken";
|
|
512
|
+
const _O = "Organization";
|
|
513
|
+
const _OA = "OwnerAccount";
|
|
514
|
+
const _OC = "OcspConfiguration";
|
|
515
|
+
const _OCC = "OcspCustomCname";
|
|
516
|
+
const _OE = "OmitExtension";
|
|
517
|
+
const _OI = "ObjectIdentifier";
|
|
518
|
+
const _ON = "OtherName";
|
|
519
|
+
const _OU = "OrganizationalUnit";
|
|
520
|
+
const _P = "Pseudonym";
|
|
521
|
+
const _PAEE = "PermissionAlreadyExistsException";
|
|
522
|
+
const _PDTID = "PermanentDeletionTimeInDays";
|
|
523
|
+
const _PI = "PolicyInformation";
|
|
524
|
+
const _PL = "PermissionList";
|
|
525
|
+
const _PN = "PartyName";
|
|
526
|
+
const _PP = "PutPolicy";
|
|
527
|
+
const _PPR = "PutPolicyRequest";
|
|
528
|
+
const _PQ = "PolicyQualifiers";
|
|
529
|
+
const _PQI = "PolicyQualifierInfo";
|
|
530
|
+
const _PQIL = "PolicyQualifierInfoList";
|
|
531
|
+
const _PQIo = "PolicyQualifierId";
|
|
532
|
+
const _Pe = "Permissions";
|
|
533
|
+
const _Per = "Permission";
|
|
534
|
+
const _Po = "Policy";
|
|
535
|
+
const _Pr = "Principal";
|
|
536
|
+
const _Q = "Qualifier";
|
|
537
|
+
const _RA = "ResourceArn";
|
|
538
|
+
const _RAPE = "RequestAlreadyProcessedException";
|
|
539
|
+
const _RC = "RevocationConfiguration";
|
|
540
|
+
const _RCA = "RestoreCertificateAuthority";
|
|
541
|
+
const _RCAR = "RestoreCertificateAuthorityRequest";
|
|
542
|
+
const _RCR = "RevokeCertificateRequest";
|
|
543
|
+
const _RCe = "RevokeCertificate";
|
|
544
|
+
const _RFE = "RequestFailedException";
|
|
545
|
+
const _RI = "RegisteredId";
|
|
546
|
+
const _RIPE = "RequestInProgressException";
|
|
547
|
+
const _RN = "Rfc822Name";
|
|
548
|
+
const _RNFE = "ResourceNotFoundException";
|
|
549
|
+
const _RO = "ResourceOwner";
|
|
550
|
+
const _RR = "RevocationReason";
|
|
551
|
+
const _RU = "RestorableUntil";
|
|
552
|
+
const _S = "Subject";
|
|
553
|
+
const _SA = "SigningAlgorithm";
|
|
554
|
+
const _SAN = "SubjectAlternativeNames";
|
|
555
|
+
const _SAo = "SourceAccount";
|
|
556
|
+
const _SBN = "S3BucketName";
|
|
557
|
+
const _SIA = "SubjectInformationAccess";
|
|
558
|
+
const _SK = "S3Key";
|
|
559
|
+
const _SN = "SerialNumber";
|
|
560
|
+
const _SOA = "S3ObjectAcl";
|
|
561
|
+
const _Se = "Serial";
|
|
562
|
+
const _St = "State";
|
|
563
|
+
const _Sta = "Status";
|
|
564
|
+
const _Su = "Surname";
|
|
565
|
+
const _T = "Title";
|
|
566
|
+
const _TA = "TemplateArn";
|
|
567
|
+
const _TCA = "TagCertificateAuthority";
|
|
568
|
+
const _TCAR = "TagCertificateAuthorityRequest";
|
|
569
|
+
const _TI = "TypeId";
|
|
570
|
+
const _TL = "TagList";
|
|
571
|
+
const _TMTE = "TooManyTagsException";
|
|
572
|
+
const _Ta = "Tags";
|
|
573
|
+
const _Tag = "Tag";
|
|
574
|
+
const _Ty = "Type";
|
|
575
|
+
const _UCA = "UntagCertificateAuthority";
|
|
576
|
+
const _UCAR = "UntagCertificateAuthorityRequest";
|
|
577
|
+
const _UCARp = "UpdateCertificateAuthorityRequest";
|
|
578
|
+
const _UCAp = "UpdateCertificateAuthority";
|
|
579
|
+
const _UM = "UsageMode";
|
|
580
|
+
const _URI = "UniformResourceIdentifier";
|
|
581
|
+
const _V = "Value";
|
|
582
|
+
const _VNB = "ValidityNotBefore";
|
|
583
|
+
const _Va = "Validity";
|
|
584
|
+
const _c = "client";
|
|
585
|
+
const _e = "error";
|
|
586
|
+
const _m = "message";
|
|
587
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.acmpca";
|
|
588
|
+
const n0 = "com.amazonaws.acmpca";
|
|
589
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
590
|
+
var ACMPCAServiceException$ = [-3, _s, "ACMPCAServiceException", 0, [], []];
|
|
591
|
+
_s_registry.registerError(ACMPCAServiceException$, ACMPCAServiceException);
|
|
592
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
593
|
+
var CertificateMismatchException$ = [-3, n0, _CME,
|
|
594
|
+
{ [_e]: _c },
|
|
595
|
+
[_m],
|
|
596
|
+
[0]
|
|
597
|
+
];
|
|
598
|
+
n0_registry.registerError(CertificateMismatchException$, CertificateMismatchException);
|
|
599
|
+
var ConcurrentModificationException$ = [-3, n0, _CMEo,
|
|
600
|
+
{ [_e]: _c },
|
|
601
|
+
[_m],
|
|
602
|
+
[0]
|
|
603
|
+
];
|
|
604
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
605
|
+
var InvalidArgsException$ = [-3, n0, _IAE,
|
|
606
|
+
{ [_e]: _c },
|
|
607
|
+
[_m],
|
|
608
|
+
[0]
|
|
609
|
+
];
|
|
610
|
+
n0_registry.registerError(InvalidArgsException$, InvalidArgsException);
|
|
611
|
+
var InvalidArnException$ = [-3, n0, _IAEn,
|
|
612
|
+
{ [_e]: _c },
|
|
613
|
+
[_m],
|
|
614
|
+
[0]
|
|
615
|
+
];
|
|
616
|
+
n0_registry.registerError(InvalidArnException$, InvalidArnException);
|
|
617
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
618
|
+
{ [_e]: _c },
|
|
619
|
+
[_m],
|
|
620
|
+
[0]
|
|
621
|
+
];
|
|
622
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
623
|
+
var InvalidPolicyException$ = [-3, n0, _IPE,
|
|
624
|
+
{ [_e]: _c },
|
|
625
|
+
[_m],
|
|
626
|
+
[0]
|
|
627
|
+
];
|
|
628
|
+
n0_registry.registerError(InvalidPolicyException$, InvalidPolicyException);
|
|
629
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
630
|
+
{ [_e]: _c },
|
|
631
|
+
[_m],
|
|
632
|
+
[0]
|
|
633
|
+
];
|
|
634
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
635
|
+
var InvalidStateException$ = [-3, n0, _ISE,
|
|
636
|
+
{ [_e]: _c },
|
|
637
|
+
[_m],
|
|
638
|
+
[0]
|
|
639
|
+
];
|
|
640
|
+
n0_registry.registerError(InvalidStateException$, InvalidStateException);
|
|
641
|
+
var InvalidTagException$ = [-3, n0, _ITE,
|
|
642
|
+
{ [_e]: _c },
|
|
643
|
+
[_m],
|
|
644
|
+
[0]
|
|
645
|
+
];
|
|
646
|
+
n0_registry.registerError(InvalidTagException$, InvalidTagException);
|
|
647
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
648
|
+
{ [_e]: _c },
|
|
649
|
+
[_m],
|
|
650
|
+
[0]
|
|
651
|
+
];
|
|
652
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
653
|
+
var LockoutPreventedException$ = [-3, n0, _LPE,
|
|
654
|
+
{ [_e]: _c },
|
|
655
|
+
[_m],
|
|
656
|
+
[0]
|
|
657
|
+
];
|
|
658
|
+
n0_registry.registerError(LockoutPreventedException$, LockoutPreventedException);
|
|
659
|
+
var MalformedCertificateException$ = [-3, n0, _MCE,
|
|
660
|
+
{ [_e]: _c },
|
|
661
|
+
[_m],
|
|
662
|
+
[0]
|
|
663
|
+
];
|
|
664
|
+
n0_registry.registerError(MalformedCertificateException$, MalformedCertificateException);
|
|
665
|
+
var MalformedCSRException$ = [-3, n0, _MCSRE,
|
|
666
|
+
{ [_e]: _c },
|
|
667
|
+
[_m],
|
|
668
|
+
[0]
|
|
669
|
+
];
|
|
670
|
+
n0_registry.registerError(MalformedCSRException$, MalformedCSRException);
|
|
671
|
+
var PermissionAlreadyExistsException$ = [-3, n0, _PAEE,
|
|
672
|
+
{ [_e]: _c },
|
|
673
|
+
[_m],
|
|
674
|
+
[0]
|
|
675
|
+
];
|
|
676
|
+
n0_registry.registerError(PermissionAlreadyExistsException$, PermissionAlreadyExistsException);
|
|
677
|
+
var RequestAlreadyProcessedException$ = [-3, n0, _RAPE,
|
|
678
|
+
{ [_e]: _c },
|
|
679
|
+
[_m],
|
|
680
|
+
[0]
|
|
681
|
+
];
|
|
682
|
+
n0_registry.registerError(RequestAlreadyProcessedException$, RequestAlreadyProcessedException);
|
|
683
|
+
var RequestFailedException$ = [-3, n0, _RFE,
|
|
684
|
+
{ [_e]: _c },
|
|
685
|
+
[_m],
|
|
686
|
+
[0]
|
|
687
|
+
];
|
|
688
|
+
n0_registry.registerError(RequestFailedException$, RequestFailedException);
|
|
689
|
+
var RequestInProgressException$ = [-3, n0, _RIPE,
|
|
690
|
+
{ [_e]: _c },
|
|
691
|
+
[_m],
|
|
692
|
+
[0]
|
|
693
|
+
];
|
|
694
|
+
n0_registry.registerError(RequestInProgressException$, RequestInProgressException);
|
|
695
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
696
|
+
{ [_e]: _c },
|
|
697
|
+
[_m],
|
|
698
|
+
[0]
|
|
699
|
+
];
|
|
700
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
701
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
702
|
+
{ [_e]: _c },
|
|
703
|
+
[_m],
|
|
704
|
+
[0]
|
|
705
|
+
];
|
|
706
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
707
|
+
const errorTypeRegistries = [
|
|
708
|
+
_s_registry,
|
|
709
|
+
n0_registry,
|
|
710
|
+
];
|
|
711
|
+
var AccessDescription$ = [3, n0, _AD,
|
|
712
|
+
0,
|
|
713
|
+
[_AM, _AL],
|
|
714
|
+
[() => AccessMethod$, () => GeneralName$], 2
|
|
715
|
+
];
|
|
716
|
+
var AccessMethod$ = [3, n0, _AM,
|
|
717
|
+
0,
|
|
718
|
+
[_COI, _AMT],
|
|
719
|
+
[0, 0]
|
|
720
|
+
];
|
|
721
|
+
var ApiPassthrough$ = [3, n0, _AP,
|
|
722
|
+
0,
|
|
723
|
+
[_E, _S],
|
|
724
|
+
[() => Extensions$, () => ASN1Subject$]
|
|
725
|
+
];
|
|
726
|
+
var ASN1Subject$ = [3, n0, _ASNS,
|
|
727
|
+
0,
|
|
728
|
+
[_C, _O, _OU, _DNQ, _St, _CN, _SN, _L, _T, _Su, _GN, _I, _P, _GQ, _CA],
|
|
729
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => CustomAttributeList]
|
|
730
|
+
];
|
|
731
|
+
var CertificateAuthority$ = [3, n0, _CAe,
|
|
732
|
+
0,
|
|
733
|
+
[_A, _OA, _CAr, _LSCA, _Ty, _Se, _Sta, _NB, _NA, _FR, _CAC, _RC, _RU, _KSSS, _UM],
|
|
734
|
+
[0, 0, 4, 4, 0, 0, 0, 4, 4, 0, () => CertificateAuthorityConfiguration$, () => RevocationConfiguration$, 4, 0, 0]
|
|
735
|
+
];
|
|
736
|
+
var CertificateAuthorityConfiguration$ = [3, n0, _CAC,
|
|
737
|
+
0,
|
|
738
|
+
[_KA, _SA, _S, _CE],
|
|
739
|
+
[0, 0, () => ASN1Subject$, () => CsrExtensions$], 3
|
|
740
|
+
];
|
|
741
|
+
var CreateCertificateAuthorityAuditReportRequest$ = [3, n0, _CCAARR,
|
|
742
|
+
0,
|
|
743
|
+
[_CAA, _SBN, _ARRF],
|
|
744
|
+
[0, 0, 0], 3
|
|
745
|
+
];
|
|
746
|
+
var CreateCertificateAuthorityAuditReportResponse$ = [3, n0, _CCAARRr,
|
|
747
|
+
0,
|
|
748
|
+
[_ARI, _SK],
|
|
749
|
+
[0, 0]
|
|
750
|
+
];
|
|
751
|
+
var CreateCertificateAuthorityRequest$ = [3, n0, _CCAR,
|
|
752
|
+
0,
|
|
753
|
+
[_CAC, _CAT, _RC, _IT, _KSSS, _Ta, _UM],
|
|
754
|
+
[() => CertificateAuthorityConfiguration$, 0, () => RevocationConfiguration$, 0, 0, () => TagList, 0], 2
|
|
755
|
+
];
|
|
756
|
+
var CreateCertificateAuthorityResponse$ = [3, n0, _CCARr,
|
|
757
|
+
0,
|
|
758
|
+
[_CAA],
|
|
759
|
+
[0]
|
|
760
|
+
];
|
|
761
|
+
var CreatePermissionRequest$ = [3, n0, _CPR,
|
|
762
|
+
0,
|
|
763
|
+
[_CAA, _Pr, _Ac, _SAo],
|
|
764
|
+
[0, 0, 64 | 0, 0], 3
|
|
765
|
+
];
|
|
766
|
+
var CrlConfiguration$ = [3, n0, _CC,
|
|
767
|
+
0,
|
|
768
|
+
[_En, _EID, _CCu, _SBN, _SOA, _CDPEC, _CT, _CP],
|
|
769
|
+
[2, 1, 0, 0, 0, () => CrlDistributionPointExtensionConfiguration$, 0, 0], 1
|
|
770
|
+
];
|
|
771
|
+
var CrlDistributionPointExtensionConfiguration$ = [3, n0, _CDPEC,
|
|
772
|
+
0,
|
|
773
|
+
[_OE],
|
|
774
|
+
[2], 1
|
|
775
|
+
];
|
|
776
|
+
var CsrExtensions$ = [3, n0, _CE,
|
|
777
|
+
0,
|
|
778
|
+
[_KU, _SIA],
|
|
779
|
+
[() => KeyUsage$, () => AccessDescriptionList]
|
|
780
|
+
];
|
|
781
|
+
var CustomAttribute$ = [3, n0, _CAu,
|
|
782
|
+
0,
|
|
783
|
+
[_OI, _V],
|
|
784
|
+
[0, 0], 2
|
|
785
|
+
];
|
|
786
|
+
var CustomExtension$ = [3, n0, _CEu,
|
|
787
|
+
0,
|
|
788
|
+
[_OI, _V, _Cr],
|
|
789
|
+
[0, 0, 2], 2
|
|
790
|
+
];
|
|
791
|
+
var DeleteCertificateAuthorityRequest$ = [3, n0, _DCAR,
|
|
792
|
+
0,
|
|
793
|
+
[_CAA, _PDTID],
|
|
794
|
+
[0, 1], 1
|
|
795
|
+
];
|
|
796
|
+
var DeletePermissionRequest$ = [3, n0, _DPR,
|
|
797
|
+
0,
|
|
798
|
+
[_CAA, _Pr, _SAo],
|
|
799
|
+
[0, 0, 0], 2
|
|
800
|
+
];
|
|
801
|
+
var DeletePolicyRequest$ = [3, n0, _DPRe,
|
|
802
|
+
0,
|
|
803
|
+
[_RA],
|
|
804
|
+
[0], 1
|
|
805
|
+
];
|
|
806
|
+
var DescribeCertificateAuthorityAuditReportRequest$ = [3, n0, _DCAARR,
|
|
807
|
+
0,
|
|
808
|
+
[_CAA, _ARI],
|
|
809
|
+
[0, 0], 2
|
|
810
|
+
];
|
|
811
|
+
var DescribeCertificateAuthorityAuditReportResponse$ = [3, n0, _DCAARRe,
|
|
812
|
+
0,
|
|
813
|
+
[_ARS, _SBN, _SK, _CAr],
|
|
814
|
+
[0, 0, 0, 4]
|
|
815
|
+
];
|
|
816
|
+
var DescribeCertificateAuthorityRequest$ = [3, n0, _DCARe,
|
|
817
|
+
0,
|
|
818
|
+
[_CAA],
|
|
819
|
+
[0], 1
|
|
820
|
+
];
|
|
821
|
+
var DescribeCertificateAuthorityResponse$ = [3, n0, _DCARes,
|
|
822
|
+
0,
|
|
823
|
+
[_CAe],
|
|
824
|
+
[() => CertificateAuthority$]
|
|
825
|
+
];
|
|
826
|
+
var EdiPartyName$ = [3, n0, _EPN,
|
|
827
|
+
0,
|
|
828
|
+
[_PN, _NAa],
|
|
829
|
+
[0, 0], 1
|
|
830
|
+
];
|
|
831
|
+
var ExtendedKeyUsage$ = [3, n0, _EKU,
|
|
832
|
+
0,
|
|
833
|
+
[_EKUT, _EKUOI],
|
|
834
|
+
[0, 0]
|
|
835
|
+
];
|
|
836
|
+
var Extensions$ = [3, n0, _E,
|
|
837
|
+
0,
|
|
838
|
+
[_CPe, _EKU, _KU, _SAN, _CEus],
|
|
839
|
+
[() => CertificatePolicyList, () => ExtendedKeyUsageList, () => KeyUsage$, () => GeneralNameList, () => CustomExtensionList]
|
|
840
|
+
];
|
|
841
|
+
var GeneralName$ = [3, n0, _GNe,
|
|
842
|
+
0,
|
|
843
|
+
[_ON, _RN, _DN, _DNi, _EPN, _URI, _IA, _RI],
|
|
844
|
+
[() => OtherName$, 0, 0, () => ASN1Subject$, () => EdiPartyName$, 0, 0, 0]
|
|
845
|
+
];
|
|
846
|
+
var GetCertificateAuthorityCertificateRequest$ = [3, n0, _GCACR,
|
|
847
|
+
0,
|
|
848
|
+
[_CAA],
|
|
849
|
+
[0], 1
|
|
850
|
+
];
|
|
851
|
+
var GetCertificateAuthorityCertificateResponse$ = [3, n0, _GCACRe,
|
|
852
|
+
0,
|
|
853
|
+
[_Ce, _CCe],
|
|
854
|
+
[0, 0]
|
|
855
|
+
];
|
|
856
|
+
var GetCertificateAuthorityCsrRequest$ = [3, n0, _GCACRet,
|
|
857
|
+
0,
|
|
858
|
+
[_CAA],
|
|
859
|
+
[0], 1
|
|
860
|
+
];
|
|
861
|
+
var GetCertificateAuthorityCsrResponse$ = [3, n0, _GCACRete,
|
|
862
|
+
0,
|
|
863
|
+
[_Cs],
|
|
864
|
+
[0]
|
|
865
|
+
];
|
|
866
|
+
var GetCertificateRequest$ = [3, n0, _GCR,
|
|
867
|
+
0,
|
|
868
|
+
[_CAA, _CAer],
|
|
869
|
+
[0, 0], 2
|
|
870
|
+
];
|
|
871
|
+
var GetCertificateResponse$ = [3, n0, _GCRe,
|
|
872
|
+
0,
|
|
873
|
+
[_Ce, _CCe],
|
|
874
|
+
[0, 0]
|
|
875
|
+
];
|
|
876
|
+
var GetPolicyRequest$ = [3, n0, _GPR,
|
|
877
|
+
0,
|
|
878
|
+
[_RA],
|
|
879
|
+
[0], 1
|
|
880
|
+
];
|
|
881
|
+
var GetPolicyResponse$ = [3, n0, _GPRe,
|
|
882
|
+
0,
|
|
883
|
+
[_Po],
|
|
884
|
+
[0]
|
|
885
|
+
];
|
|
886
|
+
var ImportCertificateAuthorityCertificateRequest$ = [3, n0, _ICACR,
|
|
887
|
+
0,
|
|
888
|
+
[_CAA, _Ce, _CCe],
|
|
889
|
+
[0, 21, 21], 2
|
|
890
|
+
];
|
|
891
|
+
var IssueCertificateRequest$ = [3, n0, _ICR,
|
|
892
|
+
0,
|
|
893
|
+
[_CAA, _Cs, _SA, _Va, _AP, _TA, _VNB, _IT],
|
|
894
|
+
[0, 21, 0, () => Validity$, () => ApiPassthrough$, 0, () => Validity$, 0], 4
|
|
895
|
+
];
|
|
896
|
+
var IssueCertificateResponse$ = [3, n0, _ICRs,
|
|
897
|
+
0,
|
|
898
|
+
[_CAer],
|
|
899
|
+
[0]
|
|
900
|
+
];
|
|
901
|
+
var KeyUsage$ = [3, n0, _KU,
|
|
902
|
+
0,
|
|
903
|
+
[_DS, _NR, _KE, _DE, _KAe, _KCS, _CRLS, _EO, _DO],
|
|
904
|
+
[2, 2, 2, 2, 2, 2, 2, 2, 2]
|
|
905
|
+
];
|
|
906
|
+
var ListCertificateAuthoritiesRequest$ = [3, n0, _LCAR,
|
|
907
|
+
0,
|
|
908
|
+
[_MR, _NT, _RO],
|
|
909
|
+
[1, 0, 0]
|
|
910
|
+
];
|
|
911
|
+
var ListCertificateAuthoritiesResponse$ = [3, n0, _LCARi,
|
|
912
|
+
0,
|
|
913
|
+
[_NT, _CAert],
|
|
914
|
+
[0, () => CertificateAuthorities]
|
|
915
|
+
];
|
|
916
|
+
var ListPermissionsRequest$ = [3, n0, _LPR,
|
|
917
|
+
0,
|
|
918
|
+
[_CAA, _MR, _NT],
|
|
919
|
+
[0, 1, 0], 1
|
|
920
|
+
];
|
|
921
|
+
var ListPermissionsResponse$ = [3, n0, _LPRi,
|
|
922
|
+
0,
|
|
923
|
+
[_NT, _Pe],
|
|
924
|
+
[0, () => PermissionList]
|
|
925
|
+
];
|
|
926
|
+
var ListTagsRequest$ = [3, n0, _LTR,
|
|
927
|
+
0,
|
|
928
|
+
[_CAA, _MR, _NT],
|
|
929
|
+
[0, 1, 0], 1
|
|
930
|
+
];
|
|
931
|
+
var ListTagsResponse$ = [3, n0, _LTRi,
|
|
932
|
+
0,
|
|
933
|
+
[_NT, _Ta],
|
|
934
|
+
[0, () => TagList]
|
|
935
|
+
];
|
|
936
|
+
var OcspConfiguration$ = [3, n0, _OC,
|
|
937
|
+
0,
|
|
938
|
+
[_En, _OCC],
|
|
939
|
+
[2, 0], 1
|
|
940
|
+
];
|
|
941
|
+
var OtherName$ = [3, n0, _ON,
|
|
942
|
+
0,
|
|
943
|
+
[_TI, _V],
|
|
944
|
+
[0, 0], 2
|
|
945
|
+
];
|
|
946
|
+
var Permission$ = [3, n0, _Per,
|
|
947
|
+
0,
|
|
948
|
+
[_CAA, _CAr, _Pr, _SAo, _Ac, _Po],
|
|
949
|
+
[0, 4, 0, 0, 64 | 0, 0]
|
|
950
|
+
];
|
|
951
|
+
var PolicyInformation$ = [3, n0, _PI,
|
|
952
|
+
0,
|
|
953
|
+
[_CPI, _PQ],
|
|
954
|
+
[0, () => PolicyQualifierInfoList], 1
|
|
955
|
+
];
|
|
956
|
+
var PolicyQualifierInfo$ = [3, n0, _PQI,
|
|
957
|
+
0,
|
|
958
|
+
[_PQIo, _Q],
|
|
959
|
+
[0, () => Qualifier$], 2
|
|
960
|
+
];
|
|
961
|
+
var PutPolicyRequest$ = [3, n0, _PPR,
|
|
962
|
+
0,
|
|
963
|
+
[_RA, _Po],
|
|
964
|
+
[0, 0], 2
|
|
965
|
+
];
|
|
966
|
+
var Qualifier$ = [3, n0, _Q,
|
|
967
|
+
0,
|
|
968
|
+
[_CU],
|
|
969
|
+
[0], 1
|
|
970
|
+
];
|
|
971
|
+
var RestoreCertificateAuthorityRequest$ = [3, n0, _RCAR,
|
|
972
|
+
0,
|
|
973
|
+
[_CAA],
|
|
974
|
+
[0], 1
|
|
975
|
+
];
|
|
976
|
+
var RevocationConfiguration$ = [3, n0, _RC,
|
|
977
|
+
0,
|
|
978
|
+
[_CC, _OC],
|
|
979
|
+
[() => CrlConfiguration$, () => OcspConfiguration$]
|
|
980
|
+
];
|
|
981
|
+
var RevokeCertificateRequest$ = [3, n0, _RCR,
|
|
982
|
+
0,
|
|
983
|
+
[_CAA, _CS, _RR],
|
|
984
|
+
[0, 0, 0], 3
|
|
985
|
+
];
|
|
986
|
+
var Tag$ = [3, n0, _Tag,
|
|
987
|
+
0,
|
|
988
|
+
[_K, _V],
|
|
989
|
+
[0, 0], 1
|
|
990
|
+
];
|
|
991
|
+
var TagCertificateAuthorityRequest$ = [3, n0, _TCAR,
|
|
992
|
+
0,
|
|
993
|
+
[_CAA, _Ta],
|
|
994
|
+
[0, () => TagList], 2
|
|
995
|
+
];
|
|
996
|
+
var UntagCertificateAuthorityRequest$ = [3, n0, _UCAR,
|
|
997
|
+
0,
|
|
998
|
+
[_CAA, _Ta],
|
|
999
|
+
[0, () => TagList], 2
|
|
1000
|
+
];
|
|
1001
|
+
var UpdateCertificateAuthorityRequest$ = [3, n0, _UCARp,
|
|
1002
|
+
0,
|
|
1003
|
+
[_CAA, _RC, _Sta],
|
|
1004
|
+
[0, () => RevocationConfiguration$, 0], 1
|
|
1005
|
+
];
|
|
1006
|
+
var Validity$ = [3, n0, _Va,
|
|
1007
|
+
0,
|
|
1008
|
+
[_V, _Ty],
|
|
1009
|
+
[1, 0], 2
|
|
1010
|
+
];
|
|
1011
|
+
var __Unit = "unit";
|
|
1012
|
+
var AccessDescriptionList = [1, n0, _ADL,
|
|
1013
|
+
0, () => AccessDescription$
|
|
1014
|
+
];
|
|
1015
|
+
var CertificateAuthorities = [1, n0, _CAert,
|
|
1016
|
+
0, () => CertificateAuthority$
|
|
1017
|
+
];
|
|
1018
|
+
var CertificatePolicyList = [1, n0, _CPL,
|
|
1019
|
+
0, () => PolicyInformation$
|
|
1020
|
+
];
|
|
1021
|
+
var CustomAttributeList = [1, n0, _CAL,
|
|
1022
|
+
0, () => CustomAttribute$
|
|
1023
|
+
];
|
|
1024
|
+
var CustomExtensionList = [1, n0, _CEL,
|
|
1025
|
+
0, () => CustomExtension$
|
|
1026
|
+
];
|
|
1027
|
+
var ExtendedKeyUsageList = [1, n0, _EKUL,
|
|
1028
|
+
0, () => ExtendedKeyUsage$
|
|
1029
|
+
];
|
|
1030
|
+
var GeneralNameList = [1, n0, _GNL,
|
|
1031
|
+
0, () => GeneralName$
|
|
1032
|
+
];
|
|
1033
|
+
var PermissionList = [1, n0, _PL,
|
|
1034
|
+
0, () => Permission$
|
|
1035
|
+
];
|
|
1036
|
+
var PolicyQualifierInfoList = [1, n0, _PQIL,
|
|
1037
|
+
0, () => PolicyQualifierInfo$
|
|
1038
|
+
];
|
|
1039
|
+
var TagList = [1, n0, _TL,
|
|
1040
|
+
0, () => Tag$
|
|
1041
|
+
];
|
|
1042
|
+
var CreateCertificateAuthority$ = [9, n0, _CCA,
|
|
1043
|
+
2, () => CreateCertificateAuthorityRequest$, () => CreateCertificateAuthorityResponse$
|
|
1044
|
+
];
|
|
1045
|
+
var CreateCertificateAuthorityAuditReport$ = [9, n0, _CCAAR,
|
|
1046
|
+
2, () => CreateCertificateAuthorityAuditReportRequest$, () => CreateCertificateAuthorityAuditReportResponse$
|
|
1047
|
+
];
|
|
1048
|
+
var CreatePermission$ = [9, n0, _CPr,
|
|
1049
|
+
0, () => CreatePermissionRequest$, () => __Unit
|
|
1050
|
+
];
|
|
1051
|
+
var DeleteCertificateAuthority$ = [9, n0, _DCA,
|
|
1052
|
+
0, () => DeleteCertificateAuthorityRequest$, () => __Unit
|
|
1053
|
+
];
|
|
1054
|
+
var DeletePermission$ = [9, n0, _DP,
|
|
1055
|
+
0, () => DeletePermissionRequest$, () => __Unit
|
|
1056
|
+
];
|
|
1057
|
+
var DeletePolicy$ = [9, n0, _DPe,
|
|
1058
|
+
0, () => DeletePolicyRequest$, () => __Unit
|
|
1059
|
+
];
|
|
1060
|
+
var DescribeCertificateAuthority$ = [9, n0, _DCAe,
|
|
1061
|
+
0, () => DescribeCertificateAuthorityRequest$, () => DescribeCertificateAuthorityResponse$
|
|
1062
|
+
];
|
|
1063
|
+
var DescribeCertificateAuthorityAuditReport$ = [9, n0, _DCAAR,
|
|
1064
|
+
0, () => DescribeCertificateAuthorityAuditReportRequest$, () => DescribeCertificateAuthorityAuditReportResponse$
|
|
1065
|
+
];
|
|
1066
|
+
var GetCertificate$ = [9, n0, _GC,
|
|
1067
|
+
0, () => GetCertificateRequest$, () => GetCertificateResponse$
|
|
1068
|
+
];
|
|
1069
|
+
var GetCertificateAuthorityCertificate$ = [9, n0, _GCAC,
|
|
1070
|
+
0, () => GetCertificateAuthorityCertificateRequest$, () => GetCertificateAuthorityCertificateResponse$
|
|
1071
|
+
];
|
|
1072
|
+
var GetCertificateAuthorityCsr$ = [9, n0, _GCACe,
|
|
1073
|
+
0, () => GetCertificateAuthorityCsrRequest$, () => GetCertificateAuthorityCsrResponse$
|
|
1074
|
+
];
|
|
1075
|
+
var GetPolicy$ = [9, n0, _GP,
|
|
1076
|
+
0, () => GetPolicyRequest$, () => GetPolicyResponse$
|
|
1077
|
+
];
|
|
1078
|
+
var ImportCertificateAuthorityCertificate$ = [9, n0, _ICAC,
|
|
1079
|
+
0, () => ImportCertificateAuthorityCertificateRequest$, () => __Unit
|
|
1080
|
+
];
|
|
1081
|
+
var IssueCertificate$ = [9, n0, _IC,
|
|
1082
|
+
2, () => IssueCertificateRequest$, () => IssueCertificateResponse$
|
|
1083
|
+
];
|
|
1084
|
+
var ListCertificateAuthorities$ = [9, n0, _LCA,
|
|
1085
|
+
0, () => ListCertificateAuthoritiesRequest$, () => ListCertificateAuthoritiesResponse$
|
|
1086
|
+
];
|
|
1087
|
+
var ListPermissions$ = [9, n0, _LP,
|
|
1088
|
+
0, () => ListPermissionsRequest$, () => ListPermissionsResponse$
|
|
1089
|
+
];
|
|
1090
|
+
var ListTags$ = [9, n0, _LT,
|
|
1091
|
+
0, () => ListTagsRequest$, () => ListTagsResponse$
|
|
1092
|
+
];
|
|
1093
|
+
var PutPolicy$ = [9, n0, _PP,
|
|
1094
|
+
0, () => PutPolicyRequest$, () => __Unit
|
|
1095
|
+
];
|
|
1096
|
+
var RestoreCertificateAuthority$ = [9, n0, _RCA,
|
|
1097
|
+
0, () => RestoreCertificateAuthorityRequest$, () => __Unit
|
|
1098
|
+
];
|
|
1099
|
+
var RevokeCertificate$ = [9, n0, _RCe,
|
|
1100
|
+
0, () => RevokeCertificateRequest$, () => __Unit
|
|
1101
|
+
];
|
|
1102
|
+
var TagCertificateAuthority$ = [9, n0, _TCA,
|
|
1103
|
+
0, () => TagCertificateAuthorityRequest$, () => __Unit
|
|
1104
|
+
];
|
|
1105
|
+
var UntagCertificateAuthority$ = [9, n0, _UCA,
|
|
1106
|
+
0, () => UntagCertificateAuthorityRequest$, () => __Unit
|
|
1107
|
+
];
|
|
1108
|
+
var UpdateCertificateAuthority$ = [9, n0, _UCAp,
|
|
1109
|
+
0, () => UpdateCertificateAuthorityRequest$, () => __Unit
|
|
1110
|
+
];
|
|
1111
|
+
|
|
1112
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1113
|
+
return {
|
|
1114
|
+
apiVersion: "",
|
|
1115
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1116
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1117
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1118
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1119
|
+
extensions: config?.extensions ?? [],
|
|
1120
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultACMPCAHttpAuthSchemeProvider,
|
|
1121
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1122
|
+
{
|
|
1123
|
+
schemeId: "aws.auth#sigv4",
|
|
1124
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1125
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1126
|
+
},
|
|
1127
|
+
],
|
|
1128
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1129
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1130
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1131
|
+
defaultNamespace: "com.amazonaws.acmpca",
|
|
1132
|
+
errorTypeRegistries,
|
|
1133
|
+
serviceTarget: "ACMPrivateCA",
|
|
1134
|
+
},
|
|
1135
|
+
serviceId: config?.serviceId ?? "ACM PCA",
|
|
1136
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1137
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1138
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
|
|
1142
|
+
const getRuntimeConfig = (config) => {
|
|
1143
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1144
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1145
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1146
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1147
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1148
|
+
const loaderConfig = {
|
|
1149
|
+
profile: config?.profile,
|
|
1150
|
+
logger: clientSharedValues.logger,
|
|
1151
|
+
};
|
|
1152
|
+
return {
|
|
1153
|
+
...clientSharedValues,
|
|
1154
|
+
...config,
|
|
1155
|
+
runtime: "node",
|
|
1156
|
+
defaultsMode,
|
|
1157
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1158
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1159
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1160
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1161
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1162
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1163
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1164
|
+
retryMode: config?.retryMode ??
|
|
1165
|
+
loadConfig({
|
|
1166
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1167
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1168
|
+
}, config),
|
|
1169
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1170
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1171
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1172
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1173
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1174
|
+
};
|
|
1175
|
+
};
|
|
1176
|
+
|
|
34
1177
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1178
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1179
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -646,47 +1789,171 @@ const RevocationReason = {
|
|
|
646
1789
|
|
|
647
1790
|
exports.ACMPCA = ACMPCA;
|
|
648
1791
|
exports.ACMPCAClient = ACMPCAClient;
|
|
1792
|
+
exports.ACMPCAServiceException = ACMPCAServiceException;
|
|
1793
|
+
exports.ACMPCAServiceException$ = ACMPCAServiceException$;
|
|
1794
|
+
exports.ASN1Subject$ = ASN1Subject$;
|
|
1795
|
+
exports.AccessDescription$ = AccessDescription$;
|
|
1796
|
+
exports.AccessMethod$ = AccessMethod$;
|
|
649
1797
|
exports.AccessMethodType = AccessMethodType;
|
|
650
1798
|
exports.ActionType = ActionType;
|
|
1799
|
+
exports.ApiPassthrough$ = ApiPassthrough$;
|
|
651
1800
|
exports.AuditReportResponseFormat = AuditReportResponseFormat;
|
|
652
1801
|
exports.AuditReportStatus = AuditReportStatus;
|
|
1802
|
+
exports.CertificateAuthority$ = CertificateAuthority$;
|
|
1803
|
+
exports.CertificateAuthorityConfiguration$ = CertificateAuthorityConfiguration$;
|
|
653
1804
|
exports.CertificateAuthorityStatus = CertificateAuthorityStatus;
|
|
654
1805
|
exports.CertificateAuthorityType = CertificateAuthorityType;
|
|
655
1806
|
exports.CertificateAuthorityUsageMode = CertificateAuthorityUsageMode;
|
|
1807
|
+
exports.CertificateMismatchException = CertificateMismatchException;
|
|
1808
|
+
exports.CertificateMismatchException$ = CertificateMismatchException$;
|
|
1809
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
1810
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
1811
|
+
exports.CreateCertificateAuthority$ = CreateCertificateAuthority$;
|
|
1812
|
+
exports.CreateCertificateAuthorityAuditReport$ = CreateCertificateAuthorityAuditReport$;
|
|
656
1813
|
exports.CreateCertificateAuthorityAuditReportCommand = CreateCertificateAuthorityAuditReportCommand;
|
|
1814
|
+
exports.CreateCertificateAuthorityAuditReportRequest$ = CreateCertificateAuthorityAuditReportRequest$;
|
|
1815
|
+
exports.CreateCertificateAuthorityAuditReportResponse$ = CreateCertificateAuthorityAuditReportResponse$;
|
|
657
1816
|
exports.CreateCertificateAuthorityCommand = CreateCertificateAuthorityCommand;
|
|
1817
|
+
exports.CreateCertificateAuthorityRequest$ = CreateCertificateAuthorityRequest$;
|
|
1818
|
+
exports.CreateCertificateAuthorityResponse$ = CreateCertificateAuthorityResponse$;
|
|
1819
|
+
exports.CreatePermission$ = CreatePermission$;
|
|
658
1820
|
exports.CreatePermissionCommand = CreatePermissionCommand;
|
|
1821
|
+
exports.CreatePermissionRequest$ = CreatePermissionRequest$;
|
|
1822
|
+
exports.CrlConfiguration$ = CrlConfiguration$;
|
|
1823
|
+
exports.CrlDistributionPointExtensionConfiguration$ = CrlDistributionPointExtensionConfiguration$;
|
|
659
1824
|
exports.CrlType = CrlType;
|
|
1825
|
+
exports.CsrExtensions$ = CsrExtensions$;
|
|
1826
|
+
exports.CustomAttribute$ = CustomAttribute$;
|
|
1827
|
+
exports.CustomExtension$ = CustomExtension$;
|
|
1828
|
+
exports.DeleteCertificateAuthority$ = DeleteCertificateAuthority$;
|
|
660
1829
|
exports.DeleteCertificateAuthorityCommand = DeleteCertificateAuthorityCommand;
|
|
1830
|
+
exports.DeleteCertificateAuthorityRequest$ = DeleteCertificateAuthorityRequest$;
|
|
1831
|
+
exports.DeletePermission$ = DeletePermission$;
|
|
661
1832
|
exports.DeletePermissionCommand = DeletePermissionCommand;
|
|
1833
|
+
exports.DeletePermissionRequest$ = DeletePermissionRequest$;
|
|
1834
|
+
exports.DeletePolicy$ = DeletePolicy$;
|
|
662
1835
|
exports.DeletePolicyCommand = DeletePolicyCommand;
|
|
1836
|
+
exports.DeletePolicyRequest$ = DeletePolicyRequest$;
|
|
1837
|
+
exports.DescribeCertificateAuthority$ = DescribeCertificateAuthority$;
|
|
1838
|
+
exports.DescribeCertificateAuthorityAuditReport$ = DescribeCertificateAuthorityAuditReport$;
|
|
663
1839
|
exports.DescribeCertificateAuthorityAuditReportCommand = DescribeCertificateAuthorityAuditReportCommand;
|
|
1840
|
+
exports.DescribeCertificateAuthorityAuditReportRequest$ = DescribeCertificateAuthorityAuditReportRequest$;
|
|
1841
|
+
exports.DescribeCertificateAuthorityAuditReportResponse$ = DescribeCertificateAuthorityAuditReportResponse$;
|
|
664
1842
|
exports.DescribeCertificateAuthorityCommand = DescribeCertificateAuthorityCommand;
|
|
1843
|
+
exports.DescribeCertificateAuthorityRequest$ = DescribeCertificateAuthorityRequest$;
|
|
1844
|
+
exports.DescribeCertificateAuthorityResponse$ = DescribeCertificateAuthorityResponse$;
|
|
1845
|
+
exports.EdiPartyName$ = EdiPartyName$;
|
|
1846
|
+
exports.ExtendedKeyUsage$ = ExtendedKeyUsage$;
|
|
665
1847
|
exports.ExtendedKeyUsageType = ExtendedKeyUsageType;
|
|
1848
|
+
exports.Extensions$ = Extensions$;
|
|
666
1849
|
exports.FailureReason = FailureReason;
|
|
1850
|
+
exports.GeneralName$ = GeneralName$;
|
|
1851
|
+
exports.GetCertificate$ = GetCertificate$;
|
|
1852
|
+
exports.GetCertificateAuthorityCertificate$ = GetCertificateAuthorityCertificate$;
|
|
667
1853
|
exports.GetCertificateAuthorityCertificateCommand = GetCertificateAuthorityCertificateCommand;
|
|
1854
|
+
exports.GetCertificateAuthorityCertificateRequest$ = GetCertificateAuthorityCertificateRequest$;
|
|
1855
|
+
exports.GetCertificateAuthorityCertificateResponse$ = GetCertificateAuthorityCertificateResponse$;
|
|
1856
|
+
exports.GetCertificateAuthorityCsr$ = GetCertificateAuthorityCsr$;
|
|
668
1857
|
exports.GetCertificateAuthorityCsrCommand = GetCertificateAuthorityCsrCommand;
|
|
1858
|
+
exports.GetCertificateAuthorityCsrRequest$ = GetCertificateAuthorityCsrRequest$;
|
|
1859
|
+
exports.GetCertificateAuthorityCsrResponse$ = GetCertificateAuthorityCsrResponse$;
|
|
669
1860
|
exports.GetCertificateCommand = GetCertificateCommand;
|
|
1861
|
+
exports.GetCertificateRequest$ = GetCertificateRequest$;
|
|
1862
|
+
exports.GetCertificateResponse$ = GetCertificateResponse$;
|
|
1863
|
+
exports.GetPolicy$ = GetPolicy$;
|
|
670
1864
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
1865
|
+
exports.GetPolicyRequest$ = GetPolicyRequest$;
|
|
1866
|
+
exports.GetPolicyResponse$ = GetPolicyResponse$;
|
|
1867
|
+
exports.ImportCertificateAuthorityCertificate$ = ImportCertificateAuthorityCertificate$;
|
|
671
1868
|
exports.ImportCertificateAuthorityCertificateCommand = ImportCertificateAuthorityCertificateCommand;
|
|
1869
|
+
exports.ImportCertificateAuthorityCertificateRequest$ = ImportCertificateAuthorityCertificateRequest$;
|
|
1870
|
+
exports.InvalidArgsException = InvalidArgsException;
|
|
1871
|
+
exports.InvalidArgsException$ = InvalidArgsException$;
|
|
1872
|
+
exports.InvalidArnException = InvalidArnException;
|
|
1873
|
+
exports.InvalidArnException$ = InvalidArnException$;
|
|
1874
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
1875
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
1876
|
+
exports.InvalidPolicyException = InvalidPolicyException;
|
|
1877
|
+
exports.InvalidPolicyException$ = InvalidPolicyException$;
|
|
1878
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
1879
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1880
|
+
exports.InvalidStateException = InvalidStateException;
|
|
1881
|
+
exports.InvalidStateException$ = InvalidStateException$;
|
|
1882
|
+
exports.InvalidTagException = InvalidTagException;
|
|
1883
|
+
exports.InvalidTagException$ = InvalidTagException$;
|
|
1884
|
+
exports.IssueCertificate$ = IssueCertificate$;
|
|
672
1885
|
exports.IssueCertificateCommand = IssueCertificateCommand;
|
|
1886
|
+
exports.IssueCertificateRequest$ = IssueCertificateRequest$;
|
|
1887
|
+
exports.IssueCertificateResponse$ = IssueCertificateResponse$;
|
|
673
1888
|
exports.KeyAlgorithm = KeyAlgorithm;
|
|
674
1889
|
exports.KeyStorageSecurityStandard = KeyStorageSecurityStandard;
|
|
1890
|
+
exports.KeyUsage$ = KeyUsage$;
|
|
1891
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1892
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1893
|
+
exports.ListCertificateAuthorities$ = ListCertificateAuthorities$;
|
|
675
1894
|
exports.ListCertificateAuthoritiesCommand = ListCertificateAuthoritiesCommand;
|
|
1895
|
+
exports.ListCertificateAuthoritiesRequest$ = ListCertificateAuthoritiesRequest$;
|
|
1896
|
+
exports.ListCertificateAuthoritiesResponse$ = ListCertificateAuthoritiesResponse$;
|
|
1897
|
+
exports.ListPermissions$ = ListPermissions$;
|
|
676
1898
|
exports.ListPermissionsCommand = ListPermissionsCommand;
|
|
1899
|
+
exports.ListPermissionsRequest$ = ListPermissionsRequest$;
|
|
1900
|
+
exports.ListPermissionsResponse$ = ListPermissionsResponse$;
|
|
1901
|
+
exports.ListTags$ = ListTags$;
|
|
677
1902
|
exports.ListTagsCommand = ListTagsCommand;
|
|
1903
|
+
exports.ListTagsRequest$ = ListTagsRequest$;
|
|
1904
|
+
exports.ListTagsResponse$ = ListTagsResponse$;
|
|
1905
|
+
exports.LockoutPreventedException = LockoutPreventedException;
|
|
1906
|
+
exports.LockoutPreventedException$ = LockoutPreventedException$;
|
|
1907
|
+
exports.MalformedCSRException = MalformedCSRException;
|
|
1908
|
+
exports.MalformedCSRException$ = MalformedCSRException$;
|
|
1909
|
+
exports.MalformedCertificateException = MalformedCertificateException;
|
|
1910
|
+
exports.MalformedCertificateException$ = MalformedCertificateException$;
|
|
1911
|
+
exports.OcspConfiguration$ = OcspConfiguration$;
|
|
1912
|
+
exports.OtherName$ = OtherName$;
|
|
1913
|
+
exports.Permission$ = Permission$;
|
|
1914
|
+
exports.PermissionAlreadyExistsException = PermissionAlreadyExistsException;
|
|
1915
|
+
exports.PermissionAlreadyExistsException$ = PermissionAlreadyExistsException$;
|
|
1916
|
+
exports.PolicyInformation$ = PolicyInformation$;
|
|
678
1917
|
exports.PolicyQualifierId = PolicyQualifierId;
|
|
1918
|
+
exports.PolicyQualifierInfo$ = PolicyQualifierInfo$;
|
|
1919
|
+
exports.PutPolicy$ = PutPolicy$;
|
|
679
1920
|
exports.PutPolicyCommand = PutPolicyCommand;
|
|
1921
|
+
exports.PutPolicyRequest$ = PutPolicyRequest$;
|
|
1922
|
+
exports.Qualifier$ = Qualifier$;
|
|
1923
|
+
exports.RequestAlreadyProcessedException = RequestAlreadyProcessedException;
|
|
1924
|
+
exports.RequestAlreadyProcessedException$ = RequestAlreadyProcessedException$;
|
|
1925
|
+
exports.RequestFailedException = RequestFailedException;
|
|
1926
|
+
exports.RequestFailedException$ = RequestFailedException$;
|
|
1927
|
+
exports.RequestInProgressException = RequestInProgressException;
|
|
1928
|
+
exports.RequestInProgressException$ = RequestInProgressException$;
|
|
1929
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1930
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
680
1931
|
exports.ResourceOwner = ResourceOwner;
|
|
1932
|
+
exports.RestoreCertificateAuthority$ = RestoreCertificateAuthority$;
|
|
681
1933
|
exports.RestoreCertificateAuthorityCommand = RestoreCertificateAuthorityCommand;
|
|
1934
|
+
exports.RestoreCertificateAuthorityRequest$ = RestoreCertificateAuthorityRequest$;
|
|
1935
|
+
exports.RevocationConfiguration$ = RevocationConfiguration$;
|
|
682
1936
|
exports.RevocationReason = RevocationReason;
|
|
1937
|
+
exports.RevokeCertificate$ = RevokeCertificate$;
|
|
683
1938
|
exports.RevokeCertificateCommand = RevokeCertificateCommand;
|
|
1939
|
+
exports.RevokeCertificateRequest$ = RevokeCertificateRequest$;
|
|
684
1940
|
exports.S3ObjectAcl = S3ObjectAcl;
|
|
685
1941
|
exports.SigningAlgorithm = SigningAlgorithm;
|
|
1942
|
+
exports.Tag$ = Tag$;
|
|
1943
|
+
exports.TagCertificateAuthority$ = TagCertificateAuthority$;
|
|
686
1944
|
exports.TagCertificateAuthorityCommand = TagCertificateAuthorityCommand;
|
|
1945
|
+
exports.TagCertificateAuthorityRequest$ = TagCertificateAuthorityRequest$;
|
|
1946
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1947
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1948
|
+
exports.UntagCertificateAuthority$ = UntagCertificateAuthority$;
|
|
687
1949
|
exports.UntagCertificateAuthorityCommand = UntagCertificateAuthorityCommand;
|
|
1950
|
+
exports.UntagCertificateAuthorityRequest$ = UntagCertificateAuthorityRequest$;
|
|
1951
|
+
exports.UpdateCertificateAuthority$ = UpdateCertificateAuthority$;
|
|
688
1952
|
exports.UpdateCertificateAuthorityCommand = UpdateCertificateAuthorityCommand;
|
|
1953
|
+
exports.UpdateCertificateAuthorityRequest$ = UpdateCertificateAuthorityRequest$;
|
|
1954
|
+
exports.Validity$ = Validity$;
|
|
689
1955
|
exports.ValidityPeriodType = ValidityPeriodType;
|
|
1956
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
690
1957
|
exports.paginateListCertificateAuthorities = paginateListCertificateAuthorities;
|
|
691
1958
|
exports.paginateListPermissions = paginateListPermissions;
|
|
692
1959
|
exports.paginateListTags = paginateListTags;
|