@aws-sdk/client-acm 3.1076.0 → 3.1077.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/README.md +161 -7
- package/dist-cjs/index.js +1406 -152
- package/dist-es/ACM.js +60 -0
- package/dist-es/commands/AddTagsToCertificateCommand.js +4 -1
- package/dist-es/commands/CreateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/CreateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteCertificateCommand.js +4 -1
- package/dist-es/commands/DescribeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DescribeCertificateCommand.js +4 -1
- package/dist-es/commands/ExportCertificateCommand.js +4 -1
- package/dist-es/commands/GetAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +19 -0
- package/dist-es/commands/GetCertificateCommand.js +4 -1
- package/dist-es/commands/ImportCertificateCommand.js +4 -1
- package/dist-es/commands/ListAcmeAccountsCommand.js +19 -0
- package/dist-es/commands/ListAcmeDomainValidationsCommand.js +19 -0
- package/dist-es/commands/ListAcmeEndpointsCommand.js +19 -0
- package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +19 -0
- package/dist-es/commands/ListCertificatesCommand.js +4 -1
- package/dist-es/commands/ListTagsForCertificateCommand.js +4 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +19 -0
- package/dist-es/commands/PutAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +4 -1
- package/dist-es/commands/RenewCertificateCommand.js +4 -1
- package/dist-es/commands/RequestCertificateCommand.js +4 -1
- package/dist-es/commands/ResendValidationEmailCommand.js +4 -1
- package/dist-es/commands/RevokeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/RevokeCertificateCommand.js +4 -1
- package/dist-es/commands/SearchCertificatesCommand.js +4 -1
- package/dist-es/commands/TagResourceCommand.js +19 -0
- package/dist-es/commands/UntagResourceCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +4 -1
- package/dist-es/commands/index.js +22 -0
- package/dist-es/endpoint/EndpointParameters.js +4 -1
- package/dist-es/endpoint/bdd.js +27 -35
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/enums.js +60 -0
- package/dist-es/models/errors.js +37 -12
- package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +512 -39
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
- package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
- package/dist-types/ACM.d.ts +208 -0
- package/dist-types/ACMClient.d.ts +24 -2
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +4 -1
- package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +118 -0
- package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +86 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -1
- package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +101 -0
- package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +118 -0
- package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +113 -0
- package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +100 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -0
- package/dist-types/commands/ExportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +92 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ListAcmeAccountsCommand.d.ts +105 -0
- package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +123 -0
- package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +114 -0
- package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +105 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +5 -1
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +4 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -1
- package/dist-types/commands/RenewCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -0
- package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +93 -0
- package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +92 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +3 -0
- package/dist-types/commands/SearchCertificatesCommand.d.ts +10 -1
- package/dist-types/commands/TagResourceCommand.d.ts +89 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +102 -0
- package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +101 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/models/enums.d.ts +148 -0
- package/dist-types/models/errors.d.ts +37 -12
- package/dist-types/models/models_0.d.ts +1284 -67
- package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +5 -1
- package/dist-types/runtimeConfig.d.ts +5 -1
- package/dist-types/runtimeConfig.native.d.ts +5 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/ACM.d.ts +452 -0
- package/dist-types/ts3.4/ACMClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/ts3.4/models/enums.d.ts +80 -0
- package/dist-types/ts3.4/models/errors.d.ts +22 -7
- package/dist-types/ts3.4/models/models_0.d.ts +395 -5
- package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
- package/package.json +6 -8
package/dist-cjs/index.js
CHANGED
|
@@ -10,9 +10,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
|
|
|
10
10
|
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
11
|
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
12
|
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
-
const { toUtf8, fromUtf8, toBase64, fromBase64,
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
14
|
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
15
|
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
16
17
|
|
|
17
18
|
const defaultACMHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
19
|
return {
|
|
@@ -55,74 +56,68 @@ const resolveHttpAuthSchemeConfig = (config) => {
|
|
|
55
56
|
|
|
56
57
|
const resolveClientEndpointParameters = (options) => {
|
|
57
58
|
return Object.assign(options, {
|
|
58
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
59
59
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
60
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
60
61
|
defaultSigningName: "acm",
|
|
62
|
+
clientContextParams: options.clientContextParams ?? {},
|
|
61
63
|
});
|
|
62
64
|
};
|
|
63
65
|
const commonParams = {
|
|
66
|
+
ServiceType: { type: "clientContextParams", name: "serviceType" },
|
|
64
67
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
65
68
|
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
66
69
|
Region: { type: "builtInParams", name: "region" },
|
|
67
70
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
68
71
|
};
|
|
69
72
|
|
|
70
|
-
var version = "3.
|
|
73
|
+
var version = "3.1076.0";
|
|
71
74
|
var packageInfo = {
|
|
72
75
|
version: version};
|
|
73
76
|
|
|
74
|
-
const
|
|
75
|
-
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const a = "PartitionResult", b = "stringEquals", c = "booleanEquals", d = { "fn": "getAttr", "argv": [{ "ref": a }, "name"] }, e = {};
|
|
76
78
|
const _data = {
|
|
77
79
|
conditions: [
|
|
78
|
-
[
|
|
79
|
-
[
|
|
80
|
-
["
|
|
81
|
-
[
|
|
82
|
-
[
|
|
83
|
-
[
|
|
84
|
-
[
|
|
85
|
-
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
80
|
+
["isSet", [{ ref: "Endpoint" }]],
|
|
81
|
+
["aws.partition", [{ ref: "Region" }], a],
|
|
82
|
+
[b, [{ ref: "ServiceType" }, "ACM-ACME"]],
|
|
83
|
+
[b, [d, "aws"]],
|
|
84
|
+
[c, [{ ref: "UseFIPS" }, true]],
|
|
85
|
+
[c, [{ ref: "UseDualStack" }, true]],
|
|
86
|
+
[b, [d, "aws-us-gov"]]
|
|
86
87
|
],
|
|
87
88
|
results: [
|
|
88
|
-
[
|
|
89
|
-
[
|
|
90
|
-
[
|
|
91
|
-
[
|
|
92
|
-
[
|
|
93
|
-
[
|
|
94
|
-
["https://acm.{Region}.amazonaws.com",
|
|
95
|
-
["https://acm-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
96
|
-
[
|
|
97
|
-
["https://acm.{Region}.{PartitionResult#
|
|
98
|
-
[
|
|
99
|
-
["https://acm.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
100
|
-
[a, "Invalid Configuration: Missing Region"]
|
|
89
|
+
[-1],
|
|
90
|
+
["{Endpoint}", e],
|
|
91
|
+
[-1, "FIPS endpoints are not available for ACME operations"],
|
|
92
|
+
["https://acm-acme.{Region}.{PartitionResult#dualStackDnsSuffix}", e],
|
|
93
|
+
[-1, "ACME operations are only available in commercial AWS partitions"],
|
|
94
|
+
["https://acm-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", e],
|
|
95
|
+
["https://acm.{Region}.amazonaws.com", e],
|
|
96
|
+
["https://acm-fips.{Region}.{PartitionResult#dnsSuffix}", e],
|
|
97
|
+
["https://acm.{Region}.{PartitionResult#dualStackDnsSuffix}", e],
|
|
98
|
+
["https://acm.{Region}.{PartitionResult#dnsSuffix}", e],
|
|
99
|
+
[-1, "Region must be set to resolve an endpoint."]
|
|
101
100
|
]
|
|
102
101
|
};
|
|
103
102
|
const root = 2;
|
|
104
103
|
const r = 100_000_000;
|
|
105
104
|
const nodes = new Int32Array([
|
|
106
105
|
-1, 1, -1,
|
|
107
|
-
0,
|
|
108
|
-
1, 4, r +
|
|
109
|
-
2,
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
5, r +
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
7, r + 6, r + 7,
|
|
116
|
-
5, 12, r + 5,
|
|
117
|
-
6, r + 4, r + 5,
|
|
118
|
-
3, r + 1, 14,
|
|
106
|
+
0, r + 1, 3,
|
|
107
|
+
1, 4, r + 10,
|
|
108
|
+
2, 9, 5,
|
|
109
|
+
4, 7, 6,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
5, r + 5, 8,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
3, 10, r + 4,
|
|
119
114
|
4, r + 2, r + 3,
|
|
120
115
|
]);
|
|
121
116
|
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
122
117
|
|
|
123
118
|
const cache = new EndpointCache({
|
|
124
119
|
size: 50,
|
|
125
|
-
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
120
|
+
params: ["Endpoint", "Region", "ServiceType", "UseDualStack", "UseFIPS"],
|
|
126
121
|
});
|
|
127
122
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
128
123
|
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
@@ -239,6 +234,18 @@ class TooManyTagsException extends ACMServiceException {
|
|
|
239
234
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
240
235
|
}
|
|
241
236
|
}
|
|
237
|
+
class ValidationException extends ACMServiceException {
|
|
238
|
+
name = "ValidationException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
constructor(opts) {
|
|
241
|
+
super({
|
|
242
|
+
name: "ValidationException",
|
|
243
|
+
$fault: "client",
|
|
244
|
+
...opts,
|
|
245
|
+
});
|
|
246
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
247
|
+
}
|
|
248
|
+
}
|
|
242
249
|
class ConflictException extends ACMServiceException {
|
|
243
250
|
name = "ConflictException";
|
|
244
251
|
$fault = "client";
|
|
@@ -251,6 +258,31 @@ class ConflictException extends ACMServiceException {
|
|
|
251
258
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
252
259
|
}
|
|
253
260
|
}
|
|
261
|
+
class InternalServerException extends ACMServiceException {
|
|
262
|
+
name = "InternalServerException";
|
|
263
|
+
$fault = "server";
|
|
264
|
+
$retryable = {};
|
|
265
|
+
constructor(opts) {
|
|
266
|
+
super({
|
|
267
|
+
name: "InternalServerException",
|
|
268
|
+
$fault: "server",
|
|
269
|
+
...opts,
|
|
270
|
+
});
|
|
271
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
class ServiceQuotaExceededException extends ACMServiceException {
|
|
275
|
+
name = "ServiceQuotaExceededException";
|
|
276
|
+
$fault = "client";
|
|
277
|
+
constructor(opts) {
|
|
278
|
+
super({
|
|
279
|
+
name: "ServiceQuotaExceededException",
|
|
280
|
+
$fault: "client",
|
|
281
|
+
...opts,
|
|
282
|
+
});
|
|
283
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
284
|
+
}
|
|
285
|
+
}
|
|
254
286
|
class ResourceInUseException extends ACMServiceException {
|
|
255
287
|
name = "ResourceInUseException";
|
|
256
288
|
$fault = "client";
|
|
@@ -299,18 +331,6 @@ class InvalidArgsException extends ACMServiceException {
|
|
|
299
331
|
Object.setPrototypeOf(this, InvalidArgsException.prototype);
|
|
300
332
|
}
|
|
301
333
|
}
|
|
302
|
-
class ValidationException extends ACMServiceException {
|
|
303
|
-
name = "ValidationException";
|
|
304
|
-
$fault = "client";
|
|
305
|
-
constructor(opts) {
|
|
306
|
-
super({
|
|
307
|
-
name: "ValidationException",
|
|
308
|
-
$fault: "client",
|
|
309
|
-
...opts,
|
|
310
|
-
});
|
|
311
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
334
|
class InvalidDomainValidationOptionsException extends ACMServiceException {
|
|
315
335
|
name = "InvalidDomainValidationOptionsException";
|
|
316
336
|
$fault = "client";
|
|
@@ -337,16 +357,48 @@ class InvalidStateException extends ACMServiceException {
|
|
|
337
357
|
}
|
|
338
358
|
|
|
339
359
|
const _A = "And";
|
|
360
|
+
const _AA = "AcmeAccount";
|
|
361
|
+
const _AAI = "AcmeAccountId";
|
|
362
|
+
const _AAL = "AcmeAccountList";
|
|
363
|
+
const _AAS = "AcmeAccountSummary";
|
|
364
|
+
const _AAc = "AcmeAccounts";
|
|
365
|
+
const _AB = "AuthorizationBehavior";
|
|
340
366
|
const _ACM = "AcmCertificateMetadata";
|
|
341
367
|
const _ACMF = "AcmCertificateMetadataFilter";
|
|
342
368
|
const _ADE = "AccessDeniedException";
|
|
369
|
+
const _ADV = "AcmeDomainValidation";
|
|
370
|
+
const _ADVA = "AcmeDomainValidationArn";
|
|
371
|
+
const _ADVL = "AcmeDomainValidationList";
|
|
372
|
+
const _ADVS = "AcmeDomainValidationSummary";
|
|
373
|
+
const _ADVc = "AcmeDomainValidations";
|
|
374
|
+
const _AE = "AcmeEndpoint";
|
|
375
|
+
const _AEA = "AcmeEndpointArn";
|
|
376
|
+
const _AEAB = "AcmeExternalAccountBinding";
|
|
377
|
+
const _AEABA = "AcmeExternalAccountBindingArn";
|
|
378
|
+
const _AEABL = "AcmeExternalAccountBindingList";
|
|
379
|
+
const _AEABS = "AcmeExternalAccountBindingSummary";
|
|
380
|
+
const _AEL = "AcmeEndpointList";
|
|
381
|
+
const _AES = "AcmeEndpointSummary";
|
|
382
|
+
const _AEc = "AcmeEndpoints";
|
|
383
|
+
const _AKA = "AllowedKeyAlgorithms";
|
|
343
384
|
const _ATTC = "AddTagsToCertificate";
|
|
344
385
|
const _ATTCR = "AddTagsToCertificateRequest";
|
|
345
|
-
const
|
|
386
|
+
const _AU = "AccountUrl";
|
|
387
|
+
const _C = "Contacts";
|
|
346
388
|
const _CA = "CreatedAt";
|
|
347
389
|
const _CAA = "CertificateAuthorityArn";
|
|
390
|
+
const _CADV = "CreateAcmeDomainValidation";
|
|
391
|
+
const _CADVR = "CreateAcmeDomainValidationRequest";
|
|
392
|
+
const _CADVRr = "CreateAcmeDomainValidationResponse";
|
|
393
|
+
const _CAE = "CreateAcmeEndpoint";
|
|
394
|
+
const _CAEAB = "CreateAcmeExternalAccountBinding";
|
|
395
|
+
const _CAEABR = "CreateAcmeExternalAccountBindingRequest";
|
|
396
|
+
const _CAEABRr = "CreateAcmeExternalAccountBindingResponse";
|
|
397
|
+
const _CAER = "CreateAcmeEndpointRequest";
|
|
398
|
+
const _CAERr = "CreateAcmeEndpointResponse";
|
|
348
399
|
const _CAL = "CustomAttributeList";
|
|
349
|
-
const _CAe = "
|
|
400
|
+
const _CAe = "CertificateAuthority";
|
|
401
|
+
const _CAer = "CertificateArn";
|
|
350
402
|
const _CAu = "CustomAttribute";
|
|
351
403
|
const _CAus = "CustomAttributes";
|
|
352
404
|
const _CC = "CertificateChain";
|
|
@@ -355,6 +407,9 @@ const _CE = "ConflictException";
|
|
|
355
407
|
const _CF = "CertificateFilter";
|
|
356
408
|
const _CFS = "CertificateFilterStatement";
|
|
357
409
|
const _CFSL = "CertificateFilterStatementList";
|
|
410
|
+
const _CKPO = "CertificateKeyPairOrigin";
|
|
411
|
+
const _CKPOe = "CertificateKeyPairOrigins";
|
|
412
|
+
const _CL = "ContactList";
|
|
358
413
|
const _CM = "CertificateMetadata";
|
|
359
414
|
const _CN = "CommonName";
|
|
360
415
|
const _CNF = "CommonNameFilter";
|
|
@@ -365,9 +420,30 @@ const _CSL = "CertificateSummaryList";
|
|
|
365
420
|
const _CSR = "CertificateSearchResult";
|
|
366
421
|
const _CSRL = "CertificateSearchResultList";
|
|
367
422
|
const _CSe = "CertificateStatuses";
|
|
423
|
+
const _CT = "CertificateTags";
|
|
368
424
|
const _CTLP = "CertificateTransparencyLoggingPreference";
|
|
369
|
-
const
|
|
425
|
+
const _Ce = "Certificate";
|
|
426
|
+
const _Co = "Contact";
|
|
427
|
+
const _Cou = "Country";
|
|
370
428
|
const _D = "Domain";
|
|
429
|
+
const _DAA = "DescribeAcmeAccount";
|
|
430
|
+
const _DAAR = "DescribeAcmeAccountRequest";
|
|
431
|
+
const _DAARe = "DescribeAcmeAccountResponse";
|
|
432
|
+
const _DADV = "DeleteAcmeDomainValidation";
|
|
433
|
+
const _DADVR = "DeleteAcmeDomainValidationRequest";
|
|
434
|
+
const _DADVRe = "DescribeAcmeDomainValidationRequest";
|
|
435
|
+
const _DADVRes = "DescribeAcmeDomainValidationResponse";
|
|
436
|
+
const _DADVe = "DescribeAcmeDomainValidation";
|
|
437
|
+
const _DAE = "DeleteAcmeEndpoint";
|
|
438
|
+
const _DAEAB = "DeleteAcmeExternalAccountBinding";
|
|
439
|
+
const _DAEABR = "DeleteAcmeExternalAccountBindingRequest";
|
|
440
|
+
const _DAEABRe = "DescribeAcmeExternalAccountBindingRequest";
|
|
441
|
+
const _DAEABRes = "DescribeAcmeExternalAccountBindingResponse";
|
|
442
|
+
const _DAEABe = "DescribeAcmeExternalAccountBinding";
|
|
443
|
+
const _DAER = "DeleteAcmeEndpointRequest";
|
|
444
|
+
const _DAERe = "DescribeAcmeEndpointRequest";
|
|
445
|
+
const _DAERes = "DescribeAcmeEndpointResponse";
|
|
446
|
+
const _DAEe = "DescribeAcmeEndpoint";
|
|
371
447
|
const _DBE = "DaysBeforeExpiry";
|
|
372
448
|
const _DC = "DomainComponents";
|
|
373
449
|
const _DCR = "DeleteCertificateRequest";
|
|
@@ -381,29 +457,43 @@ const _DNQ = "DistinguishedNameQualifier";
|
|
|
381
457
|
const _DNi = "DistinguishedName";
|
|
382
458
|
const _DNir = "DirectoryName";
|
|
383
459
|
const _DNn = "DnsName";
|
|
460
|
+
const _DP = "DnsPrevalidation";
|
|
461
|
+
const _DPD = "DnsPrevalidationDetails";
|
|
462
|
+
const _DPO = "DnsPrevalidationOptions";
|
|
463
|
+
const _DS = "DomainScope";
|
|
384
464
|
const _DV = "DomainValidation";
|
|
385
465
|
const _DVL = "DomainValidationList";
|
|
386
466
|
const _DVO = "DomainValidationOptions";
|
|
387
467
|
const _DVOL = "DomainValidationOptionList";
|
|
388
468
|
const _DVOo = "DomainValidationOption";
|
|
389
469
|
const _E = "Exported";
|
|
470
|
+
const _EA = "ExpiresAt";
|
|
471
|
+
const _EAB = "ExternalAccountBinding";
|
|
472
|
+
const _EABx = "ExternalAccountBindings";
|
|
390
473
|
const _EC = "ExportCertificate";
|
|
391
474
|
const _ECR = "ExportCertificateRequest";
|
|
392
475
|
const _ECRx = "ExportCertificateResponse";
|
|
476
|
+
const _ED = "ExactDomain";
|
|
393
477
|
const _EE = "ExpiryEvents";
|
|
394
478
|
const _EEC = "ExpiryEventsConfiguration";
|
|
395
479
|
const _EKU = "ExtendedKeyUsages";
|
|
396
480
|
const _EKUL = "ExtendedKeyUsageList";
|
|
397
481
|
const _EKUx = "ExtendedKeyUsage";
|
|
398
482
|
const _EO = "ExportOption";
|
|
483
|
+
const _EU = "EndpointUrl";
|
|
399
484
|
const _En = "End";
|
|
400
485
|
const _Ex = "Export";
|
|
486
|
+
const _Exp = "Expiration";
|
|
401
487
|
const _F = "Filters";
|
|
488
|
+
const _FD = "FailureDetails";
|
|
402
489
|
const _FR = "FailureReason";
|
|
403
490
|
const _FS = "FilterStatement";
|
|
404
491
|
const _Fi = "Filter";
|
|
405
492
|
const _GAC = "GetAccountConfiguration";
|
|
406
493
|
const _GACR = "GetAccountConfigurationResponse";
|
|
494
|
+
const _GAEABC = "GetAcmeExternalAccountBindingCredentials";
|
|
495
|
+
const _GAEABCR = "GetAcmeExternalAccountBindingCredentialsRequest";
|
|
496
|
+
const _GAEABCRe = "GetAcmeExternalAccountBindingCredentialsResponse";
|
|
407
497
|
const _GC = "GetCertificate";
|
|
408
498
|
const _GCR = "GetCertificateRequest";
|
|
409
499
|
const _GCRe = "GetCertificateResponse";
|
|
@@ -413,6 +503,7 @@ const _GNe = "GeneralName";
|
|
|
413
503
|
const _GQ = "GenerationQualifier";
|
|
414
504
|
const _HASAN = "HasAdditionalSubjectAlternativeNames";
|
|
415
505
|
const _HR = "HttpRedirect";
|
|
506
|
+
const _HZI = "HostedZoneId";
|
|
416
507
|
const _I = "Issuer";
|
|
417
508
|
const _IA = "ImportedAt";
|
|
418
509
|
const _IAE = "InvalidArgsException";
|
|
@@ -424,7 +515,8 @@ const _ICR = "ImportCertificateRequest";
|
|
|
424
515
|
const _ICRm = "ImportCertificateResponse";
|
|
425
516
|
const _IDVOE = "InvalidDomainValidationOptionsException";
|
|
426
517
|
const _IPE = "InvalidParameterException";
|
|
427
|
-
const _ISE = "
|
|
518
|
+
const _ISE = "InternalServerException";
|
|
519
|
+
const _ISEn = "InvalidStateException";
|
|
428
520
|
const _IT = "IdempotencyToken";
|
|
429
521
|
const _ITE = "InvalidTagException";
|
|
430
522
|
const _IU = "InUse";
|
|
@@ -433,10 +525,23 @@ const _In = "Initials";
|
|
|
433
525
|
const _Inc = "Includes";
|
|
434
526
|
const _K = "Key";
|
|
435
527
|
const _KA = "KeyAlgorithm";
|
|
528
|
+
const _KI = "KeyId";
|
|
436
529
|
const _KU = "KeyUsages";
|
|
437
530
|
const _KUL = "KeyUsageList";
|
|
438
531
|
const _KUe = "KeyUsage";
|
|
439
532
|
const _L = "Locality";
|
|
533
|
+
const _LAA = "ListAcmeAccounts";
|
|
534
|
+
const _LAAR = "ListAcmeAccountsRequest";
|
|
535
|
+
const _LAARi = "ListAcmeAccountsResponse";
|
|
536
|
+
const _LADV = "ListAcmeDomainValidations";
|
|
537
|
+
const _LADVR = "ListAcmeDomainValidationsRequest";
|
|
538
|
+
const _LADVRi = "ListAcmeDomainValidationsResponse";
|
|
539
|
+
const _LAE = "ListAcmeEndpoints";
|
|
540
|
+
const _LAEAB = "ListAcmeExternalAccountBindings";
|
|
541
|
+
const _LAEABR = "ListAcmeExternalAccountBindingsRequest";
|
|
542
|
+
const _LAEABRi = "ListAcmeExternalAccountBindingsResponse";
|
|
543
|
+
const _LAER = "ListAcmeEndpointsRequest";
|
|
544
|
+
const _LAERi = "ListAcmeEndpointsResponse";
|
|
440
545
|
const _LC = "ListCertificates";
|
|
441
546
|
const _LCR = "ListCertificatesRequest";
|
|
442
547
|
const _LCRi = "ListCertificatesResponse";
|
|
@@ -444,9 +549,14 @@ const _LEE = "LimitExceededException";
|
|
|
444
549
|
const _LTFC = "ListTagsForCertificate";
|
|
445
550
|
const _LTFCR = "ListTagsForCertificateRequest";
|
|
446
551
|
const _LTFCRi = "ListTagsForCertificateResponse";
|
|
552
|
+
const _LTFR = "ListTagsForResource";
|
|
553
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
554
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
555
|
+
const _LUA = "LastUsedAt";
|
|
447
556
|
const _M = "Message";
|
|
448
557
|
const _MB = "ManagedBy";
|
|
449
558
|
const _MI = "MaxItems";
|
|
559
|
+
const _MK = "MacKey";
|
|
450
560
|
const _MR = "MaxResults";
|
|
451
561
|
const _N = "Name";
|
|
452
562
|
const _NA = "NotAfter";
|
|
@@ -464,11 +574,22 @@ const _P = "Pseudonym";
|
|
|
464
574
|
const _PAC = "PutAccountConfiguration";
|
|
465
575
|
const _PACR = "PutAccountConfigurationRequest";
|
|
466
576
|
const _PB = "PassphraseBlob";
|
|
577
|
+
const _PCA = "PublicCertificateAuthority";
|
|
578
|
+
const _PD = "PrevalidationDetails";
|
|
467
579
|
const _PK = "PrivateKey";
|
|
468
580
|
const _PKB = "PrivateKeyBlob";
|
|
581
|
+
const _PKT = "PublicKeyThumbprint";
|
|
582
|
+
const _PO = "PrevalidationOptions";
|
|
583
|
+
const _PT = "PrevalidationType";
|
|
469
584
|
const _Pa = "Passphrase";
|
|
470
|
-
const _R = "
|
|
585
|
+
const _R = "Reason";
|
|
471
586
|
const _RA = "RevokedAt";
|
|
587
|
+
const _RAA = "RevokeAcmeAccount";
|
|
588
|
+
const _RAAR = "RevokeAcmeAccountRequest";
|
|
589
|
+
const _RAEAB = "RevokeAcmeExternalAccountBinding";
|
|
590
|
+
const _RAEABR = "RevokeAcmeExternalAccountBindingRequest";
|
|
591
|
+
const _RAe = "ResourceArn";
|
|
592
|
+
const _RAo = "RoleArn";
|
|
472
593
|
const _RC = "RenewCertificate";
|
|
473
594
|
const _RCR = "RenewCertificateRequest";
|
|
474
595
|
const _RCRe = "RequestCertificateRequest";
|
|
@@ -494,6 +615,7 @@ const _RTFC = "RemoveTagsFromCertificate";
|
|
|
494
615
|
const _RTFCR = "RemoveTagsFromCertificateRequest";
|
|
495
616
|
const _RVE = "ResendValidationEmail";
|
|
496
617
|
const _RVER = "ResendValidationEmailRequest";
|
|
618
|
+
const _Re = "Results";
|
|
497
619
|
const _S = "Status";
|
|
498
620
|
const _SA = "SignatureAlgorithm";
|
|
499
621
|
const _SAN = "SubjectAlternativeNames";
|
|
@@ -507,32 +629,44 @@ const _SCRe = "SearchCertificatesResponse";
|
|
|
507
629
|
const _SF = "SubjectFilter";
|
|
508
630
|
const _SN = "SerialNumber";
|
|
509
631
|
const _SO = "SortOrder";
|
|
632
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
510
633
|
const _Se = "Serial";
|
|
511
634
|
const _St = "State";
|
|
512
635
|
const _Sta = "Start";
|
|
513
636
|
const _Su = "Subject";
|
|
637
|
+
const _Sub = "Subdomains";
|
|
514
638
|
const _Sur = "Surname";
|
|
515
639
|
const _T = "Type";
|
|
516
640
|
const _TE = "ThrottlingException";
|
|
641
|
+
const _TK = "TagKeys";
|
|
517
642
|
const _TL = "TagList";
|
|
518
643
|
const _TMTE = "TooManyTagsException";
|
|
519
644
|
const _TPE = "TagPolicyException";
|
|
520
645
|
const _TR = "ThrottlingReason";
|
|
521
646
|
const _TRL = "ThrottlingReasonList";
|
|
647
|
+
const _TRR = "TagResourceRequest";
|
|
648
|
+
const _TRa = "TagResource";
|
|
522
649
|
const _TRi = "TimestampRange";
|
|
523
650
|
const _Ta = "Tags";
|
|
524
651
|
const _Tag = "Tag";
|
|
525
652
|
const _Ti = "Title";
|
|
526
653
|
const _UA = "UpdatedAt";
|
|
654
|
+
const _UADV = "UpdateAcmeDomainValidation";
|
|
655
|
+
const _UADVR = "UpdateAcmeDomainValidationRequest";
|
|
656
|
+
const _UAE = "UpdateAcmeEndpoint";
|
|
657
|
+
const _UAER = "UpdateAcmeEndpointRequest";
|
|
527
658
|
const _UCO = "UpdateCertificateOptions";
|
|
528
659
|
const _UCOR = "UpdateCertificateOptionsRequest";
|
|
660
|
+
const _UR = "UntagResource";
|
|
529
661
|
const _URI = "UniformResourceIdentifier";
|
|
662
|
+
const _URR = "UntagResourceRequest";
|
|
530
663
|
const _V = "Value";
|
|
531
664
|
const _VD = "ValidationDomain";
|
|
532
665
|
const _VE = "ValidationException";
|
|
533
666
|
const _VEa = "ValidationEmails";
|
|
534
667
|
const _VM = "ValidationMethod";
|
|
535
668
|
const _VS = "ValidationStatus";
|
|
669
|
+
const _W = "Wildcards";
|
|
536
670
|
const _XA = "X509Attributes";
|
|
537
671
|
const _XAF = "X509AttributeFilter";
|
|
538
672
|
const _aQE = "awsQueryError";
|
|
@@ -548,6 +682,7 @@ const _mB = "managedBy";
|
|
|
548
682
|
const _r = "reason";
|
|
549
683
|
const _re = "resource";
|
|
550
684
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.acm";
|
|
685
|
+
const _se = "server";
|
|
551
686
|
const _tR = "throttlingReasons";
|
|
552
687
|
const n0 = "com.amazonaws.acm";
|
|
553
688
|
const _s_registry = TypeRegistry.for(_s);
|
|
@@ -566,6 +701,12 @@ var ConflictException$ = [-3, n0, _CE,
|
|
|
566
701
|
[0]
|
|
567
702
|
];
|
|
568
703
|
n0_registry.registerError(ConflictException$, ConflictException);
|
|
704
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
705
|
+
{ [_e]: _se },
|
|
706
|
+
[_m],
|
|
707
|
+
[0]
|
|
708
|
+
];
|
|
709
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
569
710
|
var InvalidArgsException$ = [-3, n0, _IAE,
|
|
570
711
|
{ [_e]: _c },
|
|
571
712
|
[_m],
|
|
@@ -590,7 +731,7 @@ var InvalidParameterException$ = [-3, n0, _IPE,
|
|
|
590
731
|
[0]
|
|
591
732
|
];
|
|
592
733
|
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
593
|
-
var InvalidStateException$ = [-3, n0,
|
|
734
|
+
var InvalidStateException$ = [-3, n0, _ISEn,
|
|
594
735
|
{ [_e]: _c },
|
|
595
736
|
[_m],
|
|
596
737
|
[0]
|
|
@@ -626,6 +767,12 @@ var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
|
626
767
|
[0]
|
|
627
768
|
];
|
|
628
769
|
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
770
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
771
|
+
{ [_e]: _c },
|
|
772
|
+
[_m],
|
|
773
|
+
[0]
|
|
774
|
+
];
|
|
775
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
629
776
|
var TagPolicyException$ = [-3, n0, _TPE,
|
|
630
777
|
{ [_e]: _c },
|
|
631
778
|
[_m],
|
|
@@ -654,23 +801,64 @@ const errorTypeRegistries = [
|
|
|
654
801
|
_s_registry,
|
|
655
802
|
n0_registry,
|
|
656
803
|
];
|
|
804
|
+
var MacKey = [0, n0, _MK, 8, 0];
|
|
657
805
|
var PassphraseBlob = [0, n0, _PB, 8, 21];
|
|
658
806
|
var PrivateKey = [0, n0, _PK, 8, 0];
|
|
659
807
|
var PrivateKeyBlob = [0, n0, _PKB, 8, 21];
|
|
660
808
|
var AcmCertificateMetadata$ = [3, n0, _ACM,
|
|
661
809
|
0,
|
|
662
|
-
[_CA, _E, _IA, _IU, _IAs, _RE, _RA, _S, _RS, _T, _EO, _MB, _VM],
|
|
663
|
-
[4, 2, 4, 2, 4, 0, 4, 0, 0, 0, 0, 0, 0]
|
|
810
|
+
[_CA, _E, _IA, _IU, _IAs, _RE, _RA, _S, _RS, _T, _EO, _MB, _VM, _CKPO, _AEA, _AAI],
|
|
811
|
+
[4, 2, 4, 2, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
812
|
+
];
|
|
813
|
+
var AcmeAccount$ = [3, n0, _AA,
|
|
814
|
+
0,
|
|
815
|
+
[_AU, _PKT, _S, _CA, _AEABA, _C],
|
|
816
|
+
[0, 0, 0, 4, 0, [() => ContactList, 0]]
|
|
817
|
+
];
|
|
818
|
+
var AcmeAccountSummary$ = [3, n0, _AAS,
|
|
819
|
+
0,
|
|
820
|
+
[_AU, _PKT, _S, _CA, _AEABA, _C],
|
|
821
|
+
[0, 0, 0, 4, 0, [() => ContactList, 0]]
|
|
822
|
+
];
|
|
823
|
+
var AcmeDomainValidation$ = [3, n0, _ADV,
|
|
824
|
+
0,
|
|
825
|
+
[_ADVA, _AEA, _DN, _PT, _PD, _S, _FD, _CA, _UA],
|
|
826
|
+
[0, 0, 0, 0, () => PrevalidationDetails$, 0, () => FailureDetails$, 4, 4]
|
|
827
|
+
];
|
|
828
|
+
var AcmeDomainValidationSummary$ = [3, n0, _ADVS,
|
|
829
|
+
0,
|
|
830
|
+
[_ADVA, _AEA, _DN, _PT, _PD, _S, _FD, _CA, _UA],
|
|
831
|
+
[0, 0, 0, 0, () => PrevalidationDetails$, 0, () => FailureDetails$, 4, 4]
|
|
832
|
+
];
|
|
833
|
+
var AcmeEndpoint$ = [3, n0, _AE,
|
|
834
|
+
0,
|
|
835
|
+
[_AEA, _EU, _S, _FR, _AB, _Co, _CAe, _CT, _CA, _UA],
|
|
836
|
+
[0, 0, 0, 0, 0, 0, () => CertificateAuthority$, () => TagList, 4, 4]
|
|
837
|
+
];
|
|
838
|
+
var AcmeEndpointSummary$ = [3, n0, _AES,
|
|
839
|
+
0,
|
|
840
|
+
[_AEA, _EU, _S, _FR, _AB, _Co, _CAe, _CT, _CA, _UA],
|
|
841
|
+
[0, 0, 0, 0, 0, 0, () => CertificateAuthority$, () => TagList, 4, 4]
|
|
842
|
+
];
|
|
843
|
+
var AcmeExternalAccountBinding$ = [3, n0, _AEAB,
|
|
844
|
+
0,
|
|
845
|
+
[_AEABA, _AEA, _RAo, _EA, _RA, _LUA, _CA, _UA],
|
|
846
|
+
[0, 0, 0, 4, 4, 4, 4, 4]
|
|
847
|
+
];
|
|
848
|
+
var AcmeExternalAccountBindingSummary$ = [3, n0, _AEABS,
|
|
849
|
+
0,
|
|
850
|
+
[_AEABA, _AEA, _RAo, _EA, _RA, _LUA, _CA, _UA],
|
|
851
|
+
[0, 0, 0, 4, 4, 4, 4, 4]
|
|
664
852
|
];
|
|
665
853
|
var AddTagsToCertificateRequest$ = [3, n0, _ATTCR,
|
|
666
854
|
0,
|
|
667
|
-
[
|
|
855
|
+
[_CAer, _Ta],
|
|
668
856
|
[0, () => TagList], 2
|
|
669
857
|
];
|
|
670
858
|
var CertificateDetail$ = [3, n0, _CD,
|
|
671
859
|
0,
|
|
672
|
-
[
|
|
673
|
-
[0, 0, 64 | 0, 0, () => DomainValidationList, 0, 0, 0, 4, 4, 4, 0, 4, 0, 4, 4, 0, 0, 64 | 0, 0, 0, () => RenewalSummary$, () => KeyUsageList, () => ExtendedKeyUsageList, 0, 0, () => CertificateOptions
|
|
860
|
+
[_CAer, _DN, _SAN, _MB, _DVO, _Se, _Su, _I, _CA, _IAs, _IA, _S, _RA, _RR, _NB, _NA, _KA, _SA, _IUB, _FR, _T, _RSe, _KU, _EKU, _CAA, _RE, _O, _CKPO, _AEA, _AAI],
|
|
861
|
+
[0, 0, 64 | 0, 0, () => DomainValidationList, 0, 0, 0, 4, 4, 4, 0, 4, 0, 4, 4, 0, 0, 64 | 0, 0, 0, () => RenewalSummary$, () => KeyUsageList, () => ExtendedKeyUsageList, 0, 0, () => CertificateOptions$, 0, 0, 0]
|
|
674
862
|
];
|
|
675
863
|
var CertificateOptions$ = [3, n0, _CO,
|
|
676
864
|
0,
|
|
@@ -679,42 +867,127 @@ var CertificateOptions$ = [3, n0, _CO,
|
|
|
679
867
|
];
|
|
680
868
|
var CertificateSearchResult$ = [3, n0, _CSR,
|
|
681
869
|
0,
|
|
682
|
-
[
|
|
870
|
+
[_CAer, _XA, _CM],
|
|
683
871
|
[0, () => X509Attributes$, () => CertificateMetadata$]
|
|
684
872
|
];
|
|
685
873
|
var CertificateSummary$ = [3, n0, _CS,
|
|
686
874
|
0,
|
|
687
|
-
[
|
|
688
|
-
[0, 0, 64 | 0, 2, 0, 0, 0, 64 | 0, 64 | 0, 0, 2, 2, 0, 4, 4, 4, 4, 4, 4, 0]
|
|
875
|
+
[_CAer, _DN, _SANS, _HASAN, _S, _T, _KA, _KU, _EKU, _EO, _IU, _E, _RE, _NB, _NA, _CA, _IAs, _IA, _RA, _MB, _CKPO],
|
|
876
|
+
[0, 0, 64 | 0, 2, 0, 0, 0, 64 | 0, 64 | 0, 0, 2, 2, 0, 4, 4, 4, 4, 4, 4, 0, 0]
|
|
689
877
|
];
|
|
690
878
|
var CommonNameFilter$ = [3, n0, _CNF,
|
|
691
879
|
0,
|
|
692
880
|
[_V, _COo],
|
|
693
881
|
[0, 0], 2
|
|
694
882
|
];
|
|
883
|
+
var CreateAcmeDomainValidationRequest$ = [3, n0, _CADVR,
|
|
884
|
+
0,
|
|
885
|
+
[_AEA, _DN, _PO, _IT, _Ta],
|
|
886
|
+
[0, 0, () => PrevalidationOptions$, [0, 4], () => TagList], 3
|
|
887
|
+
];
|
|
888
|
+
var CreateAcmeDomainValidationResponse$ = [3, n0, _CADVRr,
|
|
889
|
+
0,
|
|
890
|
+
[_ADVA],
|
|
891
|
+
[0], 1
|
|
892
|
+
];
|
|
893
|
+
var CreateAcmeEndpointRequest$ = [3, n0, _CAER,
|
|
894
|
+
0,
|
|
895
|
+
[_AB, _CAe, _IT, _Co, _Ta, _CT],
|
|
896
|
+
[0, () => CertificateAuthority$, [0, 4], 0, () => TagList, () => TagList], 2
|
|
897
|
+
];
|
|
898
|
+
var CreateAcmeEndpointResponse$ = [3, n0, _CAERr,
|
|
899
|
+
0,
|
|
900
|
+
[_AEA],
|
|
901
|
+
[0]
|
|
902
|
+
];
|
|
903
|
+
var CreateAcmeExternalAccountBindingRequest$ = [3, n0, _CAEABR,
|
|
904
|
+
0,
|
|
905
|
+
[_AEA, _RAo, _IT, _Exp, _Ta],
|
|
906
|
+
[0, 0, [0, 4], () => Expiration$, () => TagList], 2
|
|
907
|
+
];
|
|
908
|
+
var CreateAcmeExternalAccountBindingResponse$ = [3, n0, _CAEABRr,
|
|
909
|
+
0,
|
|
910
|
+
[_EAB],
|
|
911
|
+
[() => AcmeExternalAccountBinding$]
|
|
912
|
+
];
|
|
695
913
|
var CustomAttribute$ = [3, n0, _CAu,
|
|
696
914
|
0,
|
|
697
915
|
[_OI, _V],
|
|
698
916
|
[0, 0]
|
|
699
917
|
];
|
|
918
|
+
var DeleteAcmeDomainValidationRequest$ = [3, n0, _DADVR,
|
|
919
|
+
0,
|
|
920
|
+
[_ADVA],
|
|
921
|
+
[0], 1
|
|
922
|
+
];
|
|
923
|
+
var DeleteAcmeEndpointRequest$ = [3, n0, _DAER,
|
|
924
|
+
0,
|
|
925
|
+
[_AEA],
|
|
926
|
+
[0], 1
|
|
927
|
+
];
|
|
928
|
+
var DeleteAcmeExternalAccountBindingRequest$ = [3, n0, _DAEABR,
|
|
929
|
+
0,
|
|
930
|
+
[_AEABA],
|
|
931
|
+
[0], 1
|
|
932
|
+
];
|
|
700
933
|
var DeleteCertificateRequest$ = [3, n0, _DCR,
|
|
701
934
|
0,
|
|
702
|
-
[
|
|
935
|
+
[_CAer],
|
|
936
|
+
[0], 1
|
|
937
|
+
];
|
|
938
|
+
var DescribeAcmeAccountRequest$ = [3, n0, _DAAR,
|
|
939
|
+
0,
|
|
940
|
+
[_AEA, _AU],
|
|
941
|
+
[0, 0], 2
|
|
942
|
+
];
|
|
943
|
+
var DescribeAcmeAccountResponse$ = [3, n0, _DAARe,
|
|
944
|
+
0,
|
|
945
|
+
[_AA],
|
|
946
|
+
[[() => AcmeAccount$, 0]]
|
|
947
|
+
];
|
|
948
|
+
var DescribeAcmeDomainValidationRequest$ = [3, n0, _DADVRe,
|
|
949
|
+
0,
|
|
950
|
+
[_ADVA],
|
|
951
|
+
[0], 1
|
|
952
|
+
];
|
|
953
|
+
var DescribeAcmeDomainValidationResponse$ = [3, n0, _DADVRes,
|
|
954
|
+
0,
|
|
955
|
+
[_ADV],
|
|
956
|
+
[() => AcmeDomainValidation$]
|
|
957
|
+
];
|
|
958
|
+
var DescribeAcmeEndpointRequest$ = [3, n0, _DAERe,
|
|
959
|
+
0,
|
|
960
|
+
[_AEA],
|
|
961
|
+
[0], 1
|
|
962
|
+
];
|
|
963
|
+
var DescribeAcmeEndpointResponse$ = [3, n0, _DAERes,
|
|
964
|
+
0,
|
|
965
|
+
[_AE],
|
|
966
|
+
[() => AcmeEndpoint$]
|
|
967
|
+
];
|
|
968
|
+
var DescribeAcmeExternalAccountBindingRequest$ = [3, n0, _DAEABRe,
|
|
969
|
+
0,
|
|
970
|
+
[_AEABA],
|
|
703
971
|
[0], 1
|
|
704
972
|
];
|
|
973
|
+
var DescribeAcmeExternalAccountBindingResponse$ = [3, n0, _DAEABRes,
|
|
974
|
+
0,
|
|
975
|
+
[_EAB],
|
|
976
|
+
[() => AcmeExternalAccountBinding$]
|
|
977
|
+
];
|
|
705
978
|
var DescribeCertificateRequest$ = [3, n0, _DCRe,
|
|
706
979
|
0,
|
|
707
|
-
[
|
|
980
|
+
[_CAer],
|
|
708
981
|
[0], 1
|
|
709
982
|
];
|
|
710
983
|
var DescribeCertificateResponse$ = [3, n0, _DCRes,
|
|
711
984
|
0,
|
|
712
|
-
[
|
|
985
|
+
[_Ce],
|
|
713
986
|
[() => CertificateDetail$]
|
|
714
987
|
];
|
|
715
988
|
var DistinguishedName$ = [3, n0, _DNi,
|
|
716
989
|
0,
|
|
717
|
-
[_CN, _DC,
|
|
990
|
+
[_CN, _DC, _Cou, _CAus, _DNQ, _GQ, _GN, _In, _L, _Or, _OU, _P, _SN, _St, _Sur, _Ti],
|
|
718
991
|
[0, 64 | 0, 0, () => CustomAttributeList, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
719
992
|
];
|
|
720
993
|
var DnsNameFilter$ = [3, n0, _DNF,
|
|
@@ -722,6 +995,21 @@ var DnsNameFilter$ = [3, n0, _DNF,
|
|
|
722
995
|
[_V, _COo],
|
|
723
996
|
[0, 0], 2
|
|
724
997
|
];
|
|
998
|
+
var DnsPrevalidationDetails$ = [3, n0, _DPD,
|
|
999
|
+
0,
|
|
1000
|
+
[_DS, _HZI, _RRe],
|
|
1001
|
+
[() => DomainScope$, 0, () => ResourceRecord$]
|
|
1002
|
+
];
|
|
1003
|
+
var DnsPrevalidationOptions$ = [3, n0, _DPO,
|
|
1004
|
+
0,
|
|
1005
|
+
[_DS, _HZI],
|
|
1006
|
+
[() => DomainScope$, 0]
|
|
1007
|
+
];
|
|
1008
|
+
var DomainScope$ = [3, n0, _DS,
|
|
1009
|
+
0,
|
|
1010
|
+
[_ED, _Sub, _W],
|
|
1011
|
+
[0, 0, 0]
|
|
1012
|
+
];
|
|
725
1013
|
var DomainValidation$ = [3, n0, _DV,
|
|
726
1014
|
0,
|
|
727
1015
|
[_DN, _VEa, _VD, _VS, _RRe, _HR, _VM],
|
|
@@ -732,6 +1020,11 @@ var DomainValidationOption$ = [3, n0, _DVOo,
|
|
|
732
1020
|
[_DN, _VD],
|
|
733
1021
|
[0, 0], 2
|
|
734
1022
|
];
|
|
1023
|
+
var Expiration$ = [3, n0, _Exp,
|
|
1024
|
+
0,
|
|
1025
|
+
[_V, _T],
|
|
1026
|
+
[1, 0], 2
|
|
1027
|
+
];
|
|
735
1028
|
var ExpiryEventsConfiguration$ = [3, n0, _EEC,
|
|
736
1029
|
0,
|
|
737
1030
|
[_DBE],
|
|
@@ -739,12 +1032,12 @@ var ExpiryEventsConfiguration$ = [3, n0, _EEC,
|
|
|
739
1032
|
];
|
|
740
1033
|
var ExportCertificateRequest$ = [3, n0, _ECR,
|
|
741
1034
|
0,
|
|
742
|
-
[
|
|
1035
|
+
[_CAer, _Pa],
|
|
743
1036
|
[0, [() => PassphraseBlob, 0]], 2
|
|
744
1037
|
];
|
|
745
1038
|
var ExportCertificateResponse$ = [3, n0, _ECRx,
|
|
746
1039
|
0,
|
|
747
|
-
[
|
|
1040
|
+
[_Ce, _CC, _PK],
|
|
748
1041
|
[0, 0, [() => PrivateKey, 0]]
|
|
749
1042
|
];
|
|
750
1043
|
var ExtendedKeyUsage$ = [3, n0, _EKUx,
|
|
@@ -752,6 +1045,11 @@ var ExtendedKeyUsage$ = [3, n0, _EKUx,
|
|
|
752
1045
|
[_N, _OID],
|
|
753
1046
|
[0, 0]
|
|
754
1047
|
];
|
|
1048
|
+
var FailureDetails$ = [3, n0, _FD,
|
|
1049
|
+
0,
|
|
1050
|
+
[_R, _M],
|
|
1051
|
+
[0, 0]
|
|
1052
|
+
];
|
|
755
1053
|
var Filters$ = [3, n0, _F,
|
|
756
1054
|
0,
|
|
757
1055
|
[_eKU, _kU, _kT, _eO, _mB],
|
|
@@ -762,14 +1060,24 @@ var GetAccountConfigurationResponse$ = [3, n0, _GACR,
|
|
|
762
1060
|
[_EE],
|
|
763
1061
|
[() => ExpiryEventsConfiguration$]
|
|
764
1062
|
];
|
|
1063
|
+
var GetAcmeExternalAccountBindingCredentialsRequest$ = [3, n0, _GAEABCR,
|
|
1064
|
+
0,
|
|
1065
|
+
[_AEABA],
|
|
1066
|
+
[0], 1
|
|
1067
|
+
];
|
|
1068
|
+
var GetAcmeExternalAccountBindingCredentialsResponse$ = [3, n0, _GAEABCRe,
|
|
1069
|
+
0,
|
|
1070
|
+
[_KI, _MK],
|
|
1071
|
+
[0, [() => MacKey, 0]]
|
|
1072
|
+
];
|
|
765
1073
|
var GetCertificateRequest$ = [3, n0, _GCR,
|
|
766
1074
|
0,
|
|
767
|
-
[
|
|
1075
|
+
[_CAer],
|
|
768
1076
|
[0], 1
|
|
769
1077
|
];
|
|
770
1078
|
var GetCertificateResponse$ = [3, n0, _GCRe,
|
|
771
1079
|
0,
|
|
772
|
-
[
|
|
1080
|
+
[_Ce, _CC],
|
|
773
1081
|
[0, 0]
|
|
774
1082
|
];
|
|
775
1083
|
var HttpRedirect$ = [3, n0, _HR,
|
|
@@ -779,12 +1087,12 @@ var HttpRedirect$ = [3, n0, _HR,
|
|
|
779
1087
|
];
|
|
780
1088
|
var ImportCertificateRequest$ = [3, n0, _ICR,
|
|
781
1089
|
0,
|
|
782
|
-
[
|
|
1090
|
+
[_Ce, _PK, _CAer, _CC, _Ta],
|
|
783
1091
|
[21, [() => PrivateKeyBlob, 0], 0, 21, () => TagList], 2
|
|
784
1092
|
];
|
|
785
1093
|
var ImportCertificateResponse$ = [3, n0, _ICRm,
|
|
786
1094
|
0,
|
|
787
|
-
[
|
|
1095
|
+
[_CAer],
|
|
788
1096
|
[0]
|
|
789
1097
|
];
|
|
790
1098
|
var KeyUsage$ = [3, n0, _KUe,
|
|
@@ -792,10 +1100,50 @@ var KeyUsage$ = [3, n0, _KUe,
|
|
|
792
1100
|
[_N],
|
|
793
1101
|
[0]
|
|
794
1102
|
];
|
|
1103
|
+
var ListAcmeAccountsRequest$ = [3, n0, _LAAR,
|
|
1104
|
+
0,
|
|
1105
|
+
[_AEA, _NT, _MR],
|
|
1106
|
+
[0, 0, 1], 1
|
|
1107
|
+
];
|
|
1108
|
+
var ListAcmeAccountsResponse$ = [3, n0, _LAARi,
|
|
1109
|
+
0,
|
|
1110
|
+
[_AAc, _NT],
|
|
1111
|
+
[[() => AcmeAccountList, 0], 0]
|
|
1112
|
+
];
|
|
1113
|
+
var ListAcmeDomainValidationsRequest$ = [3, n0, _LADVR,
|
|
1114
|
+
0,
|
|
1115
|
+
[_AEA, _NT, _MR],
|
|
1116
|
+
[0, 0, 1], 1
|
|
1117
|
+
];
|
|
1118
|
+
var ListAcmeDomainValidationsResponse$ = [3, n0, _LADVRi,
|
|
1119
|
+
0,
|
|
1120
|
+
[_ADVc, _NT],
|
|
1121
|
+
[() => AcmeDomainValidationList, 0]
|
|
1122
|
+
];
|
|
1123
|
+
var ListAcmeEndpointsRequest$ = [3, n0, _LAER,
|
|
1124
|
+
0,
|
|
1125
|
+
[_NT, _MR],
|
|
1126
|
+
[0, 1]
|
|
1127
|
+
];
|
|
1128
|
+
var ListAcmeEndpointsResponse$ = [3, n0, _LAERi,
|
|
1129
|
+
0,
|
|
1130
|
+
[_AEc, _NT],
|
|
1131
|
+
[() => AcmeEndpointList, 0]
|
|
1132
|
+
];
|
|
1133
|
+
var ListAcmeExternalAccountBindingsRequest$ = [3, n0, _LAEABR,
|
|
1134
|
+
0,
|
|
1135
|
+
[_AEA, _NT, _MR],
|
|
1136
|
+
[0, 0, 1], 1
|
|
1137
|
+
];
|
|
1138
|
+
var ListAcmeExternalAccountBindingsResponse$ = [3, n0, _LAEABRi,
|
|
1139
|
+
0,
|
|
1140
|
+
[_EABx, _NT],
|
|
1141
|
+
[() => AcmeExternalAccountBindingList, 0]
|
|
1142
|
+
];
|
|
795
1143
|
var ListCertificatesRequest$ = [3, n0, _LCR,
|
|
796
1144
|
0,
|
|
797
|
-
[_CSe, _Inc, _NT, _MI, _SB, _SO],
|
|
798
|
-
[64 | 0, () => Filters$, 0, 1, 0, 0]
|
|
1145
|
+
[_CSe, _CKPOe, _Inc, _NT, _MI, _SB, _SO],
|
|
1146
|
+
[64 | 0, 64 | 0, () => Filters$, 0, 1, 0, 0]
|
|
799
1147
|
];
|
|
800
1148
|
var ListCertificatesResponse$ = [3, n0, _LCRi,
|
|
801
1149
|
0,
|
|
@@ -804,7 +1152,7 @@ var ListCertificatesResponse$ = [3, n0, _LCRi,
|
|
|
804
1152
|
];
|
|
805
1153
|
var ListTagsForCertificateRequest$ = [3, n0, _LTFCR,
|
|
806
1154
|
0,
|
|
807
|
-
[
|
|
1155
|
+
[_CAer],
|
|
808
1156
|
[0], 1
|
|
809
1157
|
];
|
|
810
1158
|
var ListTagsForCertificateResponse$ = [3, n0, _LTFCRi,
|
|
@@ -812,11 +1160,26 @@ var ListTagsForCertificateResponse$ = [3, n0, _LTFCRi,
|
|
|
812
1160
|
[_Ta],
|
|
813
1161
|
[() => TagList]
|
|
814
1162
|
];
|
|
1163
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1164
|
+
0,
|
|
1165
|
+
[_RAe],
|
|
1166
|
+
[0], 1
|
|
1167
|
+
];
|
|
1168
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1169
|
+
0,
|
|
1170
|
+
[_Ta],
|
|
1171
|
+
[() => TagList]
|
|
1172
|
+
];
|
|
815
1173
|
var OtherName$ = [3, n0, _ON,
|
|
816
1174
|
0,
|
|
817
1175
|
[_OI, _V],
|
|
818
1176
|
[0, 0]
|
|
819
1177
|
];
|
|
1178
|
+
var PublicCertificateAuthority$ = [3, n0, _PCA,
|
|
1179
|
+
0,
|
|
1180
|
+
[_AKA],
|
|
1181
|
+
[64 | 0]
|
|
1182
|
+
];
|
|
820
1183
|
var PutAccountConfigurationRequest$ = [3, n0, _PACR,
|
|
821
1184
|
0,
|
|
822
1185
|
[_IT, _EE],
|
|
@@ -824,7 +1187,7 @@ var PutAccountConfigurationRequest$ = [3, n0, _PACR,
|
|
|
824
1187
|
];
|
|
825
1188
|
var RemoveTagsFromCertificateRequest$ = [3, n0, _RTFCR,
|
|
826
1189
|
0,
|
|
827
|
-
[
|
|
1190
|
+
[_CAer, _Ta],
|
|
828
1191
|
[0, () => TagList], 2
|
|
829
1192
|
];
|
|
830
1193
|
var RenewalSummary$ = [3, n0, _RSe,
|
|
@@ -834,7 +1197,7 @@ var RenewalSummary$ = [3, n0, _RSe,
|
|
|
834
1197
|
];
|
|
835
1198
|
var RenewCertificateRequest$ = [3, n0, _RCR,
|
|
836
1199
|
0,
|
|
837
|
-
[
|
|
1200
|
+
[_CAer],
|
|
838
1201
|
[0], 1
|
|
839
1202
|
];
|
|
840
1203
|
var RequestCertificateRequest$ = [3, n0, _RCRe,
|
|
@@ -844,12 +1207,12 @@ var RequestCertificateRequest$ = [3, n0, _RCRe,
|
|
|
844
1207
|
];
|
|
845
1208
|
var RequestCertificateResponse$ = [3, n0, _RCReq,
|
|
846
1209
|
0,
|
|
847
|
-
[
|
|
1210
|
+
[_CAer],
|
|
848
1211
|
[0]
|
|
849
1212
|
];
|
|
850
1213
|
var ResendValidationEmailRequest$ = [3, n0, _RVER,
|
|
851
1214
|
0,
|
|
852
|
-
[
|
|
1215
|
+
[_CAer, _D, _VD],
|
|
853
1216
|
[0, 0, 0], 3
|
|
854
1217
|
];
|
|
855
1218
|
var ResourceRecord$ = [3, n0, _RRe,
|
|
@@ -857,14 +1220,24 @@ var ResourceRecord$ = [3, n0, _RRe,
|
|
|
857
1220
|
[_N, _T, _V],
|
|
858
1221
|
[0, 0, 0], 3
|
|
859
1222
|
];
|
|
1223
|
+
var RevokeAcmeAccountRequest$ = [3, n0, _RAAR,
|
|
1224
|
+
0,
|
|
1225
|
+
[_AEA, _AU],
|
|
1226
|
+
[0, 0], 2
|
|
1227
|
+
];
|
|
1228
|
+
var RevokeAcmeExternalAccountBindingRequest$ = [3, n0, _RAEABR,
|
|
1229
|
+
0,
|
|
1230
|
+
[_AEABA],
|
|
1231
|
+
[0], 1
|
|
1232
|
+
];
|
|
860
1233
|
var RevokeCertificateRequest$ = [3, n0, _RCRev,
|
|
861
1234
|
0,
|
|
862
|
-
[
|
|
1235
|
+
[_CAer, _RR],
|
|
863
1236
|
[0, 0], 2
|
|
864
1237
|
];
|
|
865
1238
|
var RevokeCertificateResponse$ = [3, n0, _RCRevo,
|
|
866
1239
|
0,
|
|
867
|
-
[
|
|
1240
|
+
[_CAer],
|
|
868
1241
|
[0]
|
|
869
1242
|
];
|
|
870
1243
|
var SearchCertificatesRequest$ = [3, n0, _SCR,
|
|
@@ -874,7 +1247,7 @@ var SearchCertificatesRequest$ = [3, n0, _SCR,
|
|
|
874
1247
|
];
|
|
875
1248
|
var SearchCertificatesResponse$ = [3, n0, _SCRe,
|
|
876
1249
|
0,
|
|
877
|
-
[
|
|
1250
|
+
[_Re, _NT],
|
|
878
1251
|
[() => CertificateSearchResultList, 0]
|
|
879
1252
|
];
|
|
880
1253
|
var Tag$ = [3, n0, _Tag,
|
|
@@ -882,6 +1255,11 @@ var Tag$ = [3, n0, _Tag,
|
|
|
882
1255
|
[_K, _V],
|
|
883
1256
|
[0, 0], 1
|
|
884
1257
|
];
|
|
1258
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1259
|
+
0,
|
|
1260
|
+
[_RAe, _Ta],
|
|
1261
|
+
[0, () => TagList], 2
|
|
1262
|
+
];
|
|
885
1263
|
var ThrottlingReason$ = [3, n0, _TR,
|
|
886
1264
|
0,
|
|
887
1265
|
[_r, _re],
|
|
@@ -892,9 +1270,24 @@ var TimestampRange$ = [3, n0, _TRi,
|
|
|
892
1270
|
[_Sta, _En],
|
|
893
1271
|
[4, 4]
|
|
894
1272
|
];
|
|
1273
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1274
|
+
0,
|
|
1275
|
+
[_RAe, _TK],
|
|
1276
|
+
[0, 64 | 0], 2
|
|
1277
|
+
];
|
|
1278
|
+
var UpdateAcmeDomainValidationRequest$ = [3, n0, _UADVR,
|
|
1279
|
+
0,
|
|
1280
|
+
[_ADVA, _PO],
|
|
1281
|
+
[0, () => PrevalidationOptions$], 1
|
|
1282
|
+
];
|
|
1283
|
+
var UpdateAcmeEndpointRequest$ = [3, n0, _UAER,
|
|
1284
|
+
0,
|
|
1285
|
+
[_AEA, _AB, _Co, _CAe],
|
|
1286
|
+
[0, 0, 0, () => CertificateAuthority$], 1
|
|
1287
|
+
];
|
|
895
1288
|
var UpdateCertificateOptionsRequest$ = [3, n0, _UCOR,
|
|
896
1289
|
0,
|
|
897
|
-
[
|
|
1290
|
+
[_CAer, _O],
|
|
898
1291
|
[0, () => CertificateOptions$], 2
|
|
899
1292
|
];
|
|
900
1293
|
var X509Attributes$ = [3, n0, _XA,
|
|
@@ -903,6 +1296,19 @@ var X509Attributes$ = [3, n0, _XA,
|
|
|
903
1296
|
[() => DistinguishedName$, () => DistinguishedName$, () => GeneralNameList, 64 | 0, 0, 64 | 0, 0, 4, 4]
|
|
904
1297
|
];
|
|
905
1298
|
var __Unit = "unit";
|
|
1299
|
+
var AcmeAccountList = [1, n0, _AAL,
|
|
1300
|
+
0, [() => AcmeAccountSummary$,
|
|
1301
|
+
0]
|
|
1302
|
+
];
|
|
1303
|
+
var AcmeDomainValidationList = [1, n0, _ADVL,
|
|
1304
|
+
0, () => AcmeDomainValidationSummary$
|
|
1305
|
+
];
|
|
1306
|
+
var AcmeEndpointList = [1, n0, _AEL,
|
|
1307
|
+
0, () => AcmeEndpointSummary$
|
|
1308
|
+
];
|
|
1309
|
+
var AcmeExternalAccountBindingList = [1, n0, _AEABL,
|
|
1310
|
+
0, () => AcmeExternalAccountBindingSummary$
|
|
1311
|
+
];
|
|
906
1312
|
var CertificateFilterStatementList = [1, n0, _CFSL,
|
|
907
1313
|
0, () => CertificateFilterStatement$
|
|
908
1314
|
];
|
|
@@ -912,6 +1318,9 @@ var CertificateSearchResultList = [1, n0, _CSRL,
|
|
|
912
1318
|
var CertificateSummaryList = [1, n0, _CSL,
|
|
913
1319
|
0, () => CertificateSummary$
|
|
914
1320
|
];
|
|
1321
|
+
var ContactList = [1, n0, _CL,
|
|
1322
|
+
8, 0
|
|
1323
|
+
];
|
|
915
1324
|
var CustomAttributeList = [1, n0, _CAL,
|
|
916
1325
|
0, () => CustomAttribute$
|
|
917
1326
|
];
|
|
@@ -938,12 +1347,17 @@ var ThrottlingReasonList = [1, n0, _TRL,
|
|
|
938
1347
|
];
|
|
939
1348
|
var AcmCertificateMetadataFilter$ = [4, n0, _ACMF,
|
|
940
1349
|
0,
|
|
941
|
-
[_S, _RS, _T, _IU, _E, _EO, _MB, _VM],
|
|
942
|
-
[0, 0, 0, 2, 2, 0, 0, 0]
|
|
1350
|
+
[_S, _RS, _T, _IU, _E, _EO, _MB, _VM, _CKPO, _AEA, _AAI],
|
|
1351
|
+
[0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0]
|
|
1352
|
+
];
|
|
1353
|
+
var CertificateAuthority$ = [4, n0, _CAe,
|
|
1354
|
+
0,
|
|
1355
|
+
[_PCA],
|
|
1356
|
+
[() => PublicCertificateAuthority$]
|
|
943
1357
|
];
|
|
944
1358
|
var CertificateFilter$ = [4, n0, _CF,
|
|
945
1359
|
0,
|
|
946
|
-
[
|
|
1360
|
+
[_CAer, _XAF, _ACMF],
|
|
947
1361
|
[0, () => X509AttributeFilter$, () => AcmCertificateMetadataFilter$]
|
|
948
1362
|
];
|
|
949
1363
|
var CertificateFilterStatement$ = [4, n0, _CFS,
|
|
@@ -961,6 +1375,16 @@ var GeneralName$ = [4, n0, _GNe,
|
|
|
961
1375
|
[_DNir, _DNn, _IAp, _ON, _RI, _RN, _URI],
|
|
962
1376
|
[() => DistinguishedName$, 0, 0, () => OtherName$, 0, 0, 0]
|
|
963
1377
|
];
|
|
1378
|
+
var PrevalidationDetails$ = [4, n0, _PD,
|
|
1379
|
+
0,
|
|
1380
|
+
[_DP],
|
|
1381
|
+
[() => DnsPrevalidationDetails$]
|
|
1382
|
+
];
|
|
1383
|
+
var PrevalidationOptions$ = [4, n0, _PO,
|
|
1384
|
+
0,
|
|
1385
|
+
[_DP],
|
|
1386
|
+
[() => DnsPrevalidationOptions$]
|
|
1387
|
+
];
|
|
964
1388
|
var SubjectAlternativeNameFilter$ = [4, n0, _SANF,
|
|
965
1389
|
0,
|
|
966
1390
|
[_DNn],
|
|
@@ -979,9 +1403,39 @@ var X509AttributeFilter$ = [4, n0, _XAF,
|
|
|
979
1403
|
var AddTagsToCertificate$ = [9, n0, _ATTC,
|
|
980
1404
|
0, () => AddTagsToCertificateRequest$, () => __Unit
|
|
981
1405
|
];
|
|
1406
|
+
var CreateAcmeDomainValidation$ = [9, n0, _CADV,
|
|
1407
|
+
0, () => CreateAcmeDomainValidationRequest$, () => CreateAcmeDomainValidationResponse$
|
|
1408
|
+
];
|
|
1409
|
+
var CreateAcmeEndpoint$ = [9, n0, _CAE,
|
|
1410
|
+
2, () => CreateAcmeEndpointRequest$, () => CreateAcmeEndpointResponse$
|
|
1411
|
+
];
|
|
1412
|
+
var CreateAcmeExternalAccountBinding$ = [9, n0, _CAEAB,
|
|
1413
|
+
2, () => CreateAcmeExternalAccountBindingRequest$, () => CreateAcmeExternalAccountBindingResponse$
|
|
1414
|
+
];
|
|
1415
|
+
var DeleteAcmeDomainValidation$ = [9, n0, _DADV,
|
|
1416
|
+
2, () => DeleteAcmeDomainValidationRequest$, () => __Unit
|
|
1417
|
+
];
|
|
1418
|
+
var DeleteAcmeEndpoint$ = [9, n0, _DAE,
|
|
1419
|
+
2, () => DeleteAcmeEndpointRequest$, () => __Unit
|
|
1420
|
+
];
|
|
1421
|
+
var DeleteAcmeExternalAccountBinding$ = [9, n0, _DAEAB,
|
|
1422
|
+
2, () => DeleteAcmeExternalAccountBindingRequest$, () => __Unit
|
|
1423
|
+
];
|
|
982
1424
|
var DeleteCertificate$ = [9, n0, _DCe,
|
|
983
1425
|
0, () => DeleteCertificateRequest$, () => __Unit
|
|
984
1426
|
];
|
|
1427
|
+
var DescribeAcmeAccount$ = [9, n0, _DAA,
|
|
1428
|
+
0, () => DescribeAcmeAccountRequest$, () => DescribeAcmeAccountResponse$
|
|
1429
|
+
];
|
|
1430
|
+
var DescribeAcmeDomainValidation$ = [9, n0, _DADVe,
|
|
1431
|
+
0, () => DescribeAcmeDomainValidationRequest$, () => DescribeAcmeDomainValidationResponse$
|
|
1432
|
+
];
|
|
1433
|
+
var DescribeAcmeEndpoint$ = [9, n0, _DAEe,
|
|
1434
|
+
0, () => DescribeAcmeEndpointRequest$, () => DescribeAcmeEndpointResponse$
|
|
1435
|
+
];
|
|
1436
|
+
var DescribeAcmeExternalAccountBinding$ = [9, n0, _DAEABe,
|
|
1437
|
+
0, () => DescribeAcmeExternalAccountBindingRequest$, () => DescribeAcmeExternalAccountBindingResponse$
|
|
1438
|
+
];
|
|
985
1439
|
var DescribeCertificate$ = [9, n0, _DCes,
|
|
986
1440
|
0, () => DescribeCertificateRequest$, () => DescribeCertificateResponse$
|
|
987
1441
|
];
|
|
@@ -991,18 +1445,36 @@ var ExportCertificate$ = [9, n0, _EC,
|
|
|
991
1445
|
var GetAccountConfiguration$ = [9, n0, _GAC,
|
|
992
1446
|
0, () => __Unit, () => GetAccountConfigurationResponse$
|
|
993
1447
|
];
|
|
1448
|
+
var GetAcmeExternalAccountBindingCredentials$ = [9, n0, _GAEABC,
|
|
1449
|
+
0, () => GetAcmeExternalAccountBindingCredentialsRequest$, () => GetAcmeExternalAccountBindingCredentialsResponse$
|
|
1450
|
+
];
|
|
994
1451
|
var GetCertificate$ = [9, n0, _GC,
|
|
995
1452
|
0, () => GetCertificateRequest$, () => GetCertificateResponse$
|
|
996
1453
|
];
|
|
997
1454
|
var ImportCertificate$ = [9, n0, _IC,
|
|
998
1455
|
0, () => ImportCertificateRequest$, () => ImportCertificateResponse$
|
|
999
1456
|
];
|
|
1457
|
+
var ListAcmeAccounts$ = [9, n0, _LAA,
|
|
1458
|
+
0, () => ListAcmeAccountsRequest$, () => ListAcmeAccountsResponse$
|
|
1459
|
+
];
|
|
1460
|
+
var ListAcmeDomainValidations$ = [9, n0, _LADV,
|
|
1461
|
+
0, () => ListAcmeDomainValidationsRequest$, () => ListAcmeDomainValidationsResponse$
|
|
1462
|
+
];
|
|
1463
|
+
var ListAcmeEndpoints$ = [9, n0, _LAE,
|
|
1464
|
+
0, () => ListAcmeEndpointsRequest$, () => ListAcmeEndpointsResponse$
|
|
1465
|
+
];
|
|
1466
|
+
var ListAcmeExternalAccountBindings$ = [9, n0, _LAEAB,
|
|
1467
|
+
0, () => ListAcmeExternalAccountBindingsRequest$, () => ListAcmeExternalAccountBindingsResponse$
|
|
1468
|
+
];
|
|
1000
1469
|
var ListCertificates$ = [9, n0, _LC,
|
|
1001
1470
|
0, () => ListCertificatesRequest$, () => ListCertificatesResponse$
|
|
1002
1471
|
];
|
|
1003
1472
|
var ListTagsForCertificate$ = [9, n0, _LTFC,
|
|
1004
1473
|
0, () => ListTagsForCertificateRequest$, () => ListTagsForCertificateResponse$
|
|
1005
1474
|
];
|
|
1475
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1476
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1477
|
+
];
|
|
1006
1478
|
var PutAccountConfiguration$ = [9, n0, _PAC,
|
|
1007
1479
|
0, () => PutAccountConfigurationRequest$, () => __Unit
|
|
1008
1480
|
];
|
|
@@ -1018,12 +1490,30 @@ var RequestCertificate$ = [9, n0, _RCe,
|
|
|
1018
1490
|
var ResendValidationEmail$ = [9, n0, _RVE,
|
|
1019
1491
|
0, () => ResendValidationEmailRequest$, () => __Unit
|
|
1020
1492
|
];
|
|
1493
|
+
var RevokeAcmeAccount$ = [9, n0, _RAA,
|
|
1494
|
+
2, () => RevokeAcmeAccountRequest$, () => __Unit
|
|
1495
|
+
];
|
|
1496
|
+
var RevokeAcmeExternalAccountBinding$ = [9, n0, _RAEAB,
|
|
1497
|
+
2, () => RevokeAcmeExternalAccountBindingRequest$, () => __Unit
|
|
1498
|
+
];
|
|
1021
1499
|
var RevokeCertificate$ = [9, n0, _RCev,
|
|
1022
1500
|
0, () => RevokeCertificateRequest$, () => RevokeCertificateResponse$
|
|
1023
1501
|
];
|
|
1024
1502
|
var SearchCertificates$ = [9, n0, _SC,
|
|
1025
1503
|
0, () => SearchCertificatesRequest$, () => SearchCertificatesResponse$
|
|
1026
1504
|
];
|
|
1505
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1506
|
+
0, () => TagResourceRequest$, () => __Unit
|
|
1507
|
+
];
|
|
1508
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1509
|
+
0, () => UntagResourceRequest$, () => __Unit
|
|
1510
|
+
];
|
|
1511
|
+
var UpdateAcmeDomainValidation$ = [9, n0, _UADV,
|
|
1512
|
+
2, () => UpdateAcmeDomainValidationRequest$, () => __Unit
|
|
1513
|
+
];
|
|
1514
|
+
var UpdateAcmeEndpoint$ = [9, n0, _UAE,
|
|
1515
|
+
2, () => UpdateAcmeEndpointRequest$, () => __Unit
|
|
1516
|
+
];
|
|
1027
1517
|
var UpdateCertificateOptions$ = [9, n0, _UCO,
|
|
1028
1518
|
0, () => UpdateCertificateOptionsRequest$, () => __Unit
|
|
1029
1519
|
];
|
|
@@ -1053,6 +1543,7 @@ const getRuntimeConfig$1 = (config) => {
|
|
|
1053
1543
|
serviceTarget: "CertificateManager",
|
|
1054
1544
|
},
|
|
1055
1545
|
serviceId: config?.serviceId ?? "ACM",
|
|
1546
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1056
1547
|
urlParser: config?.urlParser ?? parseUrl,
|
|
1057
1548
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1058
1549
|
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
@@ -1086,7 +1577,6 @@ const getRuntimeConfig = (config) => {
|
|
|
1086
1577
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1087
1578
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1088
1579
|
}, config),
|
|
1089
|
-
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1090
1580
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1091
1581
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1092
1582
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -1176,7 +1666,10 @@ class ACMClient extends Client {
|
|
|
1176
1666
|
|
|
1177
1667
|
class AddTagsToCertificateCommand extends Command
|
|
1178
1668
|
.classBuilder()
|
|
1179
|
-
.ep(
|
|
1669
|
+
.ep({
|
|
1670
|
+
...commonParams,
|
|
1671
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
1672
|
+
})
|
|
1180
1673
|
.m(function (Command, cs, config, o) {
|
|
1181
1674
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1182
1675
|
})
|
|
@@ -1186,141 +1679,417 @@ class AddTagsToCertificateCommand extends Command
|
|
|
1186
1679
|
.build() {
|
|
1187
1680
|
}
|
|
1188
1681
|
|
|
1189
|
-
class
|
|
1682
|
+
class CreateAcmeDomainValidationCommand extends Command
|
|
1190
1683
|
.classBuilder()
|
|
1191
|
-
.ep(
|
|
1684
|
+
.ep({
|
|
1685
|
+
...commonParams,
|
|
1686
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1687
|
+
})
|
|
1192
1688
|
.m(function (Command, cs, config, o) {
|
|
1193
1689
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1194
1690
|
})
|
|
1195
|
-
.s("CertificateManager", "
|
|
1196
|
-
.n("ACMClient", "
|
|
1197
|
-
.sc(
|
|
1691
|
+
.s("CertificateManager", "CreateAcmeDomainValidation", {})
|
|
1692
|
+
.n("ACMClient", "CreateAcmeDomainValidationCommand")
|
|
1693
|
+
.sc(CreateAcmeDomainValidation$)
|
|
1198
1694
|
.build() {
|
|
1199
1695
|
}
|
|
1200
1696
|
|
|
1201
|
-
class
|
|
1697
|
+
class CreateAcmeEndpointCommand extends Command
|
|
1202
1698
|
.classBuilder()
|
|
1203
|
-
.ep(
|
|
1699
|
+
.ep({
|
|
1700
|
+
...commonParams,
|
|
1701
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1702
|
+
})
|
|
1204
1703
|
.m(function (Command, cs, config, o) {
|
|
1205
1704
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1206
1705
|
})
|
|
1207
|
-
.s("CertificateManager", "
|
|
1208
|
-
.n("ACMClient", "
|
|
1209
|
-
.sc(
|
|
1706
|
+
.s("CertificateManager", "CreateAcmeEndpoint", {})
|
|
1707
|
+
.n("ACMClient", "CreateAcmeEndpointCommand")
|
|
1708
|
+
.sc(CreateAcmeEndpoint$)
|
|
1210
1709
|
.build() {
|
|
1211
1710
|
}
|
|
1212
1711
|
|
|
1213
|
-
class
|
|
1712
|
+
class CreateAcmeExternalAccountBindingCommand extends Command
|
|
1214
1713
|
.classBuilder()
|
|
1215
|
-
.ep(
|
|
1714
|
+
.ep({
|
|
1715
|
+
...commonParams,
|
|
1716
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1717
|
+
})
|
|
1216
1718
|
.m(function (Command, cs, config, o) {
|
|
1217
1719
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1218
1720
|
})
|
|
1219
|
-
.s("CertificateManager", "
|
|
1220
|
-
.n("ACMClient", "
|
|
1221
|
-
.sc(
|
|
1721
|
+
.s("CertificateManager", "CreateAcmeExternalAccountBinding", {})
|
|
1722
|
+
.n("ACMClient", "CreateAcmeExternalAccountBindingCommand")
|
|
1723
|
+
.sc(CreateAcmeExternalAccountBinding$)
|
|
1222
1724
|
.build() {
|
|
1223
1725
|
}
|
|
1224
1726
|
|
|
1225
|
-
class
|
|
1727
|
+
class DeleteAcmeDomainValidationCommand extends Command
|
|
1226
1728
|
.classBuilder()
|
|
1227
|
-
.ep(
|
|
1729
|
+
.ep({
|
|
1730
|
+
...commonParams,
|
|
1731
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1732
|
+
})
|
|
1228
1733
|
.m(function (Command, cs, config, o) {
|
|
1229
1734
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1230
1735
|
})
|
|
1231
|
-
.s("CertificateManager", "
|
|
1232
|
-
.n("ACMClient", "
|
|
1233
|
-
.sc(
|
|
1736
|
+
.s("CertificateManager", "DeleteAcmeDomainValidation", {})
|
|
1737
|
+
.n("ACMClient", "DeleteAcmeDomainValidationCommand")
|
|
1738
|
+
.sc(DeleteAcmeDomainValidation$)
|
|
1234
1739
|
.build() {
|
|
1235
1740
|
}
|
|
1236
1741
|
|
|
1237
|
-
class
|
|
1742
|
+
class DeleteAcmeEndpointCommand extends Command
|
|
1238
1743
|
.classBuilder()
|
|
1239
|
-
.ep(
|
|
1744
|
+
.ep({
|
|
1745
|
+
...commonParams,
|
|
1746
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1747
|
+
})
|
|
1240
1748
|
.m(function (Command, cs, config, o) {
|
|
1241
1749
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1242
1750
|
})
|
|
1243
|
-
.s("CertificateManager", "
|
|
1244
|
-
.n("ACMClient", "
|
|
1245
|
-
.sc(
|
|
1751
|
+
.s("CertificateManager", "DeleteAcmeEndpoint", {})
|
|
1752
|
+
.n("ACMClient", "DeleteAcmeEndpointCommand")
|
|
1753
|
+
.sc(DeleteAcmeEndpoint$)
|
|
1246
1754
|
.build() {
|
|
1247
1755
|
}
|
|
1248
1756
|
|
|
1249
|
-
class
|
|
1757
|
+
class DeleteAcmeExternalAccountBindingCommand extends Command
|
|
1250
1758
|
.classBuilder()
|
|
1251
|
-
.ep(
|
|
1759
|
+
.ep({
|
|
1760
|
+
...commonParams,
|
|
1761
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1762
|
+
})
|
|
1252
1763
|
.m(function (Command, cs, config, o) {
|
|
1253
1764
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1254
1765
|
})
|
|
1255
|
-
.s("CertificateManager", "
|
|
1256
|
-
.n("ACMClient", "
|
|
1257
|
-
.sc(
|
|
1766
|
+
.s("CertificateManager", "DeleteAcmeExternalAccountBinding", {})
|
|
1767
|
+
.n("ACMClient", "DeleteAcmeExternalAccountBindingCommand")
|
|
1768
|
+
.sc(DeleteAcmeExternalAccountBinding$)
|
|
1258
1769
|
.build() {
|
|
1259
1770
|
}
|
|
1260
1771
|
|
|
1261
|
-
class
|
|
1772
|
+
class DeleteCertificateCommand extends Command
|
|
1262
1773
|
.classBuilder()
|
|
1263
|
-
.ep(
|
|
1774
|
+
.ep({
|
|
1775
|
+
...commonParams,
|
|
1776
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
1777
|
+
})
|
|
1264
1778
|
.m(function (Command, cs, config, o) {
|
|
1265
1779
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1266
1780
|
})
|
|
1267
|
-
.s("CertificateManager", "
|
|
1268
|
-
.n("ACMClient", "
|
|
1269
|
-
.sc(
|
|
1781
|
+
.s("CertificateManager", "DeleteCertificate", {})
|
|
1782
|
+
.n("ACMClient", "DeleteCertificateCommand")
|
|
1783
|
+
.sc(DeleteCertificate$)
|
|
1270
1784
|
.build() {
|
|
1271
1785
|
}
|
|
1272
1786
|
|
|
1273
|
-
class
|
|
1787
|
+
class DescribeAcmeAccountCommand extends Command
|
|
1274
1788
|
.classBuilder()
|
|
1275
|
-
.ep(
|
|
1789
|
+
.ep({
|
|
1790
|
+
...commonParams,
|
|
1791
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1792
|
+
})
|
|
1276
1793
|
.m(function (Command, cs, config, o) {
|
|
1277
1794
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1278
1795
|
})
|
|
1279
|
-
.s("CertificateManager", "
|
|
1280
|
-
.n("ACMClient", "
|
|
1281
|
-
.sc(
|
|
1796
|
+
.s("CertificateManager", "DescribeAcmeAccount", {})
|
|
1797
|
+
.n("ACMClient", "DescribeAcmeAccountCommand")
|
|
1798
|
+
.sc(DescribeAcmeAccount$)
|
|
1282
1799
|
.build() {
|
|
1283
1800
|
}
|
|
1284
1801
|
|
|
1285
|
-
class
|
|
1802
|
+
class DescribeAcmeDomainValidationCommand extends Command
|
|
1286
1803
|
.classBuilder()
|
|
1287
|
-
.ep(
|
|
1804
|
+
.ep({
|
|
1805
|
+
...commonParams,
|
|
1806
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1807
|
+
})
|
|
1288
1808
|
.m(function (Command, cs, config, o) {
|
|
1289
1809
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1290
1810
|
})
|
|
1291
|
-
.s("CertificateManager", "
|
|
1292
|
-
.n("ACMClient", "
|
|
1293
|
-
.sc(
|
|
1811
|
+
.s("CertificateManager", "DescribeAcmeDomainValidation", {})
|
|
1812
|
+
.n("ACMClient", "DescribeAcmeDomainValidationCommand")
|
|
1813
|
+
.sc(DescribeAcmeDomainValidation$)
|
|
1294
1814
|
.build() {
|
|
1295
1815
|
}
|
|
1296
1816
|
|
|
1297
|
-
class
|
|
1817
|
+
class DescribeAcmeEndpointCommand extends Command
|
|
1298
1818
|
.classBuilder()
|
|
1299
|
-
.ep(
|
|
1819
|
+
.ep({
|
|
1820
|
+
...commonParams,
|
|
1821
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1822
|
+
})
|
|
1300
1823
|
.m(function (Command, cs, config, o) {
|
|
1301
1824
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1302
1825
|
})
|
|
1303
|
-
.s("CertificateManager", "
|
|
1304
|
-
.n("ACMClient", "
|
|
1305
|
-
.sc(
|
|
1826
|
+
.s("CertificateManager", "DescribeAcmeEndpoint", {})
|
|
1827
|
+
.n("ACMClient", "DescribeAcmeEndpointCommand")
|
|
1828
|
+
.sc(DescribeAcmeEndpoint$)
|
|
1306
1829
|
.build() {
|
|
1307
1830
|
}
|
|
1308
1831
|
|
|
1309
|
-
class
|
|
1832
|
+
class DescribeAcmeExternalAccountBindingCommand extends Command
|
|
1310
1833
|
.classBuilder()
|
|
1311
|
-
.ep(
|
|
1834
|
+
.ep({
|
|
1835
|
+
...commonParams,
|
|
1836
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1837
|
+
})
|
|
1312
1838
|
.m(function (Command, cs, config, o) {
|
|
1313
1839
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1314
1840
|
})
|
|
1315
|
-
.s("CertificateManager", "
|
|
1316
|
-
.n("ACMClient", "
|
|
1317
|
-
.sc(
|
|
1841
|
+
.s("CertificateManager", "DescribeAcmeExternalAccountBinding", {})
|
|
1842
|
+
.n("ACMClient", "DescribeAcmeExternalAccountBindingCommand")
|
|
1843
|
+
.sc(DescribeAcmeExternalAccountBinding$)
|
|
1318
1844
|
.build() {
|
|
1319
1845
|
}
|
|
1320
1846
|
|
|
1321
|
-
class
|
|
1847
|
+
class DescribeCertificateCommand extends Command
|
|
1322
1848
|
.classBuilder()
|
|
1323
|
-
.ep(
|
|
1849
|
+
.ep({
|
|
1850
|
+
...commonParams,
|
|
1851
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
1852
|
+
})
|
|
1853
|
+
.m(function (Command, cs, config, o) {
|
|
1854
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1855
|
+
})
|
|
1856
|
+
.s("CertificateManager", "DescribeCertificate", {})
|
|
1857
|
+
.n("ACMClient", "DescribeCertificateCommand")
|
|
1858
|
+
.sc(DescribeCertificate$)
|
|
1859
|
+
.build() {
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
class ExportCertificateCommand extends Command
|
|
1863
|
+
.classBuilder()
|
|
1864
|
+
.ep({
|
|
1865
|
+
...commonParams,
|
|
1866
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
1867
|
+
})
|
|
1868
|
+
.m(function (Command, cs, config, o) {
|
|
1869
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1870
|
+
})
|
|
1871
|
+
.s("CertificateManager", "ExportCertificate", {})
|
|
1872
|
+
.n("ACMClient", "ExportCertificateCommand")
|
|
1873
|
+
.sc(ExportCertificate$)
|
|
1874
|
+
.build() {
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
class GetAccountConfigurationCommand extends Command
|
|
1878
|
+
.classBuilder()
|
|
1879
|
+
.ep({
|
|
1880
|
+
...commonParams,
|
|
1881
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
1882
|
+
})
|
|
1883
|
+
.m(function (Command, cs, config, o) {
|
|
1884
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1885
|
+
})
|
|
1886
|
+
.s("CertificateManager", "GetAccountConfiguration", {})
|
|
1887
|
+
.n("ACMClient", "GetAccountConfigurationCommand")
|
|
1888
|
+
.sc(GetAccountConfiguration$)
|
|
1889
|
+
.build() {
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
class GetAcmeExternalAccountBindingCredentialsCommand extends Command
|
|
1893
|
+
.classBuilder()
|
|
1894
|
+
.ep({
|
|
1895
|
+
...commonParams,
|
|
1896
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1897
|
+
})
|
|
1898
|
+
.m(function (Command, cs, config, o) {
|
|
1899
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1900
|
+
})
|
|
1901
|
+
.s("CertificateManager", "GetAcmeExternalAccountBindingCredentials", {})
|
|
1902
|
+
.n("ACMClient", "GetAcmeExternalAccountBindingCredentialsCommand")
|
|
1903
|
+
.sc(GetAcmeExternalAccountBindingCredentials$)
|
|
1904
|
+
.build() {
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
class GetCertificateCommand extends Command
|
|
1908
|
+
.classBuilder()
|
|
1909
|
+
.ep({
|
|
1910
|
+
...commonParams,
|
|
1911
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
1912
|
+
})
|
|
1913
|
+
.m(function (Command, cs, config, o) {
|
|
1914
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1915
|
+
})
|
|
1916
|
+
.s("CertificateManager", "GetCertificate", {})
|
|
1917
|
+
.n("ACMClient", "GetCertificateCommand")
|
|
1918
|
+
.sc(GetCertificate$)
|
|
1919
|
+
.build() {
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
class ImportCertificateCommand extends Command
|
|
1923
|
+
.classBuilder()
|
|
1924
|
+
.ep({
|
|
1925
|
+
...commonParams,
|
|
1926
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
1927
|
+
})
|
|
1928
|
+
.m(function (Command, cs, config, o) {
|
|
1929
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1930
|
+
})
|
|
1931
|
+
.s("CertificateManager", "ImportCertificate", {})
|
|
1932
|
+
.n("ACMClient", "ImportCertificateCommand")
|
|
1933
|
+
.sc(ImportCertificate$)
|
|
1934
|
+
.build() {
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
class ListAcmeAccountsCommand extends Command
|
|
1938
|
+
.classBuilder()
|
|
1939
|
+
.ep({
|
|
1940
|
+
...commonParams,
|
|
1941
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1942
|
+
})
|
|
1943
|
+
.m(function (Command, cs, config, o) {
|
|
1944
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1945
|
+
})
|
|
1946
|
+
.s("CertificateManager", "ListAcmeAccounts", {})
|
|
1947
|
+
.n("ACMClient", "ListAcmeAccountsCommand")
|
|
1948
|
+
.sc(ListAcmeAccounts$)
|
|
1949
|
+
.build() {
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
class ListAcmeDomainValidationsCommand extends Command
|
|
1953
|
+
.classBuilder()
|
|
1954
|
+
.ep({
|
|
1955
|
+
...commonParams,
|
|
1956
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1957
|
+
})
|
|
1958
|
+
.m(function (Command, cs, config, o) {
|
|
1959
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1960
|
+
})
|
|
1961
|
+
.s("CertificateManager", "ListAcmeDomainValidations", {})
|
|
1962
|
+
.n("ACMClient", "ListAcmeDomainValidationsCommand")
|
|
1963
|
+
.sc(ListAcmeDomainValidations$)
|
|
1964
|
+
.build() {
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
class ListAcmeEndpointsCommand extends Command
|
|
1968
|
+
.classBuilder()
|
|
1969
|
+
.ep({
|
|
1970
|
+
...commonParams,
|
|
1971
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1972
|
+
})
|
|
1973
|
+
.m(function (Command, cs, config, o) {
|
|
1974
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1975
|
+
})
|
|
1976
|
+
.s("CertificateManager", "ListAcmeEndpoints", {})
|
|
1977
|
+
.n("ACMClient", "ListAcmeEndpointsCommand")
|
|
1978
|
+
.sc(ListAcmeEndpoints$)
|
|
1979
|
+
.build() {
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
class ListAcmeExternalAccountBindingsCommand extends Command
|
|
1983
|
+
.classBuilder()
|
|
1984
|
+
.ep({
|
|
1985
|
+
...commonParams,
|
|
1986
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1987
|
+
})
|
|
1988
|
+
.m(function (Command, cs, config, o) {
|
|
1989
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1990
|
+
})
|
|
1991
|
+
.s("CertificateManager", "ListAcmeExternalAccountBindings", {})
|
|
1992
|
+
.n("ACMClient", "ListAcmeExternalAccountBindingsCommand")
|
|
1993
|
+
.sc(ListAcmeExternalAccountBindings$)
|
|
1994
|
+
.build() {
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
class ListCertificatesCommand extends Command
|
|
1998
|
+
.classBuilder()
|
|
1999
|
+
.ep({
|
|
2000
|
+
...commonParams,
|
|
2001
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2002
|
+
})
|
|
2003
|
+
.m(function (Command, cs, config, o) {
|
|
2004
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2005
|
+
})
|
|
2006
|
+
.s("CertificateManager", "ListCertificates", {})
|
|
2007
|
+
.n("ACMClient", "ListCertificatesCommand")
|
|
2008
|
+
.sc(ListCertificates$)
|
|
2009
|
+
.build() {
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
class ListTagsForCertificateCommand extends Command
|
|
2013
|
+
.classBuilder()
|
|
2014
|
+
.ep({
|
|
2015
|
+
...commonParams,
|
|
2016
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2017
|
+
})
|
|
2018
|
+
.m(function (Command, cs, config, o) {
|
|
2019
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2020
|
+
})
|
|
2021
|
+
.s("CertificateManager", "ListTagsForCertificate", {})
|
|
2022
|
+
.n("ACMClient", "ListTagsForCertificateCommand")
|
|
2023
|
+
.sc(ListTagsForCertificate$)
|
|
2024
|
+
.build() {
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
class ListTagsForResourceCommand extends Command
|
|
2028
|
+
.classBuilder()
|
|
2029
|
+
.ep({
|
|
2030
|
+
...commonParams,
|
|
2031
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2032
|
+
})
|
|
2033
|
+
.m(function (Command, cs, config, o) {
|
|
2034
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2035
|
+
})
|
|
2036
|
+
.s("CertificateManager", "ListTagsForResource", {})
|
|
2037
|
+
.n("ACMClient", "ListTagsForResourceCommand")
|
|
2038
|
+
.sc(ListTagsForResource$)
|
|
2039
|
+
.build() {
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
class PutAccountConfigurationCommand extends Command
|
|
2043
|
+
.classBuilder()
|
|
2044
|
+
.ep({
|
|
2045
|
+
...commonParams,
|
|
2046
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2047
|
+
})
|
|
2048
|
+
.m(function (Command, cs, config, o) {
|
|
2049
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2050
|
+
})
|
|
2051
|
+
.s("CertificateManager", "PutAccountConfiguration", {})
|
|
2052
|
+
.n("ACMClient", "PutAccountConfigurationCommand")
|
|
2053
|
+
.sc(PutAccountConfiguration$)
|
|
2054
|
+
.build() {
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
class RemoveTagsFromCertificateCommand extends Command
|
|
2058
|
+
.classBuilder()
|
|
2059
|
+
.ep({
|
|
2060
|
+
...commonParams,
|
|
2061
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2062
|
+
})
|
|
2063
|
+
.m(function (Command, cs, config, o) {
|
|
2064
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2065
|
+
})
|
|
2066
|
+
.s("CertificateManager", "RemoveTagsFromCertificate", {})
|
|
2067
|
+
.n("ACMClient", "RemoveTagsFromCertificateCommand")
|
|
2068
|
+
.sc(RemoveTagsFromCertificate$)
|
|
2069
|
+
.build() {
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
class RenewCertificateCommand extends Command
|
|
2073
|
+
.classBuilder()
|
|
2074
|
+
.ep({
|
|
2075
|
+
...commonParams,
|
|
2076
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2077
|
+
})
|
|
2078
|
+
.m(function (Command, cs, config, o) {
|
|
2079
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2080
|
+
})
|
|
2081
|
+
.s("CertificateManager", "RenewCertificate", {})
|
|
2082
|
+
.n("ACMClient", "RenewCertificateCommand")
|
|
2083
|
+
.sc(RenewCertificate$)
|
|
2084
|
+
.build() {
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
class RequestCertificateCommand extends Command
|
|
2088
|
+
.classBuilder()
|
|
2089
|
+
.ep({
|
|
2090
|
+
...commonParams,
|
|
2091
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2092
|
+
})
|
|
1324
2093
|
.m(function (Command, cs, config, o) {
|
|
1325
2094
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1326
2095
|
})
|
|
@@ -1332,7 +2101,10 @@ class RequestCertificateCommand extends Command
|
|
|
1332
2101
|
|
|
1333
2102
|
class ResendValidationEmailCommand extends Command
|
|
1334
2103
|
.classBuilder()
|
|
1335
|
-
.ep(
|
|
2104
|
+
.ep({
|
|
2105
|
+
...commonParams,
|
|
2106
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2107
|
+
})
|
|
1336
2108
|
.m(function (Command, cs, config, o) {
|
|
1337
2109
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1338
2110
|
})
|
|
@@ -1342,9 +2114,42 @@ class ResendValidationEmailCommand extends Command
|
|
|
1342
2114
|
.build() {
|
|
1343
2115
|
}
|
|
1344
2116
|
|
|
2117
|
+
class RevokeAcmeAccountCommand extends Command
|
|
2118
|
+
.classBuilder()
|
|
2119
|
+
.ep({
|
|
2120
|
+
...commonParams,
|
|
2121
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
2122
|
+
})
|
|
2123
|
+
.m(function (Command, cs, config, o) {
|
|
2124
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2125
|
+
})
|
|
2126
|
+
.s("CertificateManager", "RevokeAcmeAccount", {})
|
|
2127
|
+
.n("ACMClient", "RevokeAcmeAccountCommand")
|
|
2128
|
+
.sc(RevokeAcmeAccount$)
|
|
2129
|
+
.build() {
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
class RevokeAcmeExternalAccountBindingCommand extends Command
|
|
2133
|
+
.classBuilder()
|
|
2134
|
+
.ep({
|
|
2135
|
+
...commonParams,
|
|
2136
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
2137
|
+
})
|
|
2138
|
+
.m(function (Command, cs, config, o) {
|
|
2139
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2140
|
+
})
|
|
2141
|
+
.s("CertificateManager", "RevokeAcmeExternalAccountBinding", {})
|
|
2142
|
+
.n("ACMClient", "RevokeAcmeExternalAccountBindingCommand")
|
|
2143
|
+
.sc(RevokeAcmeExternalAccountBinding$)
|
|
2144
|
+
.build() {
|
|
2145
|
+
}
|
|
2146
|
+
|
|
1345
2147
|
class RevokeCertificateCommand extends Command
|
|
1346
2148
|
.classBuilder()
|
|
1347
|
-
.ep(
|
|
2149
|
+
.ep({
|
|
2150
|
+
...commonParams,
|
|
2151
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2152
|
+
})
|
|
1348
2153
|
.m(function (Command, cs, config, o) {
|
|
1349
2154
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1350
2155
|
})
|
|
@@ -1356,7 +2161,10 @@ class RevokeCertificateCommand extends Command
|
|
|
1356
2161
|
|
|
1357
2162
|
class SearchCertificatesCommand extends Command
|
|
1358
2163
|
.classBuilder()
|
|
1359
|
-
.ep(
|
|
2164
|
+
.ep({
|
|
2165
|
+
...commonParams,
|
|
2166
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2167
|
+
})
|
|
1360
2168
|
.m(function (Command, cs, config, o) {
|
|
1361
2169
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1362
2170
|
})
|
|
@@ -1366,9 +2174,72 @@ class SearchCertificatesCommand extends Command
|
|
|
1366
2174
|
.build() {
|
|
1367
2175
|
}
|
|
1368
2176
|
|
|
2177
|
+
class TagResourceCommand extends Command
|
|
2178
|
+
.classBuilder()
|
|
2179
|
+
.ep({
|
|
2180
|
+
...commonParams,
|
|
2181
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2182
|
+
})
|
|
2183
|
+
.m(function (Command, cs, config, o) {
|
|
2184
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2185
|
+
})
|
|
2186
|
+
.s("CertificateManager", "TagResource", {})
|
|
2187
|
+
.n("ACMClient", "TagResourceCommand")
|
|
2188
|
+
.sc(TagResource$)
|
|
2189
|
+
.build() {
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
class UntagResourceCommand extends Command
|
|
2193
|
+
.classBuilder()
|
|
2194
|
+
.ep({
|
|
2195
|
+
...commonParams,
|
|
2196
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2197
|
+
})
|
|
2198
|
+
.m(function (Command, cs, config, o) {
|
|
2199
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2200
|
+
})
|
|
2201
|
+
.s("CertificateManager", "UntagResource", {})
|
|
2202
|
+
.n("ACMClient", "UntagResourceCommand")
|
|
2203
|
+
.sc(UntagResource$)
|
|
2204
|
+
.build() {
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
class UpdateAcmeDomainValidationCommand extends Command
|
|
2208
|
+
.classBuilder()
|
|
2209
|
+
.ep({
|
|
2210
|
+
...commonParams,
|
|
2211
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
2212
|
+
})
|
|
2213
|
+
.m(function (Command, cs, config, o) {
|
|
2214
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2215
|
+
})
|
|
2216
|
+
.s("CertificateManager", "UpdateAcmeDomainValidation", {})
|
|
2217
|
+
.n("ACMClient", "UpdateAcmeDomainValidationCommand")
|
|
2218
|
+
.sc(UpdateAcmeDomainValidation$)
|
|
2219
|
+
.build() {
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
class UpdateAcmeEndpointCommand extends Command
|
|
2223
|
+
.classBuilder()
|
|
2224
|
+
.ep({
|
|
2225
|
+
...commonParams,
|
|
2226
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
2227
|
+
})
|
|
2228
|
+
.m(function (Command, cs, config, o) {
|
|
2229
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2230
|
+
})
|
|
2231
|
+
.s("CertificateManager", "UpdateAcmeEndpoint", {})
|
|
2232
|
+
.n("ACMClient", "UpdateAcmeEndpointCommand")
|
|
2233
|
+
.sc(UpdateAcmeEndpoint$)
|
|
2234
|
+
.build() {
|
|
2235
|
+
}
|
|
2236
|
+
|
|
1369
2237
|
class UpdateCertificateOptionsCommand extends Command
|
|
1370
2238
|
.classBuilder()
|
|
1371
|
-
.ep(
|
|
2239
|
+
.ep({
|
|
2240
|
+
...commonParams,
|
|
2241
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
2242
|
+
})
|
|
1372
2243
|
.m(function (Command, cs, config, o) {
|
|
1373
2244
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1374
2245
|
})
|
|
@@ -1378,10 +2249,180 @@ class UpdateCertificateOptionsCommand extends Command
|
|
|
1378
2249
|
.build() {
|
|
1379
2250
|
}
|
|
1380
2251
|
|
|
2252
|
+
const paginateListAcmeAccounts = createPaginator(ACMClient, ListAcmeAccountsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2253
|
+
|
|
2254
|
+
const paginateListAcmeDomainValidations = createPaginator(ACMClient, ListAcmeDomainValidationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2255
|
+
|
|
2256
|
+
const paginateListAcmeEndpoints = createPaginator(ACMClient, ListAcmeEndpointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2257
|
+
|
|
2258
|
+
const paginateListAcmeExternalAccountBindings = createPaginator(ACMClient, ListAcmeExternalAccountBindingsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2259
|
+
|
|
1381
2260
|
const paginateListCertificates = createPaginator(ACMClient, ListCertificatesCommand, "NextToken", "NextToken", "MaxItems");
|
|
1382
2261
|
|
|
1383
2262
|
const paginateSearchCertificates = createPaginator(ACMClient, SearchCertificatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1384
2263
|
|
|
2264
|
+
const checkState$4 = async (client, input) => {
|
|
2265
|
+
let reason;
|
|
2266
|
+
try {
|
|
2267
|
+
let result = await client.send(new DescribeAcmeDomainValidationCommand(input));
|
|
2268
|
+
reason = result;
|
|
2269
|
+
try {
|
|
2270
|
+
const returnComparator = () => {
|
|
2271
|
+
return result.AcmeDomainValidation.Status;
|
|
2272
|
+
};
|
|
2273
|
+
if (returnComparator() === "DELETING") {
|
|
2274
|
+
return { state: WaiterState.RETRY, reason };
|
|
2275
|
+
}
|
|
2276
|
+
}
|
|
2277
|
+
catch (e) { }
|
|
2278
|
+
}
|
|
2279
|
+
catch (exception) {
|
|
2280
|
+
reason = exception;
|
|
2281
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
2282
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
2283
|
+
}
|
|
2284
|
+
}
|
|
2285
|
+
return { state: WaiterState.RETRY, reason };
|
|
2286
|
+
};
|
|
2287
|
+
const waitForAcmeDomainValidationDeleted = async (params, input) => {
|
|
2288
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
2289
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
2290
|
+
};
|
|
2291
|
+
const waitUntilAcmeDomainValidationDeleted = async (params, input) => {
|
|
2292
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
2293
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
2294
|
+
return checkExceptions(result);
|
|
2295
|
+
};
|
|
2296
|
+
|
|
2297
|
+
const checkState$3 = async (client, input) => {
|
|
2298
|
+
let reason;
|
|
2299
|
+
try {
|
|
2300
|
+
let result = await client.send(new DescribeAcmeDomainValidationCommand(input));
|
|
2301
|
+
reason = result;
|
|
2302
|
+
try {
|
|
2303
|
+
const returnComparator = () => {
|
|
2304
|
+
return result.AcmeDomainValidation.Status;
|
|
2305
|
+
};
|
|
2306
|
+
if (returnComparator() === "VALID") {
|
|
2307
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
2308
|
+
}
|
|
2309
|
+
}
|
|
2310
|
+
catch (e) { }
|
|
2311
|
+
try {
|
|
2312
|
+
const returnComparator = () => {
|
|
2313
|
+
return result.AcmeDomainValidation.Status;
|
|
2314
|
+
};
|
|
2315
|
+
if (returnComparator() === "INVALID") {
|
|
2316
|
+
return { state: WaiterState.FAILURE, reason };
|
|
2317
|
+
}
|
|
2318
|
+
}
|
|
2319
|
+
catch (e) { }
|
|
2320
|
+
try {
|
|
2321
|
+
const returnComparator = () => {
|
|
2322
|
+
return result.AcmeDomainValidation.Status;
|
|
2323
|
+
};
|
|
2324
|
+
if (returnComparator() === "VALIDATING") {
|
|
2325
|
+
return { state: WaiterState.RETRY, reason };
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
catch (e) { }
|
|
2329
|
+
}
|
|
2330
|
+
catch (exception) {
|
|
2331
|
+
reason = exception;
|
|
2332
|
+
}
|
|
2333
|
+
return { state: WaiterState.RETRY, reason };
|
|
2334
|
+
};
|
|
2335
|
+
const waitForAcmeDomainValidationValidated = async (params, input) => {
|
|
2336
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
2337
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
2338
|
+
};
|
|
2339
|
+
const waitUntilAcmeDomainValidationValidated = async (params, input) => {
|
|
2340
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
2341
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
2342
|
+
return checkExceptions(result);
|
|
2343
|
+
};
|
|
2344
|
+
|
|
2345
|
+
const checkState$2 = async (client, input) => {
|
|
2346
|
+
let reason;
|
|
2347
|
+
try {
|
|
2348
|
+
let result = await client.send(new DescribeAcmeEndpointCommand(input));
|
|
2349
|
+
reason = result;
|
|
2350
|
+
try {
|
|
2351
|
+
const returnComparator = () => {
|
|
2352
|
+
return result.AcmeEndpoint.Status;
|
|
2353
|
+
};
|
|
2354
|
+
if (returnComparator() === "ACTIVE") {
|
|
2355
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
2356
|
+
}
|
|
2357
|
+
}
|
|
2358
|
+
catch (e) { }
|
|
2359
|
+
try {
|
|
2360
|
+
const returnComparator = () => {
|
|
2361
|
+
return result.AcmeEndpoint.Status;
|
|
2362
|
+
};
|
|
2363
|
+
if (returnComparator() === "FAILED") {
|
|
2364
|
+
return { state: WaiterState.FAILURE, reason };
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2367
|
+
catch (e) { }
|
|
2368
|
+
try {
|
|
2369
|
+
const returnComparator = () => {
|
|
2370
|
+
return result.AcmeEndpoint.Status;
|
|
2371
|
+
};
|
|
2372
|
+
if (returnComparator() === "CREATING") {
|
|
2373
|
+
return { state: WaiterState.RETRY, reason };
|
|
2374
|
+
}
|
|
2375
|
+
}
|
|
2376
|
+
catch (e) { }
|
|
2377
|
+
}
|
|
2378
|
+
catch (exception) {
|
|
2379
|
+
reason = exception;
|
|
2380
|
+
}
|
|
2381
|
+
return { state: WaiterState.RETRY, reason };
|
|
2382
|
+
};
|
|
2383
|
+
const waitForAcmeEndpointActive = async (params, input) => {
|
|
2384
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
2385
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
2386
|
+
};
|
|
2387
|
+
const waitUntilAcmeEndpointActive = async (params, input) => {
|
|
2388
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
2389
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
2390
|
+
return checkExceptions(result);
|
|
2391
|
+
};
|
|
2392
|
+
|
|
2393
|
+
const checkState$1 = async (client, input) => {
|
|
2394
|
+
let reason;
|
|
2395
|
+
try {
|
|
2396
|
+
let result = await client.send(new DescribeAcmeEndpointCommand(input));
|
|
2397
|
+
reason = result;
|
|
2398
|
+
try {
|
|
2399
|
+
const returnComparator = () => {
|
|
2400
|
+
return result.AcmeEndpoint.Status;
|
|
2401
|
+
};
|
|
2402
|
+
if (returnComparator() === "DELETING") {
|
|
2403
|
+
return { state: WaiterState.RETRY, reason };
|
|
2404
|
+
}
|
|
2405
|
+
}
|
|
2406
|
+
catch (e) { }
|
|
2407
|
+
}
|
|
2408
|
+
catch (exception) {
|
|
2409
|
+
reason = exception;
|
|
2410
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
2411
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
2412
|
+
}
|
|
2413
|
+
}
|
|
2414
|
+
return { state: WaiterState.RETRY, reason };
|
|
2415
|
+
};
|
|
2416
|
+
const waitForAcmeEndpointDeleted = async (params, input) => {
|
|
2417
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
2418
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
2419
|
+
};
|
|
2420
|
+
const waitUntilAcmeEndpointDeleted = async (params, input) => {
|
|
2421
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
2422
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
2423
|
+
return checkExceptions(result);
|
|
2424
|
+
};
|
|
2425
|
+
|
|
1385
2426
|
const checkState = async (client, input) => {
|
|
1386
2427
|
let reason;
|
|
1387
2428
|
try {
|
|
@@ -1449,34 +2490,69 @@ const waitUntilCertificateValidated = async (params, input) => {
|
|
|
1449
2490
|
|
|
1450
2491
|
const commands = {
|
|
1451
2492
|
AddTagsToCertificateCommand,
|
|
2493
|
+
CreateAcmeDomainValidationCommand,
|
|
2494
|
+
CreateAcmeEndpointCommand,
|
|
2495
|
+
CreateAcmeExternalAccountBindingCommand,
|
|
2496
|
+
DeleteAcmeDomainValidationCommand,
|
|
2497
|
+
DeleteAcmeEndpointCommand,
|
|
2498
|
+
DeleteAcmeExternalAccountBindingCommand,
|
|
1452
2499
|
DeleteCertificateCommand,
|
|
2500
|
+
DescribeAcmeAccountCommand,
|
|
2501
|
+
DescribeAcmeDomainValidationCommand,
|
|
2502
|
+
DescribeAcmeEndpointCommand,
|
|
2503
|
+
DescribeAcmeExternalAccountBindingCommand,
|
|
1453
2504
|
DescribeCertificateCommand,
|
|
1454
2505
|
ExportCertificateCommand,
|
|
1455
2506
|
GetAccountConfigurationCommand,
|
|
2507
|
+
GetAcmeExternalAccountBindingCredentialsCommand,
|
|
1456
2508
|
GetCertificateCommand,
|
|
1457
2509
|
ImportCertificateCommand,
|
|
2510
|
+
ListAcmeAccountsCommand,
|
|
2511
|
+
ListAcmeDomainValidationsCommand,
|
|
2512
|
+
ListAcmeEndpointsCommand,
|
|
2513
|
+
ListAcmeExternalAccountBindingsCommand,
|
|
1458
2514
|
ListCertificatesCommand,
|
|
1459
2515
|
ListTagsForCertificateCommand,
|
|
2516
|
+
ListTagsForResourceCommand,
|
|
1460
2517
|
PutAccountConfigurationCommand,
|
|
1461
2518
|
RemoveTagsFromCertificateCommand,
|
|
1462
2519
|
RenewCertificateCommand,
|
|
1463
2520
|
RequestCertificateCommand,
|
|
1464
2521
|
ResendValidationEmailCommand,
|
|
2522
|
+
RevokeAcmeAccountCommand,
|
|
2523
|
+
RevokeAcmeExternalAccountBindingCommand,
|
|
1465
2524
|
RevokeCertificateCommand,
|
|
1466
2525
|
SearchCertificatesCommand,
|
|
2526
|
+
TagResourceCommand,
|
|
2527
|
+
UntagResourceCommand,
|
|
2528
|
+
UpdateAcmeDomainValidationCommand,
|
|
2529
|
+
UpdateAcmeEndpointCommand,
|
|
1467
2530
|
UpdateCertificateOptionsCommand,
|
|
1468
2531
|
};
|
|
1469
2532
|
const paginators = {
|
|
2533
|
+
paginateListAcmeAccounts,
|
|
2534
|
+
paginateListAcmeDomainValidations,
|
|
2535
|
+
paginateListAcmeEndpoints,
|
|
2536
|
+
paginateListAcmeExternalAccountBindings,
|
|
1470
2537
|
paginateListCertificates,
|
|
1471
2538
|
paginateSearchCertificates,
|
|
1472
2539
|
};
|
|
1473
2540
|
const waiters = {
|
|
2541
|
+
waitUntilAcmeDomainValidationValidated,
|
|
2542
|
+
waitUntilAcmeDomainValidationDeleted,
|
|
2543
|
+
waitUntilAcmeEndpointActive,
|
|
2544
|
+
waitUntilAcmeEndpointDeleted,
|
|
1474
2545
|
waitUntilCertificateValidated,
|
|
1475
2546
|
};
|
|
1476
2547
|
class ACM extends ACMClient {
|
|
1477
2548
|
}
|
|
1478
2549
|
createAggregatedClient(commands, ACM, { paginators, waiters });
|
|
1479
2550
|
|
|
2551
|
+
const CertificateKeyPairOrigin = {
|
|
2552
|
+
ACME: "ACME",
|
|
2553
|
+
AWS_MANAGED: "AWS_MANAGED",
|
|
2554
|
+
CUSTOMER_PROVIDED: "CUSTOMER_PROVIDED",
|
|
2555
|
+
};
|
|
1480
2556
|
const CertificateExport = {
|
|
1481
2557
|
DISABLED: "DISABLED",
|
|
1482
2558
|
ENABLED: "ENABLED",
|
|
@@ -1513,9 +2589,56 @@ const ValidationMethod = {
|
|
|
1513
2589
|
EMAIL: "EMAIL",
|
|
1514
2590
|
HTTP: "HTTP",
|
|
1515
2591
|
};
|
|
2592
|
+
const AcmeAccountStatus = {
|
|
2593
|
+
DEACTIVATED: "DEACTIVATED",
|
|
2594
|
+
REVOKED: "REVOKED",
|
|
2595
|
+
VALID: "VALID",
|
|
2596
|
+
};
|
|
2597
|
+
const AcmeAuthorizationBehavior = {
|
|
2598
|
+
PRE_APPROVED: "PRE_APPROVED",
|
|
2599
|
+
};
|
|
2600
|
+
const AcmeContact = {
|
|
2601
|
+
NOT_REQUIRED: "NOT_REQUIRED",
|
|
2602
|
+
REQUIRED: "REQUIRED",
|
|
2603
|
+
};
|
|
2604
|
+
const AcmeDomainValidationFailureReason = {
|
|
2605
|
+
ACCESS_DENIED: "ACCESS_DENIED",
|
|
2606
|
+
DOMAIN_MISMATCH: "DOMAIN_MISMATCH",
|
|
2607
|
+
DOMAIN_NOT_ALLOWED: "DOMAIN_NOT_ALLOWED",
|
|
2608
|
+
ENDPOINT_NOT_ACTIVE: "ENDPOINT_NOT_ACTIVE",
|
|
2609
|
+
HOSTED_ZONE_NOT_FOUND: "HOSTED_ZONE_NOT_FOUND",
|
|
2610
|
+
INTERNAL_FAILURE: "INTERNAL_FAILURE",
|
|
2611
|
+
INVALID_CHANGE_BATCH: "INVALID_CHANGE_BATCH",
|
|
2612
|
+
INVALID_PUBLIC_DOMAIN: "INVALID_PUBLIC_DOMAIN",
|
|
2613
|
+
TIMED_OUT: "TIMED_OUT",
|
|
2614
|
+
};
|
|
2615
|
+
const DomainScopeOption = {
|
|
2616
|
+
DISABLED: "DISABLED",
|
|
2617
|
+
ENABLED: "ENABLED",
|
|
2618
|
+
};
|
|
1516
2619
|
const RecordType = {
|
|
1517
2620
|
CNAME: "CNAME",
|
|
1518
2621
|
};
|
|
2622
|
+
const PrevalidationType = {
|
|
2623
|
+
DNS_PREVALIDATION: "DNS_PREVALIDATION",
|
|
2624
|
+
};
|
|
2625
|
+
const AcmeDomainValidationStatus = {
|
|
2626
|
+
DELETING: "DELETING",
|
|
2627
|
+
INVALID: "INVALID",
|
|
2628
|
+
VALID: "VALID",
|
|
2629
|
+
VALIDATING: "VALIDATING",
|
|
2630
|
+
};
|
|
2631
|
+
const PublicKeyAlgorithm = {
|
|
2632
|
+
EC_PRIME256_V1: "EC_prime256v1",
|
|
2633
|
+
EC_SECP384_R1: "EC_secp384r1",
|
|
2634
|
+
RSA_2048: "RSA_2048",
|
|
2635
|
+
};
|
|
2636
|
+
const AcmeEndpointStatus = {
|
|
2637
|
+
ACTIVE: "ACTIVE",
|
|
2638
|
+
CREATING: "CREATING",
|
|
2639
|
+
DELETING: "DELETING",
|
|
2640
|
+
FAILED: "FAILED",
|
|
2641
|
+
};
|
|
1519
2642
|
const DomainStatus = {
|
|
1520
2643
|
FAILED: "FAILED",
|
|
1521
2644
|
PENDING_VALIDATION: "PENDING_VALIDATION",
|
|
@@ -1597,6 +2720,11 @@ const ComparisonOperator = {
|
|
|
1597
2720
|
CONTAINS: "CONTAINS",
|
|
1598
2721
|
EQUALS: "EQUALS",
|
|
1599
2722
|
};
|
|
2723
|
+
const TimeType = {
|
|
2724
|
+
DAYS: "DAYS",
|
|
2725
|
+
HOURS: "HOURS",
|
|
2726
|
+
MINUTES: "MINUTES",
|
|
2727
|
+
};
|
|
1600
2728
|
const SortBy = {
|
|
1601
2729
|
CREATED_AT: "CREATED_AT",
|
|
1602
2730
|
};
|
|
@@ -1605,7 +2733,10 @@ const SortOrder = {
|
|
|
1605
2733
|
DESCENDING: "DESCENDING",
|
|
1606
2734
|
};
|
|
1607
2735
|
const SearchCertificatesSortBy = {
|
|
2736
|
+
ACME_ACCOUNT_ID: "ACME_ACCOUNT_ID",
|
|
2737
|
+
ACME_ENDPOINT_ARN: "ACME_ENDPOINT_ARN",
|
|
1608
2738
|
CERTIFICATE_ARN: "CERTIFICATE_ARN",
|
|
2739
|
+
CERTIFICATE_KEY_PAIR_ORIGIN: "CERTIFICATE_KEY_PAIR_ORIGIN",
|
|
1609
2740
|
COMMON_NAME: "COMMON_NAME",
|
|
1610
2741
|
CREATED_AT: "CREATED_AT",
|
|
1611
2742
|
EXPORTED: "EXPORTED",
|
|
@@ -1637,13 +2768,29 @@ exports.AccessDeniedException = AccessDeniedException;
|
|
|
1637
2768
|
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1638
2769
|
exports.AcmCertificateMetadata$ = AcmCertificateMetadata$;
|
|
1639
2770
|
exports.AcmCertificateMetadataFilter$ = AcmCertificateMetadataFilter$;
|
|
2771
|
+
exports.AcmeAccount$ = AcmeAccount$;
|
|
2772
|
+
exports.AcmeAccountStatus = AcmeAccountStatus;
|
|
2773
|
+
exports.AcmeAccountSummary$ = AcmeAccountSummary$;
|
|
2774
|
+
exports.AcmeAuthorizationBehavior = AcmeAuthorizationBehavior;
|
|
2775
|
+
exports.AcmeContact = AcmeContact;
|
|
2776
|
+
exports.AcmeDomainValidation$ = AcmeDomainValidation$;
|
|
2777
|
+
exports.AcmeDomainValidationFailureReason = AcmeDomainValidationFailureReason;
|
|
2778
|
+
exports.AcmeDomainValidationStatus = AcmeDomainValidationStatus;
|
|
2779
|
+
exports.AcmeDomainValidationSummary$ = AcmeDomainValidationSummary$;
|
|
2780
|
+
exports.AcmeEndpoint$ = AcmeEndpoint$;
|
|
2781
|
+
exports.AcmeEndpointStatus = AcmeEndpointStatus;
|
|
2782
|
+
exports.AcmeEndpointSummary$ = AcmeEndpointSummary$;
|
|
2783
|
+
exports.AcmeExternalAccountBinding$ = AcmeExternalAccountBinding$;
|
|
2784
|
+
exports.AcmeExternalAccountBindingSummary$ = AcmeExternalAccountBindingSummary$;
|
|
1640
2785
|
exports.AddTagsToCertificate$ = AddTagsToCertificate$;
|
|
1641
2786
|
exports.AddTagsToCertificateCommand = AddTagsToCertificateCommand;
|
|
1642
2787
|
exports.AddTagsToCertificateRequest$ = AddTagsToCertificateRequest$;
|
|
2788
|
+
exports.CertificateAuthority$ = CertificateAuthority$;
|
|
1643
2789
|
exports.CertificateDetail$ = CertificateDetail$;
|
|
1644
2790
|
exports.CertificateExport = CertificateExport;
|
|
1645
2791
|
exports.CertificateFilter$ = CertificateFilter$;
|
|
1646
2792
|
exports.CertificateFilterStatement$ = CertificateFilterStatement$;
|
|
2793
|
+
exports.CertificateKeyPairOrigin = CertificateKeyPairOrigin;
|
|
1647
2794
|
exports.CertificateManagedBy = CertificateManagedBy;
|
|
1648
2795
|
exports.CertificateMetadata$ = CertificateMetadata$;
|
|
1649
2796
|
exports.CertificateOptions$ = CertificateOptions$;
|
|
@@ -1656,19 +2803,61 @@ exports.CommonNameFilter$ = CommonNameFilter$;
|
|
|
1656
2803
|
exports.ComparisonOperator = ComparisonOperator;
|
|
1657
2804
|
exports.ConflictException = ConflictException;
|
|
1658
2805
|
exports.ConflictException$ = ConflictException$;
|
|
2806
|
+
exports.CreateAcmeDomainValidation$ = CreateAcmeDomainValidation$;
|
|
2807
|
+
exports.CreateAcmeDomainValidationCommand = CreateAcmeDomainValidationCommand;
|
|
2808
|
+
exports.CreateAcmeDomainValidationRequest$ = CreateAcmeDomainValidationRequest$;
|
|
2809
|
+
exports.CreateAcmeDomainValidationResponse$ = CreateAcmeDomainValidationResponse$;
|
|
2810
|
+
exports.CreateAcmeEndpoint$ = CreateAcmeEndpoint$;
|
|
2811
|
+
exports.CreateAcmeEndpointCommand = CreateAcmeEndpointCommand;
|
|
2812
|
+
exports.CreateAcmeEndpointRequest$ = CreateAcmeEndpointRequest$;
|
|
2813
|
+
exports.CreateAcmeEndpointResponse$ = CreateAcmeEndpointResponse$;
|
|
2814
|
+
exports.CreateAcmeExternalAccountBinding$ = CreateAcmeExternalAccountBinding$;
|
|
2815
|
+
exports.CreateAcmeExternalAccountBindingCommand = CreateAcmeExternalAccountBindingCommand;
|
|
2816
|
+
exports.CreateAcmeExternalAccountBindingRequest$ = CreateAcmeExternalAccountBindingRequest$;
|
|
2817
|
+
exports.CreateAcmeExternalAccountBindingResponse$ = CreateAcmeExternalAccountBindingResponse$;
|
|
1659
2818
|
exports.CustomAttribute$ = CustomAttribute$;
|
|
2819
|
+
exports.DeleteAcmeDomainValidation$ = DeleteAcmeDomainValidation$;
|
|
2820
|
+
exports.DeleteAcmeDomainValidationCommand = DeleteAcmeDomainValidationCommand;
|
|
2821
|
+
exports.DeleteAcmeDomainValidationRequest$ = DeleteAcmeDomainValidationRequest$;
|
|
2822
|
+
exports.DeleteAcmeEndpoint$ = DeleteAcmeEndpoint$;
|
|
2823
|
+
exports.DeleteAcmeEndpointCommand = DeleteAcmeEndpointCommand;
|
|
2824
|
+
exports.DeleteAcmeEndpointRequest$ = DeleteAcmeEndpointRequest$;
|
|
2825
|
+
exports.DeleteAcmeExternalAccountBinding$ = DeleteAcmeExternalAccountBinding$;
|
|
2826
|
+
exports.DeleteAcmeExternalAccountBindingCommand = DeleteAcmeExternalAccountBindingCommand;
|
|
2827
|
+
exports.DeleteAcmeExternalAccountBindingRequest$ = DeleteAcmeExternalAccountBindingRequest$;
|
|
1660
2828
|
exports.DeleteCertificate$ = DeleteCertificate$;
|
|
1661
2829
|
exports.DeleteCertificateCommand = DeleteCertificateCommand;
|
|
1662
2830
|
exports.DeleteCertificateRequest$ = DeleteCertificateRequest$;
|
|
2831
|
+
exports.DescribeAcmeAccount$ = DescribeAcmeAccount$;
|
|
2832
|
+
exports.DescribeAcmeAccountCommand = DescribeAcmeAccountCommand;
|
|
2833
|
+
exports.DescribeAcmeAccountRequest$ = DescribeAcmeAccountRequest$;
|
|
2834
|
+
exports.DescribeAcmeAccountResponse$ = DescribeAcmeAccountResponse$;
|
|
2835
|
+
exports.DescribeAcmeDomainValidation$ = DescribeAcmeDomainValidation$;
|
|
2836
|
+
exports.DescribeAcmeDomainValidationCommand = DescribeAcmeDomainValidationCommand;
|
|
2837
|
+
exports.DescribeAcmeDomainValidationRequest$ = DescribeAcmeDomainValidationRequest$;
|
|
2838
|
+
exports.DescribeAcmeDomainValidationResponse$ = DescribeAcmeDomainValidationResponse$;
|
|
2839
|
+
exports.DescribeAcmeEndpoint$ = DescribeAcmeEndpoint$;
|
|
2840
|
+
exports.DescribeAcmeEndpointCommand = DescribeAcmeEndpointCommand;
|
|
2841
|
+
exports.DescribeAcmeEndpointRequest$ = DescribeAcmeEndpointRequest$;
|
|
2842
|
+
exports.DescribeAcmeEndpointResponse$ = DescribeAcmeEndpointResponse$;
|
|
2843
|
+
exports.DescribeAcmeExternalAccountBinding$ = DescribeAcmeExternalAccountBinding$;
|
|
2844
|
+
exports.DescribeAcmeExternalAccountBindingCommand = DescribeAcmeExternalAccountBindingCommand;
|
|
2845
|
+
exports.DescribeAcmeExternalAccountBindingRequest$ = DescribeAcmeExternalAccountBindingRequest$;
|
|
2846
|
+
exports.DescribeAcmeExternalAccountBindingResponse$ = DescribeAcmeExternalAccountBindingResponse$;
|
|
1663
2847
|
exports.DescribeCertificate$ = DescribeCertificate$;
|
|
1664
2848
|
exports.DescribeCertificateCommand = DescribeCertificateCommand;
|
|
1665
2849
|
exports.DescribeCertificateRequest$ = DescribeCertificateRequest$;
|
|
1666
2850
|
exports.DescribeCertificateResponse$ = DescribeCertificateResponse$;
|
|
1667
2851
|
exports.DistinguishedName$ = DistinguishedName$;
|
|
1668
2852
|
exports.DnsNameFilter$ = DnsNameFilter$;
|
|
2853
|
+
exports.DnsPrevalidationDetails$ = DnsPrevalidationDetails$;
|
|
2854
|
+
exports.DnsPrevalidationOptions$ = DnsPrevalidationOptions$;
|
|
2855
|
+
exports.DomainScope$ = DomainScope$;
|
|
2856
|
+
exports.DomainScopeOption = DomainScopeOption;
|
|
1669
2857
|
exports.DomainStatus = DomainStatus;
|
|
1670
2858
|
exports.DomainValidation$ = DomainValidation$;
|
|
1671
2859
|
exports.DomainValidationOption$ = DomainValidationOption$;
|
|
2860
|
+
exports.Expiration$ = Expiration$;
|
|
1672
2861
|
exports.ExpiryEventsConfiguration$ = ExpiryEventsConfiguration$;
|
|
1673
2862
|
exports.ExportCertificate$ = ExportCertificate$;
|
|
1674
2863
|
exports.ExportCertificateCommand = ExportCertificateCommand;
|
|
@@ -1676,12 +2865,17 @@ exports.ExportCertificateRequest$ = ExportCertificateRequest$;
|
|
|
1676
2865
|
exports.ExportCertificateResponse$ = ExportCertificateResponse$;
|
|
1677
2866
|
exports.ExtendedKeyUsage$ = ExtendedKeyUsage$;
|
|
1678
2867
|
exports.ExtendedKeyUsageName = ExtendedKeyUsageName;
|
|
2868
|
+
exports.FailureDetails$ = FailureDetails$;
|
|
1679
2869
|
exports.FailureReason = FailureReason;
|
|
1680
2870
|
exports.Filters$ = Filters$;
|
|
1681
2871
|
exports.GeneralName$ = GeneralName$;
|
|
1682
2872
|
exports.GetAccountConfiguration$ = GetAccountConfiguration$;
|
|
1683
2873
|
exports.GetAccountConfigurationCommand = GetAccountConfigurationCommand;
|
|
1684
2874
|
exports.GetAccountConfigurationResponse$ = GetAccountConfigurationResponse$;
|
|
2875
|
+
exports.GetAcmeExternalAccountBindingCredentials$ = GetAcmeExternalAccountBindingCredentials$;
|
|
2876
|
+
exports.GetAcmeExternalAccountBindingCredentialsCommand = GetAcmeExternalAccountBindingCredentialsCommand;
|
|
2877
|
+
exports.GetAcmeExternalAccountBindingCredentialsRequest$ = GetAcmeExternalAccountBindingCredentialsRequest$;
|
|
2878
|
+
exports.GetAcmeExternalAccountBindingCredentialsResponse$ = GetAcmeExternalAccountBindingCredentialsResponse$;
|
|
1685
2879
|
exports.GetCertificate$ = GetCertificate$;
|
|
1686
2880
|
exports.GetCertificateCommand = GetCertificateCommand;
|
|
1687
2881
|
exports.GetCertificateRequest$ = GetCertificateRequest$;
|
|
@@ -1691,6 +2885,8 @@ exports.ImportCertificate$ = ImportCertificate$;
|
|
|
1691
2885
|
exports.ImportCertificateCommand = ImportCertificateCommand;
|
|
1692
2886
|
exports.ImportCertificateRequest$ = ImportCertificateRequest$;
|
|
1693
2887
|
exports.ImportCertificateResponse$ = ImportCertificateResponse$;
|
|
2888
|
+
exports.InternalServerException = InternalServerException;
|
|
2889
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1694
2890
|
exports.InvalidArgsException = InvalidArgsException;
|
|
1695
2891
|
exports.InvalidArgsException$ = InvalidArgsException$;
|
|
1696
2892
|
exports.InvalidArnException = InvalidArnException;
|
|
@@ -1708,6 +2904,22 @@ exports.KeyUsage$ = KeyUsage$;
|
|
|
1708
2904
|
exports.KeyUsageName = KeyUsageName;
|
|
1709
2905
|
exports.LimitExceededException = LimitExceededException;
|
|
1710
2906
|
exports.LimitExceededException$ = LimitExceededException$;
|
|
2907
|
+
exports.ListAcmeAccounts$ = ListAcmeAccounts$;
|
|
2908
|
+
exports.ListAcmeAccountsCommand = ListAcmeAccountsCommand;
|
|
2909
|
+
exports.ListAcmeAccountsRequest$ = ListAcmeAccountsRequest$;
|
|
2910
|
+
exports.ListAcmeAccountsResponse$ = ListAcmeAccountsResponse$;
|
|
2911
|
+
exports.ListAcmeDomainValidations$ = ListAcmeDomainValidations$;
|
|
2912
|
+
exports.ListAcmeDomainValidationsCommand = ListAcmeDomainValidationsCommand;
|
|
2913
|
+
exports.ListAcmeDomainValidationsRequest$ = ListAcmeDomainValidationsRequest$;
|
|
2914
|
+
exports.ListAcmeDomainValidationsResponse$ = ListAcmeDomainValidationsResponse$;
|
|
2915
|
+
exports.ListAcmeEndpoints$ = ListAcmeEndpoints$;
|
|
2916
|
+
exports.ListAcmeEndpointsCommand = ListAcmeEndpointsCommand;
|
|
2917
|
+
exports.ListAcmeEndpointsRequest$ = ListAcmeEndpointsRequest$;
|
|
2918
|
+
exports.ListAcmeEndpointsResponse$ = ListAcmeEndpointsResponse$;
|
|
2919
|
+
exports.ListAcmeExternalAccountBindings$ = ListAcmeExternalAccountBindings$;
|
|
2920
|
+
exports.ListAcmeExternalAccountBindingsCommand = ListAcmeExternalAccountBindingsCommand;
|
|
2921
|
+
exports.ListAcmeExternalAccountBindingsRequest$ = ListAcmeExternalAccountBindingsRequest$;
|
|
2922
|
+
exports.ListAcmeExternalAccountBindingsResponse$ = ListAcmeExternalAccountBindingsResponse$;
|
|
1711
2923
|
exports.ListCertificates$ = ListCertificates$;
|
|
1712
2924
|
exports.ListCertificatesCommand = ListCertificatesCommand;
|
|
1713
2925
|
exports.ListCertificatesRequest$ = ListCertificatesRequest$;
|
|
@@ -1716,7 +2928,16 @@ exports.ListTagsForCertificate$ = ListTagsForCertificate$;
|
|
|
1716
2928
|
exports.ListTagsForCertificateCommand = ListTagsForCertificateCommand;
|
|
1717
2929
|
exports.ListTagsForCertificateRequest$ = ListTagsForCertificateRequest$;
|
|
1718
2930
|
exports.ListTagsForCertificateResponse$ = ListTagsForCertificateResponse$;
|
|
2931
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2932
|
+
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2933
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2934
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1719
2935
|
exports.OtherName$ = OtherName$;
|
|
2936
|
+
exports.PrevalidationDetails$ = PrevalidationDetails$;
|
|
2937
|
+
exports.PrevalidationOptions$ = PrevalidationOptions$;
|
|
2938
|
+
exports.PrevalidationType = PrevalidationType;
|
|
2939
|
+
exports.PublicCertificateAuthority$ = PublicCertificateAuthority$;
|
|
2940
|
+
exports.PublicKeyAlgorithm = PublicKeyAlgorithm;
|
|
1720
2941
|
exports.PutAccountConfiguration$ = PutAccountConfiguration$;
|
|
1721
2942
|
exports.PutAccountConfigurationCommand = PutAccountConfigurationCommand;
|
|
1722
2943
|
exports.PutAccountConfigurationRequest$ = PutAccountConfigurationRequest$;
|
|
@@ -1745,6 +2966,12 @@ exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
|
1745
2966
|
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1746
2967
|
exports.ResourceRecord$ = ResourceRecord$;
|
|
1747
2968
|
exports.RevocationReason = RevocationReason;
|
|
2969
|
+
exports.RevokeAcmeAccount$ = RevokeAcmeAccount$;
|
|
2970
|
+
exports.RevokeAcmeAccountCommand = RevokeAcmeAccountCommand;
|
|
2971
|
+
exports.RevokeAcmeAccountRequest$ = RevokeAcmeAccountRequest$;
|
|
2972
|
+
exports.RevokeAcmeExternalAccountBinding$ = RevokeAcmeExternalAccountBinding$;
|
|
2973
|
+
exports.RevokeAcmeExternalAccountBindingCommand = RevokeAcmeExternalAccountBindingCommand;
|
|
2974
|
+
exports.RevokeAcmeExternalAccountBindingRequest$ = RevokeAcmeExternalAccountBindingRequest$;
|
|
1748
2975
|
exports.RevokeCertificate$ = RevokeCertificate$;
|
|
1749
2976
|
exports.RevokeCertificateCommand = RevokeCertificateCommand;
|
|
1750
2977
|
exports.RevokeCertificateRequest$ = RevokeCertificateRequest$;
|
|
@@ -1755,6 +2982,8 @@ exports.SearchCertificatesRequest$ = SearchCertificatesRequest$;
|
|
|
1755
2982
|
exports.SearchCertificatesResponse$ = SearchCertificatesResponse$;
|
|
1756
2983
|
exports.SearchCertificatesSortBy = SearchCertificatesSortBy;
|
|
1757
2984
|
exports.SearchCertificatesSortOrder = SearchCertificatesSortOrder;
|
|
2985
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2986
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1758
2987
|
exports.SortBy = SortBy;
|
|
1759
2988
|
exports.SortOrder = SortOrder;
|
|
1760
2989
|
exports.SubjectAlternativeNameFilter$ = SubjectAlternativeNameFilter$;
|
|
@@ -1762,12 +2991,25 @@ exports.SubjectFilter$ = SubjectFilter$;
|
|
|
1762
2991
|
exports.Tag$ = Tag$;
|
|
1763
2992
|
exports.TagPolicyException = TagPolicyException;
|
|
1764
2993
|
exports.TagPolicyException$ = TagPolicyException$;
|
|
2994
|
+
exports.TagResource$ = TagResource$;
|
|
2995
|
+
exports.TagResourceCommand = TagResourceCommand;
|
|
2996
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1765
2997
|
exports.ThrottlingException = ThrottlingException;
|
|
1766
2998
|
exports.ThrottlingException$ = ThrottlingException$;
|
|
1767
2999
|
exports.ThrottlingReason$ = ThrottlingReason$;
|
|
3000
|
+
exports.TimeType = TimeType;
|
|
1768
3001
|
exports.TimestampRange$ = TimestampRange$;
|
|
1769
3002
|
exports.TooManyTagsException = TooManyTagsException;
|
|
1770
3003
|
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3004
|
+
exports.UntagResource$ = UntagResource$;
|
|
3005
|
+
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3006
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3007
|
+
exports.UpdateAcmeDomainValidation$ = UpdateAcmeDomainValidation$;
|
|
3008
|
+
exports.UpdateAcmeDomainValidationCommand = UpdateAcmeDomainValidationCommand;
|
|
3009
|
+
exports.UpdateAcmeDomainValidationRequest$ = UpdateAcmeDomainValidationRequest$;
|
|
3010
|
+
exports.UpdateAcmeEndpoint$ = UpdateAcmeEndpoint$;
|
|
3011
|
+
exports.UpdateAcmeEndpointCommand = UpdateAcmeEndpointCommand;
|
|
3012
|
+
exports.UpdateAcmeEndpointRequest$ = UpdateAcmeEndpointRequest$;
|
|
1771
3013
|
exports.UpdateCertificateOptions$ = UpdateCertificateOptions$;
|
|
1772
3014
|
exports.UpdateCertificateOptionsCommand = UpdateCertificateOptionsCommand;
|
|
1773
3015
|
exports.UpdateCertificateOptionsRequest$ = UpdateCertificateOptionsRequest$;
|
|
@@ -1777,7 +3019,19 @@ exports.ValidationMethod = ValidationMethod;
|
|
|
1777
3019
|
exports.X509AttributeFilter$ = X509AttributeFilter$;
|
|
1778
3020
|
exports.X509Attributes$ = X509Attributes$;
|
|
1779
3021
|
exports.errorTypeRegistries = errorTypeRegistries;
|
|
3022
|
+
exports.paginateListAcmeAccounts = paginateListAcmeAccounts;
|
|
3023
|
+
exports.paginateListAcmeDomainValidations = paginateListAcmeDomainValidations;
|
|
3024
|
+
exports.paginateListAcmeEndpoints = paginateListAcmeEndpoints;
|
|
3025
|
+
exports.paginateListAcmeExternalAccountBindings = paginateListAcmeExternalAccountBindings;
|
|
1780
3026
|
exports.paginateListCertificates = paginateListCertificates;
|
|
1781
3027
|
exports.paginateSearchCertificates = paginateSearchCertificates;
|
|
3028
|
+
exports.waitForAcmeDomainValidationDeleted = waitForAcmeDomainValidationDeleted;
|
|
3029
|
+
exports.waitForAcmeDomainValidationValidated = waitForAcmeDomainValidationValidated;
|
|
3030
|
+
exports.waitForAcmeEndpointActive = waitForAcmeEndpointActive;
|
|
3031
|
+
exports.waitForAcmeEndpointDeleted = waitForAcmeEndpointDeleted;
|
|
1782
3032
|
exports.waitForCertificateValidated = waitForCertificateValidated;
|
|
3033
|
+
exports.waitUntilAcmeDomainValidationDeleted = waitUntilAcmeDomainValidationDeleted;
|
|
3034
|
+
exports.waitUntilAcmeDomainValidationValidated = waitUntilAcmeDomainValidationValidated;
|
|
3035
|
+
exports.waitUntilAcmeEndpointActive = waitUntilAcmeEndpointActive;
|
|
3036
|
+
exports.waitUntilAcmeEndpointDeleted = waitUntilAcmeEndpointDeleted;
|
|
1783
3037
|
exports.waitUntilCertificateValidated = waitUntilCertificateValidated;
|