@aws-sdk/client-acm 3.1076.0 → 3.1078.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 +1058 -262
- package/dist-es/ACM.js +60 -0
- package/dist-es/commandBuilder.js +11 -0
- package/dist-es/commands/AddTagsToCertificateCommand.js +2 -14
- package/dist-es/commands/CreateAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/CreateAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DeleteCertificateCommand.js +2 -14
- package/dist-es/commands/DescribeAcmeAccountCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DescribeCertificateCommand.js +2 -14
- package/dist-es/commands/ExportCertificateCommand.js +2 -14
- package/dist-es/commands/GetAccountConfigurationCommand.js +2 -14
- package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +4 -0
- package/dist-es/commands/GetCertificateCommand.js +2 -14
- package/dist-es/commands/ImportCertificateCommand.js +2 -14
- package/dist-es/commands/ListAcmeAccountsCommand.js +4 -0
- package/dist-es/commands/ListAcmeDomainValidationsCommand.js +4 -0
- package/dist-es/commands/ListAcmeEndpointsCommand.js +4 -0
- package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +4 -0
- package/dist-es/commands/ListCertificatesCommand.js +2 -14
- package/dist-es/commands/ListTagsForCertificateCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
- package/dist-es/commands/PutAccountConfigurationCommand.js +2 -14
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -14
- package/dist-es/commands/RenewCertificateCommand.js +2 -14
- package/dist-es/commands/RequestCertificateCommand.js +2 -14
- package/dist-es/commands/ResendValidationEmailCommand.js +2 -14
- package/dist-es/commands/RevokeAcmeAccountCommand.js +4 -0
- package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/RevokeCertificateCommand.js +2 -14
- package/dist-es/commands/SearchCertificatesCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +4 -0
- package/dist-es/commands/UntagResourceCommand.js +4 -0
- package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/UpdateAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -14
- 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/index.js +1 -0
- 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/commandBuilder.d.ts +22 -0
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +7 -9
- package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +110 -0
- package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +110 -0
- package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +113 -0
- package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +84 -0
- package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +84 -0
- package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +81 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +7 -9
- package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +96 -0
- package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +113 -0
- package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +108 -0
- package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +95 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +9 -8
- package/dist-types/commands/ExportCertificateCommand.d.ts +6 -8
- package/dist-types/commands/GetAccountConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +87 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +6 -8
- package/dist-types/commands/ImportCertificateCommand.d.ts +6 -8
- package/dist-types/commands/ListAcmeAccountsCommand.d.ts +100 -0
- package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +118 -0
- package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +109 -0
- package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +100 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +8 -9
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +7 -9
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +82 -0
- package/dist-types/commands/PutAccountConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +7 -9
- package/dist-types/commands/RenewCertificateCommand.d.ts +6 -8
- package/dist-types/commands/RequestCertificateCommand.d.ts +3 -8
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +6 -8
- package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +88 -0
- package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +87 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +6 -8
- package/dist-types/commands/SearchCertificatesCommand.d.ts +13 -9
- package/dist-types/commands/TagResourceCommand.d.ts +84 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +78 -0
- package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +97 -0
- package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +96 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +6 -8
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/index.d.ts +1 -0
- 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/commandBuilder.d.ts +47 -0
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SearchCertificatesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +7 -16
- 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/index.d.ts +1 -0
- 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 +8 -10
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -10,9 +11,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
|
|
|
10
11
|
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
12
|
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
13
|
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
-
const { toUtf8, fromUtf8, toBase64, fromBase64,
|
|
14
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
15
|
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
16
|
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
17
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
16
18
|
|
|
17
19
|
const defaultACMHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
20
|
return {
|
|
@@ -55,74 +57,68 @@ const resolveHttpAuthSchemeConfig = (config) => {
|
|
|
55
57
|
|
|
56
58
|
const resolveClientEndpointParameters = (options) => {
|
|
57
59
|
return Object.assign(options, {
|
|
58
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
59
60
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
61
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
60
62
|
defaultSigningName: "acm",
|
|
63
|
+
clientContextParams: options.clientContextParams ?? {},
|
|
61
64
|
});
|
|
62
65
|
};
|
|
63
66
|
const commonParams = {
|
|
67
|
+
ServiceType: { type: "clientContextParams", name: "serviceType" },
|
|
64
68
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
65
69
|
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
66
70
|
Region: { type: "builtInParams", name: "region" },
|
|
67
71
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
68
72
|
};
|
|
69
73
|
|
|
70
|
-
var version = "3.
|
|
74
|
+
var version = "3.1077.0";
|
|
71
75
|
var packageInfo = {
|
|
72
76
|
version: version};
|
|
73
77
|
|
|
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" }];
|
|
78
|
+
const a = "PartitionResult", b = "stringEquals", c = "booleanEquals", d = { "fn": "getAttr", "argv": [{ "ref": a }, "name"] }, e = {};
|
|
76
79
|
const _data = {
|
|
77
80
|
conditions: [
|
|
78
|
-
[
|
|
79
|
-
[
|
|
80
|
-
["
|
|
81
|
-
[
|
|
82
|
-
[
|
|
83
|
-
[
|
|
84
|
-
[
|
|
85
|
-
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
81
|
+
["isSet", [{ ref: "Endpoint" }]],
|
|
82
|
+
["aws.partition", [{ ref: "Region" }], a],
|
|
83
|
+
[b, [{ ref: "ServiceType" }, "ACM-ACME"]],
|
|
84
|
+
[b, [d, "aws"]],
|
|
85
|
+
[c, [{ ref: "UseFIPS" }, true]],
|
|
86
|
+
[c, [{ ref: "UseDualStack" }, true]],
|
|
87
|
+
[b, [d, "aws-us-gov"]]
|
|
86
88
|
],
|
|
87
89
|
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"]
|
|
90
|
+
[-1],
|
|
91
|
+
["{Endpoint}", e],
|
|
92
|
+
[-1, "FIPS endpoints are not available for ACME operations"],
|
|
93
|
+
["https://acm-acme.{Region}.{PartitionResult#dualStackDnsSuffix}", e],
|
|
94
|
+
[-1, "ACME operations are only available in commercial AWS partitions"],
|
|
95
|
+
["https://acm-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", e],
|
|
96
|
+
["https://acm.{Region}.amazonaws.com", e],
|
|
97
|
+
["https://acm-fips.{Region}.{PartitionResult#dnsSuffix}", e],
|
|
98
|
+
["https://acm.{Region}.{PartitionResult#dualStackDnsSuffix}", e],
|
|
99
|
+
["https://acm.{Region}.{PartitionResult#dnsSuffix}", e],
|
|
100
|
+
[-1, "Region must be set to resolve an endpoint."]
|
|
101
101
|
]
|
|
102
102
|
};
|
|
103
103
|
const root = 2;
|
|
104
104
|
const r = 100_000_000;
|
|
105
105
|
const nodes = new Int32Array([
|
|
106
106
|
-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,
|
|
107
|
+
0, r + 1, 3,
|
|
108
|
+
1, 4, r + 10,
|
|
109
|
+
2, 9, 5,
|
|
110
|
+
4, 7, 6,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
5, r + 5, 8,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
3, 10, r + 4,
|
|
119
115
|
4, r + 2, r + 3,
|
|
120
116
|
]);
|
|
121
117
|
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
122
118
|
|
|
123
119
|
const cache = new EndpointCache({
|
|
124
120
|
size: 50,
|
|
125
|
-
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
121
|
+
params: ["Endpoint", "Region", "ServiceType", "UseDualStack", "UseFIPS"],
|
|
126
122
|
});
|
|
127
123
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
128
124
|
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
@@ -239,6 +235,18 @@ class TooManyTagsException extends ACMServiceException {
|
|
|
239
235
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
240
236
|
}
|
|
241
237
|
}
|
|
238
|
+
class ValidationException extends ACMServiceException {
|
|
239
|
+
name = "ValidationException";
|
|
240
|
+
$fault = "client";
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ValidationException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
242
250
|
class ConflictException extends ACMServiceException {
|
|
243
251
|
name = "ConflictException";
|
|
244
252
|
$fault = "client";
|
|
@@ -251,6 +259,31 @@ class ConflictException extends ACMServiceException {
|
|
|
251
259
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
252
260
|
}
|
|
253
261
|
}
|
|
262
|
+
class InternalServerException extends ACMServiceException {
|
|
263
|
+
name = "InternalServerException";
|
|
264
|
+
$fault = "server";
|
|
265
|
+
$retryable = {};
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "InternalServerException",
|
|
269
|
+
$fault: "server",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
class ServiceQuotaExceededException extends ACMServiceException {
|
|
276
|
+
name = "ServiceQuotaExceededException";
|
|
277
|
+
$fault = "client";
|
|
278
|
+
constructor(opts) {
|
|
279
|
+
super({
|
|
280
|
+
name: "ServiceQuotaExceededException",
|
|
281
|
+
$fault: "client",
|
|
282
|
+
...opts,
|
|
283
|
+
});
|
|
284
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
285
|
+
}
|
|
286
|
+
}
|
|
254
287
|
class ResourceInUseException extends ACMServiceException {
|
|
255
288
|
name = "ResourceInUseException";
|
|
256
289
|
$fault = "client";
|
|
@@ -299,18 +332,6 @@ class InvalidArgsException extends ACMServiceException {
|
|
|
299
332
|
Object.setPrototypeOf(this, InvalidArgsException.prototype);
|
|
300
333
|
}
|
|
301
334
|
}
|
|
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
335
|
class InvalidDomainValidationOptionsException extends ACMServiceException {
|
|
315
336
|
name = "InvalidDomainValidationOptionsException";
|
|
316
337
|
$fault = "client";
|
|
@@ -337,16 +358,48 @@ class InvalidStateException extends ACMServiceException {
|
|
|
337
358
|
}
|
|
338
359
|
|
|
339
360
|
const _A = "And";
|
|
361
|
+
const _AA = "AcmeAccount";
|
|
362
|
+
const _AAI = "AcmeAccountId";
|
|
363
|
+
const _AAL = "AcmeAccountList";
|
|
364
|
+
const _AAS = "AcmeAccountSummary";
|
|
365
|
+
const _AAc = "AcmeAccounts";
|
|
366
|
+
const _AB = "AuthorizationBehavior";
|
|
340
367
|
const _ACM = "AcmCertificateMetadata";
|
|
341
368
|
const _ACMF = "AcmCertificateMetadataFilter";
|
|
342
369
|
const _ADE = "AccessDeniedException";
|
|
370
|
+
const _ADV = "AcmeDomainValidation";
|
|
371
|
+
const _ADVA = "AcmeDomainValidationArn";
|
|
372
|
+
const _ADVL = "AcmeDomainValidationList";
|
|
373
|
+
const _ADVS = "AcmeDomainValidationSummary";
|
|
374
|
+
const _ADVc = "AcmeDomainValidations";
|
|
375
|
+
const _AE = "AcmeEndpoint";
|
|
376
|
+
const _AEA = "AcmeEndpointArn";
|
|
377
|
+
const _AEAB = "AcmeExternalAccountBinding";
|
|
378
|
+
const _AEABA = "AcmeExternalAccountBindingArn";
|
|
379
|
+
const _AEABL = "AcmeExternalAccountBindingList";
|
|
380
|
+
const _AEABS = "AcmeExternalAccountBindingSummary";
|
|
381
|
+
const _AEL = "AcmeEndpointList";
|
|
382
|
+
const _AES = "AcmeEndpointSummary";
|
|
383
|
+
const _AEc = "AcmeEndpoints";
|
|
384
|
+
const _AKA = "AllowedKeyAlgorithms";
|
|
343
385
|
const _ATTC = "AddTagsToCertificate";
|
|
344
386
|
const _ATTCR = "AddTagsToCertificateRequest";
|
|
345
|
-
const
|
|
387
|
+
const _AU = "AccountUrl";
|
|
388
|
+
const _C = "Contacts";
|
|
346
389
|
const _CA = "CreatedAt";
|
|
347
390
|
const _CAA = "CertificateAuthorityArn";
|
|
391
|
+
const _CADV = "CreateAcmeDomainValidation";
|
|
392
|
+
const _CADVR = "CreateAcmeDomainValidationRequest";
|
|
393
|
+
const _CADVRr = "CreateAcmeDomainValidationResponse";
|
|
394
|
+
const _CAE = "CreateAcmeEndpoint";
|
|
395
|
+
const _CAEAB = "CreateAcmeExternalAccountBinding";
|
|
396
|
+
const _CAEABR = "CreateAcmeExternalAccountBindingRequest";
|
|
397
|
+
const _CAEABRr = "CreateAcmeExternalAccountBindingResponse";
|
|
398
|
+
const _CAER = "CreateAcmeEndpointRequest";
|
|
399
|
+
const _CAERr = "CreateAcmeEndpointResponse";
|
|
348
400
|
const _CAL = "CustomAttributeList";
|
|
349
|
-
const _CAe = "
|
|
401
|
+
const _CAe = "CertificateAuthority";
|
|
402
|
+
const _CAer = "CertificateArn";
|
|
350
403
|
const _CAu = "CustomAttribute";
|
|
351
404
|
const _CAus = "CustomAttributes";
|
|
352
405
|
const _CC = "CertificateChain";
|
|
@@ -355,6 +408,9 @@ const _CE = "ConflictException";
|
|
|
355
408
|
const _CF = "CertificateFilter";
|
|
356
409
|
const _CFS = "CertificateFilterStatement";
|
|
357
410
|
const _CFSL = "CertificateFilterStatementList";
|
|
411
|
+
const _CKPO = "CertificateKeyPairOrigin";
|
|
412
|
+
const _CKPOe = "CertificateKeyPairOrigins";
|
|
413
|
+
const _CL = "ContactList";
|
|
358
414
|
const _CM = "CertificateMetadata";
|
|
359
415
|
const _CN = "CommonName";
|
|
360
416
|
const _CNF = "CommonNameFilter";
|
|
@@ -365,9 +421,30 @@ const _CSL = "CertificateSummaryList";
|
|
|
365
421
|
const _CSR = "CertificateSearchResult";
|
|
366
422
|
const _CSRL = "CertificateSearchResultList";
|
|
367
423
|
const _CSe = "CertificateStatuses";
|
|
424
|
+
const _CT = "CertificateTags";
|
|
368
425
|
const _CTLP = "CertificateTransparencyLoggingPreference";
|
|
369
|
-
const
|
|
426
|
+
const _Ce = "Certificate";
|
|
427
|
+
const _Co = "Contact";
|
|
428
|
+
const _Cou = "Country";
|
|
370
429
|
const _D = "Domain";
|
|
430
|
+
const _DAA = "DescribeAcmeAccount";
|
|
431
|
+
const _DAAR = "DescribeAcmeAccountRequest";
|
|
432
|
+
const _DAARe = "DescribeAcmeAccountResponse";
|
|
433
|
+
const _DADV = "DeleteAcmeDomainValidation";
|
|
434
|
+
const _DADVR = "DeleteAcmeDomainValidationRequest";
|
|
435
|
+
const _DADVRe = "DescribeAcmeDomainValidationRequest";
|
|
436
|
+
const _DADVRes = "DescribeAcmeDomainValidationResponse";
|
|
437
|
+
const _DADVe = "DescribeAcmeDomainValidation";
|
|
438
|
+
const _DAE = "DeleteAcmeEndpoint";
|
|
439
|
+
const _DAEAB = "DeleteAcmeExternalAccountBinding";
|
|
440
|
+
const _DAEABR = "DeleteAcmeExternalAccountBindingRequest";
|
|
441
|
+
const _DAEABRe = "DescribeAcmeExternalAccountBindingRequest";
|
|
442
|
+
const _DAEABRes = "DescribeAcmeExternalAccountBindingResponse";
|
|
443
|
+
const _DAEABe = "DescribeAcmeExternalAccountBinding";
|
|
444
|
+
const _DAER = "DeleteAcmeEndpointRequest";
|
|
445
|
+
const _DAERe = "DescribeAcmeEndpointRequest";
|
|
446
|
+
const _DAERes = "DescribeAcmeEndpointResponse";
|
|
447
|
+
const _DAEe = "DescribeAcmeEndpoint";
|
|
371
448
|
const _DBE = "DaysBeforeExpiry";
|
|
372
449
|
const _DC = "DomainComponents";
|
|
373
450
|
const _DCR = "DeleteCertificateRequest";
|
|
@@ -381,29 +458,43 @@ const _DNQ = "DistinguishedNameQualifier";
|
|
|
381
458
|
const _DNi = "DistinguishedName";
|
|
382
459
|
const _DNir = "DirectoryName";
|
|
383
460
|
const _DNn = "DnsName";
|
|
461
|
+
const _DP = "DnsPrevalidation";
|
|
462
|
+
const _DPD = "DnsPrevalidationDetails";
|
|
463
|
+
const _DPO = "DnsPrevalidationOptions";
|
|
464
|
+
const _DS = "DomainScope";
|
|
384
465
|
const _DV = "DomainValidation";
|
|
385
466
|
const _DVL = "DomainValidationList";
|
|
386
467
|
const _DVO = "DomainValidationOptions";
|
|
387
468
|
const _DVOL = "DomainValidationOptionList";
|
|
388
469
|
const _DVOo = "DomainValidationOption";
|
|
389
470
|
const _E = "Exported";
|
|
471
|
+
const _EA = "ExpiresAt";
|
|
472
|
+
const _EAB = "ExternalAccountBinding";
|
|
473
|
+
const _EABx = "ExternalAccountBindings";
|
|
390
474
|
const _EC = "ExportCertificate";
|
|
391
475
|
const _ECR = "ExportCertificateRequest";
|
|
392
476
|
const _ECRx = "ExportCertificateResponse";
|
|
477
|
+
const _ED = "ExactDomain";
|
|
393
478
|
const _EE = "ExpiryEvents";
|
|
394
479
|
const _EEC = "ExpiryEventsConfiguration";
|
|
395
480
|
const _EKU = "ExtendedKeyUsages";
|
|
396
481
|
const _EKUL = "ExtendedKeyUsageList";
|
|
397
482
|
const _EKUx = "ExtendedKeyUsage";
|
|
398
483
|
const _EO = "ExportOption";
|
|
484
|
+
const _EU = "EndpointUrl";
|
|
399
485
|
const _En = "End";
|
|
400
486
|
const _Ex = "Export";
|
|
487
|
+
const _Exp = "Expiration";
|
|
401
488
|
const _F = "Filters";
|
|
489
|
+
const _FD = "FailureDetails";
|
|
402
490
|
const _FR = "FailureReason";
|
|
403
491
|
const _FS = "FilterStatement";
|
|
404
492
|
const _Fi = "Filter";
|
|
405
493
|
const _GAC = "GetAccountConfiguration";
|
|
406
494
|
const _GACR = "GetAccountConfigurationResponse";
|
|
495
|
+
const _GAEABC = "GetAcmeExternalAccountBindingCredentials";
|
|
496
|
+
const _GAEABCR = "GetAcmeExternalAccountBindingCredentialsRequest";
|
|
497
|
+
const _GAEABCRe = "GetAcmeExternalAccountBindingCredentialsResponse";
|
|
407
498
|
const _GC = "GetCertificate";
|
|
408
499
|
const _GCR = "GetCertificateRequest";
|
|
409
500
|
const _GCRe = "GetCertificateResponse";
|
|
@@ -413,6 +504,7 @@ const _GNe = "GeneralName";
|
|
|
413
504
|
const _GQ = "GenerationQualifier";
|
|
414
505
|
const _HASAN = "HasAdditionalSubjectAlternativeNames";
|
|
415
506
|
const _HR = "HttpRedirect";
|
|
507
|
+
const _HZI = "HostedZoneId";
|
|
416
508
|
const _I = "Issuer";
|
|
417
509
|
const _IA = "ImportedAt";
|
|
418
510
|
const _IAE = "InvalidArgsException";
|
|
@@ -424,7 +516,8 @@ const _ICR = "ImportCertificateRequest";
|
|
|
424
516
|
const _ICRm = "ImportCertificateResponse";
|
|
425
517
|
const _IDVOE = "InvalidDomainValidationOptionsException";
|
|
426
518
|
const _IPE = "InvalidParameterException";
|
|
427
|
-
const _ISE = "
|
|
519
|
+
const _ISE = "InternalServerException";
|
|
520
|
+
const _ISEn = "InvalidStateException";
|
|
428
521
|
const _IT = "IdempotencyToken";
|
|
429
522
|
const _ITE = "InvalidTagException";
|
|
430
523
|
const _IU = "InUse";
|
|
@@ -433,10 +526,23 @@ const _In = "Initials";
|
|
|
433
526
|
const _Inc = "Includes";
|
|
434
527
|
const _K = "Key";
|
|
435
528
|
const _KA = "KeyAlgorithm";
|
|
529
|
+
const _KI = "KeyId";
|
|
436
530
|
const _KU = "KeyUsages";
|
|
437
531
|
const _KUL = "KeyUsageList";
|
|
438
532
|
const _KUe = "KeyUsage";
|
|
439
533
|
const _L = "Locality";
|
|
534
|
+
const _LAA = "ListAcmeAccounts";
|
|
535
|
+
const _LAAR = "ListAcmeAccountsRequest";
|
|
536
|
+
const _LAARi = "ListAcmeAccountsResponse";
|
|
537
|
+
const _LADV = "ListAcmeDomainValidations";
|
|
538
|
+
const _LADVR = "ListAcmeDomainValidationsRequest";
|
|
539
|
+
const _LADVRi = "ListAcmeDomainValidationsResponse";
|
|
540
|
+
const _LAE = "ListAcmeEndpoints";
|
|
541
|
+
const _LAEAB = "ListAcmeExternalAccountBindings";
|
|
542
|
+
const _LAEABR = "ListAcmeExternalAccountBindingsRequest";
|
|
543
|
+
const _LAEABRi = "ListAcmeExternalAccountBindingsResponse";
|
|
544
|
+
const _LAER = "ListAcmeEndpointsRequest";
|
|
545
|
+
const _LAERi = "ListAcmeEndpointsResponse";
|
|
440
546
|
const _LC = "ListCertificates";
|
|
441
547
|
const _LCR = "ListCertificatesRequest";
|
|
442
548
|
const _LCRi = "ListCertificatesResponse";
|
|
@@ -444,9 +550,14 @@ const _LEE = "LimitExceededException";
|
|
|
444
550
|
const _LTFC = "ListTagsForCertificate";
|
|
445
551
|
const _LTFCR = "ListTagsForCertificateRequest";
|
|
446
552
|
const _LTFCRi = "ListTagsForCertificateResponse";
|
|
553
|
+
const _LTFR = "ListTagsForResource";
|
|
554
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
555
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
556
|
+
const _LUA = "LastUsedAt";
|
|
447
557
|
const _M = "Message";
|
|
448
558
|
const _MB = "ManagedBy";
|
|
449
559
|
const _MI = "MaxItems";
|
|
560
|
+
const _MK = "MacKey";
|
|
450
561
|
const _MR = "MaxResults";
|
|
451
562
|
const _N = "Name";
|
|
452
563
|
const _NA = "NotAfter";
|
|
@@ -464,11 +575,22 @@ const _P = "Pseudonym";
|
|
|
464
575
|
const _PAC = "PutAccountConfiguration";
|
|
465
576
|
const _PACR = "PutAccountConfigurationRequest";
|
|
466
577
|
const _PB = "PassphraseBlob";
|
|
578
|
+
const _PCA = "PublicCertificateAuthority";
|
|
579
|
+
const _PD = "PrevalidationDetails";
|
|
467
580
|
const _PK = "PrivateKey";
|
|
468
581
|
const _PKB = "PrivateKeyBlob";
|
|
582
|
+
const _PKT = "PublicKeyThumbprint";
|
|
583
|
+
const _PO = "PrevalidationOptions";
|
|
584
|
+
const _PT = "PrevalidationType";
|
|
469
585
|
const _Pa = "Passphrase";
|
|
470
|
-
const _R = "
|
|
586
|
+
const _R = "Reason";
|
|
471
587
|
const _RA = "RevokedAt";
|
|
588
|
+
const _RAA = "RevokeAcmeAccount";
|
|
589
|
+
const _RAAR = "RevokeAcmeAccountRequest";
|
|
590
|
+
const _RAEAB = "RevokeAcmeExternalAccountBinding";
|
|
591
|
+
const _RAEABR = "RevokeAcmeExternalAccountBindingRequest";
|
|
592
|
+
const _RAe = "ResourceArn";
|
|
593
|
+
const _RAo = "RoleArn";
|
|
472
594
|
const _RC = "RenewCertificate";
|
|
473
595
|
const _RCR = "RenewCertificateRequest";
|
|
474
596
|
const _RCRe = "RequestCertificateRequest";
|
|
@@ -494,6 +616,7 @@ const _RTFC = "RemoveTagsFromCertificate";
|
|
|
494
616
|
const _RTFCR = "RemoveTagsFromCertificateRequest";
|
|
495
617
|
const _RVE = "ResendValidationEmail";
|
|
496
618
|
const _RVER = "ResendValidationEmailRequest";
|
|
619
|
+
const _Re = "Results";
|
|
497
620
|
const _S = "Status";
|
|
498
621
|
const _SA = "SignatureAlgorithm";
|
|
499
622
|
const _SAN = "SubjectAlternativeNames";
|
|
@@ -507,32 +630,44 @@ const _SCRe = "SearchCertificatesResponse";
|
|
|
507
630
|
const _SF = "SubjectFilter";
|
|
508
631
|
const _SN = "SerialNumber";
|
|
509
632
|
const _SO = "SortOrder";
|
|
633
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
510
634
|
const _Se = "Serial";
|
|
511
635
|
const _St = "State";
|
|
512
636
|
const _Sta = "Start";
|
|
513
637
|
const _Su = "Subject";
|
|
638
|
+
const _Sub = "Subdomains";
|
|
514
639
|
const _Sur = "Surname";
|
|
515
640
|
const _T = "Type";
|
|
516
641
|
const _TE = "ThrottlingException";
|
|
642
|
+
const _TK = "TagKeys";
|
|
517
643
|
const _TL = "TagList";
|
|
518
644
|
const _TMTE = "TooManyTagsException";
|
|
519
645
|
const _TPE = "TagPolicyException";
|
|
520
646
|
const _TR = "ThrottlingReason";
|
|
521
647
|
const _TRL = "ThrottlingReasonList";
|
|
648
|
+
const _TRR = "TagResourceRequest";
|
|
649
|
+
const _TRa = "TagResource";
|
|
522
650
|
const _TRi = "TimestampRange";
|
|
523
651
|
const _Ta = "Tags";
|
|
524
652
|
const _Tag = "Tag";
|
|
525
653
|
const _Ti = "Title";
|
|
526
654
|
const _UA = "UpdatedAt";
|
|
655
|
+
const _UADV = "UpdateAcmeDomainValidation";
|
|
656
|
+
const _UADVR = "UpdateAcmeDomainValidationRequest";
|
|
657
|
+
const _UAE = "UpdateAcmeEndpoint";
|
|
658
|
+
const _UAER = "UpdateAcmeEndpointRequest";
|
|
527
659
|
const _UCO = "UpdateCertificateOptions";
|
|
528
660
|
const _UCOR = "UpdateCertificateOptionsRequest";
|
|
661
|
+
const _UR = "UntagResource";
|
|
529
662
|
const _URI = "UniformResourceIdentifier";
|
|
663
|
+
const _URR = "UntagResourceRequest";
|
|
530
664
|
const _V = "Value";
|
|
531
665
|
const _VD = "ValidationDomain";
|
|
532
666
|
const _VE = "ValidationException";
|
|
533
667
|
const _VEa = "ValidationEmails";
|
|
534
668
|
const _VM = "ValidationMethod";
|
|
535
669
|
const _VS = "ValidationStatus";
|
|
670
|
+
const _W = "Wildcards";
|
|
536
671
|
const _XA = "X509Attributes";
|
|
537
672
|
const _XAF = "X509AttributeFilter";
|
|
538
673
|
const _aQE = "awsQueryError";
|
|
@@ -548,6 +683,7 @@ const _mB = "managedBy";
|
|
|
548
683
|
const _r = "reason";
|
|
549
684
|
const _re = "resource";
|
|
550
685
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.acm";
|
|
686
|
+
const _se = "server";
|
|
551
687
|
const _tR = "throttlingReasons";
|
|
552
688
|
const n0 = "com.amazonaws.acm";
|
|
553
689
|
const _s_registry = TypeRegistry.for(_s);
|
|
@@ -566,6 +702,12 @@ var ConflictException$ = [-3, n0, _CE,
|
|
|
566
702
|
[0]
|
|
567
703
|
];
|
|
568
704
|
n0_registry.registerError(ConflictException$, ConflictException);
|
|
705
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
706
|
+
{ [_e]: _se },
|
|
707
|
+
[_m],
|
|
708
|
+
[0]
|
|
709
|
+
];
|
|
710
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
569
711
|
var InvalidArgsException$ = [-3, n0, _IAE,
|
|
570
712
|
{ [_e]: _c },
|
|
571
713
|
[_m],
|
|
@@ -590,7 +732,7 @@ var InvalidParameterException$ = [-3, n0, _IPE,
|
|
|
590
732
|
[0]
|
|
591
733
|
];
|
|
592
734
|
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
593
|
-
var InvalidStateException$ = [-3, n0,
|
|
735
|
+
var InvalidStateException$ = [-3, n0, _ISEn,
|
|
594
736
|
{ [_e]: _c },
|
|
595
737
|
[_m],
|
|
596
738
|
[0]
|
|
@@ -626,6 +768,12 @@ var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
|
626
768
|
[0]
|
|
627
769
|
];
|
|
628
770
|
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
771
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
772
|
+
{ [_e]: _c },
|
|
773
|
+
[_m],
|
|
774
|
+
[0]
|
|
775
|
+
];
|
|
776
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
629
777
|
var TagPolicyException$ = [-3, n0, _TPE,
|
|
630
778
|
{ [_e]: _c },
|
|
631
779
|
[_m],
|
|
@@ -654,23 +802,64 @@ const errorTypeRegistries = [
|
|
|
654
802
|
_s_registry,
|
|
655
803
|
n0_registry,
|
|
656
804
|
];
|
|
805
|
+
var MacKey = [0, n0, _MK, 8, 0];
|
|
657
806
|
var PassphraseBlob = [0, n0, _PB, 8, 21];
|
|
658
807
|
var PrivateKey = [0, n0, _PK, 8, 0];
|
|
659
808
|
var PrivateKeyBlob = [0, n0, _PKB, 8, 21];
|
|
660
809
|
var AcmCertificateMetadata$ = [3, n0, _ACM,
|
|
661
810
|
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]
|
|
811
|
+
[_CA, _E, _IA, _IU, _IAs, _RE, _RA, _S, _RS, _T, _EO, _MB, _VM, _CKPO, _AEA, _AAI],
|
|
812
|
+
[4, 2, 4, 2, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
813
|
+
];
|
|
814
|
+
var AcmeAccount$ = [3, n0, _AA,
|
|
815
|
+
0,
|
|
816
|
+
[_AU, _PKT, _S, _CA, _AEABA, _C],
|
|
817
|
+
[0, 0, 0, 4, 0, [() => ContactList, 0]]
|
|
818
|
+
];
|
|
819
|
+
var AcmeAccountSummary$ = [3, n0, _AAS,
|
|
820
|
+
0,
|
|
821
|
+
[_AU, _PKT, _S, _CA, _AEABA, _C],
|
|
822
|
+
[0, 0, 0, 4, 0, [() => ContactList, 0]]
|
|
823
|
+
];
|
|
824
|
+
var AcmeDomainValidation$ = [3, n0, _ADV,
|
|
825
|
+
0,
|
|
826
|
+
[_ADVA, _AEA, _DN, _PT, _PD, _S, _FD, _CA, _UA],
|
|
827
|
+
[0, 0, 0, 0, () => PrevalidationDetails$, 0, () => FailureDetails$, 4, 4]
|
|
828
|
+
];
|
|
829
|
+
var AcmeDomainValidationSummary$ = [3, n0, _ADVS,
|
|
830
|
+
0,
|
|
831
|
+
[_ADVA, _AEA, _DN, _PT, _PD, _S, _FD, _CA, _UA],
|
|
832
|
+
[0, 0, 0, 0, () => PrevalidationDetails$, 0, () => FailureDetails$, 4, 4]
|
|
833
|
+
];
|
|
834
|
+
var AcmeEndpoint$ = [3, n0, _AE,
|
|
835
|
+
0,
|
|
836
|
+
[_AEA, _EU, _S, _FR, _AB, _Co, _CAe, _CT, _CA, _UA],
|
|
837
|
+
[0, 0, 0, 0, 0, 0, () => CertificateAuthority$, () => TagList, 4, 4]
|
|
838
|
+
];
|
|
839
|
+
var AcmeEndpointSummary$ = [3, n0, _AES,
|
|
840
|
+
0,
|
|
841
|
+
[_AEA, _EU, _S, _FR, _AB, _Co, _CAe, _CT, _CA, _UA],
|
|
842
|
+
[0, 0, 0, 0, 0, 0, () => CertificateAuthority$, () => TagList, 4, 4]
|
|
843
|
+
];
|
|
844
|
+
var AcmeExternalAccountBinding$ = [3, n0, _AEAB,
|
|
845
|
+
0,
|
|
846
|
+
[_AEABA, _AEA, _RAo, _EA, _RA, _LUA, _CA, _UA],
|
|
847
|
+
[0, 0, 0, 4, 4, 4, 4, 4]
|
|
848
|
+
];
|
|
849
|
+
var AcmeExternalAccountBindingSummary$ = [3, n0, _AEABS,
|
|
850
|
+
0,
|
|
851
|
+
[_AEABA, _AEA, _RAo, _EA, _RA, _LUA, _CA, _UA],
|
|
852
|
+
[0, 0, 0, 4, 4, 4, 4, 4]
|
|
664
853
|
];
|
|
665
854
|
var AddTagsToCertificateRequest$ = [3, n0, _ATTCR,
|
|
666
855
|
0,
|
|
667
|
-
[
|
|
856
|
+
[_CAer, _Ta],
|
|
668
857
|
[0, () => TagList], 2
|
|
669
858
|
];
|
|
670
859
|
var CertificateDetail$ = [3, n0, _CD,
|
|
671
860
|
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
|
|
861
|
+
[_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],
|
|
862
|
+
[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
863
|
];
|
|
675
864
|
var CertificateOptions$ = [3, n0, _CO,
|
|
676
865
|
0,
|
|
@@ -679,42 +868,127 @@ var CertificateOptions$ = [3, n0, _CO,
|
|
|
679
868
|
];
|
|
680
869
|
var CertificateSearchResult$ = [3, n0, _CSR,
|
|
681
870
|
0,
|
|
682
|
-
[
|
|
871
|
+
[_CAer, _XA, _CM],
|
|
683
872
|
[0, () => X509Attributes$, () => CertificateMetadata$]
|
|
684
873
|
];
|
|
685
874
|
var CertificateSummary$ = [3, n0, _CS,
|
|
686
875
|
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]
|
|
876
|
+
[_CAer, _DN, _SANS, _HASAN, _S, _T, _KA, _KU, _EKU, _EO, _IU, _E, _RE, _NB, _NA, _CA, _IAs, _IA, _RA, _MB, _CKPO],
|
|
877
|
+
[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
878
|
];
|
|
690
879
|
var CommonNameFilter$ = [3, n0, _CNF,
|
|
691
880
|
0,
|
|
692
881
|
[_V, _COo],
|
|
693
882
|
[0, 0], 2
|
|
694
883
|
];
|
|
884
|
+
var CreateAcmeDomainValidationRequest$ = [3, n0, _CADVR,
|
|
885
|
+
0,
|
|
886
|
+
[_AEA, _DN, _PO, _IT, _Ta],
|
|
887
|
+
[0, 0, () => PrevalidationOptions$, [0, 4], () => TagList], 3
|
|
888
|
+
];
|
|
889
|
+
var CreateAcmeDomainValidationResponse$ = [3, n0, _CADVRr,
|
|
890
|
+
0,
|
|
891
|
+
[_ADVA],
|
|
892
|
+
[0], 1
|
|
893
|
+
];
|
|
894
|
+
var CreateAcmeEndpointRequest$ = [3, n0, _CAER,
|
|
895
|
+
0,
|
|
896
|
+
[_AB, _CAe, _IT, _Co, _Ta, _CT],
|
|
897
|
+
[0, () => CertificateAuthority$, [0, 4], 0, () => TagList, () => TagList], 2
|
|
898
|
+
];
|
|
899
|
+
var CreateAcmeEndpointResponse$ = [3, n0, _CAERr,
|
|
900
|
+
0,
|
|
901
|
+
[_AEA],
|
|
902
|
+
[0]
|
|
903
|
+
];
|
|
904
|
+
var CreateAcmeExternalAccountBindingRequest$ = [3, n0, _CAEABR,
|
|
905
|
+
0,
|
|
906
|
+
[_AEA, _RAo, _IT, _Exp, _Ta],
|
|
907
|
+
[0, 0, [0, 4], () => Expiration$, () => TagList], 2
|
|
908
|
+
];
|
|
909
|
+
var CreateAcmeExternalAccountBindingResponse$ = [3, n0, _CAEABRr,
|
|
910
|
+
0,
|
|
911
|
+
[_EAB],
|
|
912
|
+
[() => AcmeExternalAccountBinding$]
|
|
913
|
+
];
|
|
695
914
|
var CustomAttribute$ = [3, n0, _CAu,
|
|
696
915
|
0,
|
|
697
916
|
[_OI, _V],
|
|
698
917
|
[0, 0]
|
|
699
918
|
];
|
|
919
|
+
var DeleteAcmeDomainValidationRequest$ = [3, n0, _DADVR,
|
|
920
|
+
0,
|
|
921
|
+
[_ADVA],
|
|
922
|
+
[0], 1
|
|
923
|
+
];
|
|
924
|
+
var DeleteAcmeEndpointRequest$ = [3, n0, _DAER,
|
|
925
|
+
0,
|
|
926
|
+
[_AEA],
|
|
927
|
+
[0], 1
|
|
928
|
+
];
|
|
929
|
+
var DeleteAcmeExternalAccountBindingRequest$ = [3, n0, _DAEABR,
|
|
930
|
+
0,
|
|
931
|
+
[_AEABA],
|
|
932
|
+
[0], 1
|
|
933
|
+
];
|
|
700
934
|
var DeleteCertificateRequest$ = [3, n0, _DCR,
|
|
701
935
|
0,
|
|
702
|
-
[
|
|
936
|
+
[_CAer],
|
|
937
|
+
[0], 1
|
|
938
|
+
];
|
|
939
|
+
var DescribeAcmeAccountRequest$ = [3, n0, _DAAR,
|
|
940
|
+
0,
|
|
941
|
+
[_AEA, _AU],
|
|
942
|
+
[0, 0], 2
|
|
943
|
+
];
|
|
944
|
+
var DescribeAcmeAccountResponse$ = [3, n0, _DAARe,
|
|
945
|
+
0,
|
|
946
|
+
[_AA],
|
|
947
|
+
[[() => AcmeAccount$, 0]]
|
|
948
|
+
];
|
|
949
|
+
var DescribeAcmeDomainValidationRequest$ = [3, n0, _DADVRe,
|
|
950
|
+
0,
|
|
951
|
+
[_ADVA],
|
|
703
952
|
[0], 1
|
|
704
953
|
];
|
|
954
|
+
var DescribeAcmeDomainValidationResponse$ = [3, n0, _DADVRes,
|
|
955
|
+
0,
|
|
956
|
+
[_ADV],
|
|
957
|
+
[() => AcmeDomainValidation$]
|
|
958
|
+
];
|
|
959
|
+
var DescribeAcmeEndpointRequest$ = [3, n0, _DAERe,
|
|
960
|
+
0,
|
|
961
|
+
[_AEA],
|
|
962
|
+
[0], 1
|
|
963
|
+
];
|
|
964
|
+
var DescribeAcmeEndpointResponse$ = [3, n0, _DAERes,
|
|
965
|
+
0,
|
|
966
|
+
[_AE],
|
|
967
|
+
[() => AcmeEndpoint$]
|
|
968
|
+
];
|
|
969
|
+
var DescribeAcmeExternalAccountBindingRequest$ = [3, n0, _DAEABRe,
|
|
970
|
+
0,
|
|
971
|
+
[_AEABA],
|
|
972
|
+
[0], 1
|
|
973
|
+
];
|
|
974
|
+
var DescribeAcmeExternalAccountBindingResponse$ = [3, n0, _DAEABRes,
|
|
975
|
+
0,
|
|
976
|
+
[_EAB],
|
|
977
|
+
[() => AcmeExternalAccountBinding$]
|
|
978
|
+
];
|
|
705
979
|
var DescribeCertificateRequest$ = [3, n0, _DCRe,
|
|
706
980
|
0,
|
|
707
|
-
[
|
|
981
|
+
[_CAer],
|
|
708
982
|
[0], 1
|
|
709
983
|
];
|
|
710
984
|
var DescribeCertificateResponse$ = [3, n0, _DCRes,
|
|
711
985
|
0,
|
|
712
|
-
[
|
|
986
|
+
[_Ce],
|
|
713
987
|
[() => CertificateDetail$]
|
|
714
988
|
];
|
|
715
989
|
var DistinguishedName$ = [3, n0, _DNi,
|
|
716
990
|
0,
|
|
717
|
-
[_CN, _DC,
|
|
991
|
+
[_CN, _DC, _Cou, _CAus, _DNQ, _GQ, _GN, _In, _L, _Or, _OU, _P, _SN, _St, _Sur, _Ti],
|
|
718
992
|
[0, 64 | 0, 0, () => CustomAttributeList, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
719
993
|
];
|
|
720
994
|
var DnsNameFilter$ = [3, n0, _DNF,
|
|
@@ -722,6 +996,21 @@ var DnsNameFilter$ = [3, n0, _DNF,
|
|
|
722
996
|
[_V, _COo],
|
|
723
997
|
[0, 0], 2
|
|
724
998
|
];
|
|
999
|
+
var DnsPrevalidationDetails$ = [3, n0, _DPD,
|
|
1000
|
+
0,
|
|
1001
|
+
[_DS, _HZI, _RRe],
|
|
1002
|
+
[() => DomainScope$, 0, () => ResourceRecord$]
|
|
1003
|
+
];
|
|
1004
|
+
var DnsPrevalidationOptions$ = [3, n0, _DPO,
|
|
1005
|
+
0,
|
|
1006
|
+
[_DS, _HZI],
|
|
1007
|
+
[() => DomainScope$, 0]
|
|
1008
|
+
];
|
|
1009
|
+
var DomainScope$ = [3, n0, _DS,
|
|
1010
|
+
0,
|
|
1011
|
+
[_ED, _Sub, _W],
|
|
1012
|
+
[0, 0, 0]
|
|
1013
|
+
];
|
|
725
1014
|
var DomainValidation$ = [3, n0, _DV,
|
|
726
1015
|
0,
|
|
727
1016
|
[_DN, _VEa, _VD, _VS, _RRe, _HR, _VM],
|
|
@@ -732,6 +1021,11 @@ var DomainValidationOption$ = [3, n0, _DVOo,
|
|
|
732
1021
|
[_DN, _VD],
|
|
733
1022
|
[0, 0], 2
|
|
734
1023
|
];
|
|
1024
|
+
var Expiration$ = [3, n0, _Exp,
|
|
1025
|
+
0,
|
|
1026
|
+
[_V, _T],
|
|
1027
|
+
[1, 0], 2
|
|
1028
|
+
];
|
|
735
1029
|
var ExpiryEventsConfiguration$ = [3, n0, _EEC,
|
|
736
1030
|
0,
|
|
737
1031
|
[_DBE],
|
|
@@ -739,12 +1033,12 @@ var ExpiryEventsConfiguration$ = [3, n0, _EEC,
|
|
|
739
1033
|
];
|
|
740
1034
|
var ExportCertificateRequest$ = [3, n0, _ECR,
|
|
741
1035
|
0,
|
|
742
|
-
[
|
|
1036
|
+
[_CAer, _Pa],
|
|
743
1037
|
[0, [() => PassphraseBlob, 0]], 2
|
|
744
1038
|
];
|
|
745
1039
|
var ExportCertificateResponse$ = [3, n0, _ECRx,
|
|
746
1040
|
0,
|
|
747
|
-
[
|
|
1041
|
+
[_Ce, _CC, _PK],
|
|
748
1042
|
[0, 0, [() => PrivateKey, 0]]
|
|
749
1043
|
];
|
|
750
1044
|
var ExtendedKeyUsage$ = [3, n0, _EKUx,
|
|
@@ -752,6 +1046,11 @@ var ExtendedKeyUsage$ = [3, n0, _EKUx,
|
|
|
752
1046
|
[_N, _OID],
|
|
753
1047
|
[0, 0]
|
|
754
1048
|
];
|
|
1049
|
+
var FailureDetails$ = [3, n0, _FD,
|
|
1050
|
+
0,
|
|
1051
|
+
[_R, _M],
|
|
1052
|
+
[0, 0]
|
|
1053
|
+
];
|
|
755
1054
|
var Filters$ = [3, n0, _F,
|
|
756
1055
|
0,
|
|
757
1056
|
[_eKU, _kU, _kT, _eO, _mB],
|
|
@@ -762,14 +1061,24 @@ var GetAccountConfigurationResponse$ = [3, n0, _GACR,
|
|
|
762
1061
|
[_EE],
|
|
763
1062
|
[() => ExpiryEventsConfiguration$]
|
|
764
1063
|
];
|
|
1064
|
+
var GetAcmeExternalAccountBindingCredentialsRequest$ = [3, n0, _GAEABCR,
|
|
1065
|
+
0,
|
|
1066
|
+
[_AEABA],
|
|
1067
|
+
[0], 1
|
|
1068
|
+
];
|
|
1069
|
+
var GetAcmeExternalAccountBindingCredentialsResponse$ = [3, n0, _GAEABCRe,
|
|
1070
|
+
0,
|
|
1071
|
+
[_KI, _MK],
|
|
1072
|
+
[0, [() => MacKey, 0]]
|
|
1073
|
+
];
|
|
765
1074
|
var GetCertificateRequest$ = [3, n0, _GCR,
|
|
766
1075
|
0,
|
|
767
|
-
[
|
|
1076
|
+
[_CAer],
|
|
768
1077
|
[0], 1
|
|
769
1078
|
];
|
|
770
1079
|
var GetCertificateResponse$ = [3, n0, _GCRe,
|
|
771
1080
|
0,
|
|
772
|
-
[
|
|
1081
|
+
[_Ce, _CC],
|
|
773
1082
|
[0, 0]
|
|
774
1083
|
];
|
|
775
1084
|
var HttpRedirect$ = [3, n0, _HR,
|
|
@@ -779,12 +1088,12 @@ var HttpRedirect$ = [3, n0, _HR,
|
|
|
779
1088
|
];
|
|
780
1089
|
var ImportCertificateRequest$ = [3, n0, _ICR,
|
|
781
1090
|
0,
|
|
782
|
-
[
|
|
1091
|
+
[_Ce, _PK, _CAer, _CC, _Ta],
|
|
783
1092
|
[21, [() => PrivateKeyBlob, 0], 0, 21, () => TagList], 2
|
|
784
1093
|
];
|
|
785
1094
|
var ImportCertificateResponse$ = [3, n0, _ICRm,
|
|
786
1095
|
0,
|
|
787
|
-
[
|
|
1096
|
+
[_CAer],
|
|
788
1097
|
[0]
|
|
789
1098
|
];
|
|
790
1099
|
var KeyUsage$ = [3, n0, _KUe,
|
|
@@ -792,10 +1101,50 @@ var KeyUsage$ = [3, n0, _KUe,
|
|
|
792
1101
|
[_N],
|
|
793
1102
|
[0]
|
|
794
1103
|
];
|
|
1104
|
+
var ListAcmeAccountsRequest$ = [3, n0, _LAAR,
|
|
1105
|
+
0,
|
|
1106
|
+
[_AEA, _NT, _MR],
|
|
1107
|
+
[0, 0, 1], 1
|
|
1108
|
+
];
|
|
1109
|
+
var ListAcmeAccountsResponse$ = [3, n0, _LAARi,
|
|
1110
|
+
0,
|
|
1111
|
+
[_AAc, _NT],
|
|
1112
|
+
[[() => AcmeAccountList, 0], 0]
|
|
1113
|
+
];
|
|
1114
|
+
var ListAcmeDomainValidationsRequest$ = [3, n0, _LADVR,
|
|
1115
|
+
0,
|
|
1116
|
+
[_AEA, _NT, _MR],
|
|
1117
|
+
[0, 0, 1], 1
|
|
1118
|
+
];
|
|
1119
|
+
var ListAcmeDomainValidationsResponse$ = [3, n0, _LADVRi,
|
|
1120
|
+
0,
|
|
1121
|
+
[_ADVc, _NT],
|
|
1122
|
+
[() => AcmeDomainValidationList, 0]
|
|
1123
|
+
];
|
|
1124
|
+
var ListAcmeEndpointsRequest$ = [3, n0, _LAER,
|
|
1125
|
+
0,
|
|
1126
|
+
[_NT, _MR],
|
|
1127
|
+
[0, 1]
|
|
1128
|
+
];
|
|
1129
|
+
var ListAcmeEndpointsResponse$ = [3, n0, _LAERi,
|
|
1130
|
+
0,
|
|
1131
|
+
[_AEc, _NT],
|
|
1132
|
+
[() => AcmeEndpointList, 0]
|
|
1133
|
+
];
|
|
1134
|
+
var ListAcmeExternalAccountBindingsRequest$ = [3, n0, _LAEABR,
|
|
1135
|
+
0,
|
|
1136
|
+
[_AEA, _NT, _MR],
|
|
1137
|
+
[0, 0, 1], 1
|
|
1138
|
+
];
|
|
1139
|
+
var ListAcmeExternalAccountBindingsResponse$ = [3, n0, _LAEABRi,
|
|
1140
|
+
0,
|
|
1141
|
+
[_EABx, _NT],
|
|
1142
|
+
[() => AcmeExternalAccountBindingList, 0]
|
|
1143
|
+
];
|
|
795
1144
|
var ListCertificatesRequest$ = [3, n0, _LCR,
|
|
796
1145
|
0,
|
|
797
|
-
[_CSe, _Inc, _NT, _MI, _SB, _SO],
|
|
798
|
-
[64 | 0, () => Filters$, 0, 1, 0, 0]
|
|
1146
|
+
[_CSe, _CKPOe, _Inc, _NT, _MI, _SB, _SO],
|
|
1147
|
+
[64 | 0, 64 | 0, () => Filters$, 0, 1, 0, 0]
|
|
799
1148
|
];
|
|
800
1149
|
var ListCertificatesResponse$ = [3, n0, _LCRi,
|
|
801
1150
|
0,
|
|
@@ -804,7 +1153,7 @@ var ListCertificatesResponse$ = [3, n0, _LCRi,
|
|
|
804
1153
|
];
|
|
805
1154
|
var ListTagsForCertificateRequest$ = [3, n0, _LTFCR,
|
|
806
1155
|
0,
|
|
807
|
-
[
|
|
1156
|
+
[_CAer],
|
|
808
1157
|
[0], 1
|
|
809
1158
|
];
|
|
810
1159
|
var ListTagsForCertificateResponse$ = [3, n0, _LTFCRi,
|
|
@@ -812,11 +1161,26 @@ var ListTagsForCertificateResponse$ = [3, n0, _LTFCRi,
|
|
|
812
1161
|
[_Ta],
|
|
813
1162
|
[() => TagList]
|
|
814
1163
|
];
|
|
1164
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1165
|
+
0,
|
|
1166
|
+
[_RAe],
|
|
1167
|
+
[0], 1
|
|
1168
|
+
];
|
|
1169
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1170
|
+
0,
|
|
1171
|
+
[_Ta],
|
|
1172
|
+
[() => TagList]
|
|
1173
|
+
];
|
|
815
1174
|
var OtherName$ = [3, n0, _ON,
|
|
816
1175
|
0,
|
|
817
1176
|
[_OI, _V],
|
|
818
1177
|
[0, 0]
|
|
819
1178
|
];
|
|
1179
|
+
var PublicCertificateAuthority$ = [3, n0, _PCA,
|
|
1180
|
+
0,
|
|
1181
|
+
[_AKA],
|
|
1182
|
+
[64 | 0]
|
|
1183
|
+
];
|
|
820
1184
|
var PutAccountConfigurationRequest$ = [3, n0, _PACR,
|
|
821
1185
|
0,
|
|
822
1186
|
[_IT, _EE],
|
|
@@ -824,7 +1188,7 @@ var PutAccountConfigurationRequest$ = [3, n0, _PACR,
|
|
|
824
1188
|
];
|
|
825
1189
|
var RemoveTagsFromCertificateRequest$ = [3, n0, _RTFCR,
|
|
826
1190
|
0,
|
|
827
|
-
[
|
|
1191
|
+
[_CAer, _Ta],
|
|
828
1192
|
[0, () => TagList], 2
|
|
829
1193
|
];
|
|
830
1194
|
var RenewalSummary$ = [3, n0, _RSe,
|
|
@@ -834,7 +1198,7 @@ var RenewalSummary$ = [3, n0, _RSe,
|
|
|
834
1198
|
];
|
|
835
1199
|
var RenewCertificateRequest$ = [3, n0, _RCR,
|
|
836
1200
|
0,
|
|
837
|
-
[
|
|
1201
|
+
[_CAer],
|
|
838
1202
|
[0], 1
|
|
839
1203
|
];
|
|
840
1204
|
var RequestCertificateRequest$ = [3, n0, _RCRe,
|
|
@@ -844,12 +1208,12 @@ var RequestCertificateRequest$ = [3, n0, _RCRe,
|
|
|
844
1208
|
];
|
|
845
1209
|
var RequestCertificateResponse$ = [3, n0, _RCReq,
|
|
846
1210
|
0,
|
|
847
|
-
[
|
|
1211
|
+
[_CAer],
|
|
848
1212
|
[0]
|
|
849
1213
|
];
|
|
850
1214
|
var ResendValidationEmailRequest$ = [3, n0, _RVER,
|
|
851
1215
|
0,
|
|
852
|
-
[
|
|
1216
|
+
[_CAer, _D, _VD],
|
|
853
1217
|
[0, 0, 0], 3
|
|
854
1218
|
];
|
|
855
1219
|
var ResourceRecord$ = [3, n0, _RRe,
|
|
@@ -857,14 +1221,24 @@ var ResourceRecord$ = [3, n0, _RRe,
|
|
|
857
1221
|
[_N, _T, _V],
|
|
858
1222
|
[0, 0, 0], 3
|
|
859
1223
|
];
|
|
1224
|
+
var RevokeAcmeAccountRequest$ = [3, n0, _RAAR,
|
|
1225
|
+
0,
|
|
1226
|
+
[_AEA, _AU],
|
|
1227
|
+
[0, 0], 2
|
|
1228
|
+
];
|
|
1229
|
+
var RevokeAcmeExternalAccountBindingRequest$ = [3, n0, _RAEABR,
|
|
1230
|
+
0,
|
|
1231
|
+
[_AEABA],
|
|
1232
|
+
[0], 1
|
|
1233
|
+
];
|
|
860
1234
|
var RevokeCertificateRequest$ = [3, n0, _RCRev,
|
|
861
1235
|
0,
|
|
862
|
-
[
|
|
1236
|
+
[_CAer, _RR],
|
|
863
1237
|
[0, 0], 2
|
|
864
1238
|
];
|
|
865
1239
|
var RevokeCertificateResponse$ = [3, n0, _RCRevo,
|
|
866
1240
|
0,
|
|
867
|
-
[
|
|
1241
|
+
[_CAer],
|
|
868
1242
|
[0]
|
|
869
1243
|
];
|
|
870
1244
|
var SearchCertificatesRequest$ = [3, n0, _SCR,
|
|
@@ -874,7 +1248,7 @@ var SearchCertificatesRequest$ = [3, n0, _SCR,
|
|
|
874
1248
|
];
|
|
875
1249
|
var SearchCertificatesResponse$ = [3, n0, _SCRe,
|
|
876
1250
|
0,
|
|
877
|
-
[
|
|
1251
|
+
[_Re, _NT],
|
|
878
1252
|
[() => CertificateSearchResultList, 0]
|
|
879
1253
|
];
|
|
880
1254
|
var Tag$ = [3, n0, _Tag,
|
|
@@ -882,6 +1256,11 @@ var Tag$ = [3, n0, _Tag,
|
|
|
882
1256
|
[_K, _V],
|
|
883
1257
|
[0, 0], 1
|
|
884
1258
|
];
|
|
1259
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1260
|
+
0,
|
|
1261
|
+
[_RAe, _Ta],
|
|
1262
|
+
[0, () => TagList], 2
|
|
1263
|
+
];
|
|
885
1264
|
var ThrottlingReason$ = [3, n0, _TR,
|
|
886
1265
|
0,
|
|
887
1266
|
[_r, _re],
|
|
@@ -892,9 +1271,24 @@ var TimestampRange$ = [3, n0, _TRi,
|
|
|
892
1271
|
[_Sta, _En],
|
|
893
1272
|
[4, 4]
|
|
894
1273
|
];
|
|
1274
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1275
|
+
0,
|
|
1276
|
+
[_RAe, _TK],
|
|
1277
|
+
[0, 64 | 0], 2
|
|
1278
|
+
];
|
|
1279
|
+
var UpdateAcmeDomainValidationRequest$ = [3, n0, _UADVR,
|
|
1280
|
+
0,
|
|
1281
|
+
[_ADVA, _PO],
|
|
1282
|
+
[0, () => PrevalidationOptions$], 1
|
|
1283
|
+
];
|
|
1284
|
+
var UpdateAcmeEndpointRequest$ = [3, n0, _UAER,
|
|
1285
|
+
0,
|
|
1286
|
+
[_AEA, _AB, _Co, _CAe],
|
|
1287
|
+
[0, 0, 0, () => CertificateAuthority$], 1
|
|
1288
|
+
];
|
|
895
1289
|
var UpdateCertificateOptionsRequest$ = [3, n0, _UCOR,
|
|
896
1290
|
0,
|
|
897
|
-
[
|
|
1291
|
+
[_CAer, _O],
|
|
898
1292
|
[0, () => CertificateOptions$], 2
|
|
899
1293
|
];
|
|
900
1294
|
var X509Attributes$ = [3, n0, _XA,
|
|
@@ -903,6 +1297,19 @@ var X509Attributes$ = [3, n0, _XA,
|
|
|
903
1297
|
[() => DistinguishedName$, () => DistinguishedName$, () => GeneralNameList, 64 | 0, 0, 64 | 0, 0, 4, 4]
|
|
904
1298
|
];
|
|
905
1299
|
var __Unit = "unit";
|
|
1300
|
+
var AcmeAccountList = [1, n0, _AAL,
|
|
1301
|
+
0, [() => AcmeAccountSummary$,
|
|
1302
|
+
0]
|
|
1303
|
+
];
|
|
1304
|
+
var AcmeDomainValidationList = [1, n0, _ADVL,
|
|
1305
|
+
0, () => AcmeDomainValidationSummary$
|
|
1306
|
+
];
|
|
1307
|
+
var AcmeEndpointList = [1, n0, _AEL,
|
|
1308
|
+
0, () => AcmeEndpointSummary$
|
|
1309
|
+
];
|
|
1310
|
+
var AcmeExternalAccountBindingList = [1, n0, _AEABL,
|
|
1311
|
+
0, () => AcmeExternalAccountBindingSummary$
|
|
1312
|
+
];
|
|
906
1313
|
var CertificateFilterStatementList = [1, n0, _CFSL,
|
|
907
1314
|
0, () => CertificateFilterStatement$
|
|
908
1315
|
];
|
|
@@ -912,6 +1319,9 @@ var CertificateSearchResultList = [1, n0, _CSRL,
|
|
|
912
1319
|
var CertificateSummaryList = [1, n0, _CSL,
|
|
913
1320
|
0, () => CertificateSummary$
|
|
914
1321
|
];
|
|
1322
|
+
var ContactList = [1, n0, _CL,
|
|
1323
|
+
8, 0
|
|
1324
|
+
];
|
|
915
1325
|
var CustomAttributeList = [1, n0, _CAL,
|
|
916
1326
|
0, () => CustomAttribute$
|
|
917
1327
|
];
|
|
@@ -938,12 +1348,17 @@ var ThrottlingReasonList = [1, n0, _TRL,
|
|
|
938
1348
|
];
|
|
939
1349
|
var AcmCertificateMetadataFilter$ = [4, n0, _ACMF,
|
|
940
1350
|
0,
|
|
941
|
-
[_S, _RS, _T, _IU, _E, _EO, _MB, _VM],
|
|
942
|
-
[0, 0, 0, 2, 2, 0, 0, 0]
|
|
1351
|
+
[_S, _RS, _T, _IU, _E, _EO, _MB, _VM, _CKPO, _AEA, _AAI],
|
|
1352
|
+
[0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0]
|
|
1353
|
+
];
|
|
1354
|
+
var CertificateAuthority$ = [4, n0, _CAe,
|
|
1355
|
+
0,
|
|
1356
|
+
[_PCA],
|
|
1357
|
+
[() => PublicCertificateAuthority$]
|
|
943
1358
|
];
|
|
944
1359
|
var CertificateFilter$ = [4, n0, _CF,
|
|
945
1360
|
0,
|
|
946
|
-
[
|
|
1361
|
+
[_CAer, _XAF, _ACMF],
|
|
947
1362
|
[0, () => X509AttributeFilter$, () => AcmCertificateMetadataFilter$]
|
|
948
1363
|
];
|
|
949
1364
|
var CertificateFilterStatement$ = [4, n0, _CFS,
|
|
@@ -961,6 +1376,16 @@ var GeneralName$ = [4, n0, _GNe,
|
|
|
961
1376
|
[_DNir, _DNn, _IAp, _ON, _RI, _RN, _URI],
|
|
962
1377
|
[() => DistinguishedName$, 0, 0, () => OtherName$, 0, 0, 0]
|
|
963
1378
|
];
|
|
1379
|
+
var PrevalidationDetails$ = [4, n0, _PD,
|
|
1380
|
+
0,
|
|
1381
|
+
[_DP],
|
|
1382
|
+
[() => DnsPrevalidationDetails$]
|
|
1383
|
+
];
|
|
1384
|
+
var PrevalidationOptions$ = [4, n0, _PO,
|
|
1385
|
+
0,
|
|
1386
|
+
[_DP],
|
|
1387
|
+
[() => DnsPrevalidationOptions$]
|
|
1388
|
+
];
|
|
964
1389
|
var SubjectAlternativeNameFilter$ = [4, n0, _SANF,
|
|
965
1390
|
0,
|
|
966
1391
|
[_DNn],
|
|
@@ -979,9 +1404,39 @@ var X509AttributeFilter$ = [4, n0, _XAF,
|
|
|
979
1404
|
var AddTagsToCertificate$ = [9, n0, _ATTC,
|
|
980
1405
|
0, () => AddTagsToCertificateRequest$, () => __Unit
|
|
981
1406
|
];
|
|
1407
|
+
var CreateAcmeDomainValidation$ = [9, n0, _CADV,
|
|
1408
|
+
0, () => CreateAcmeDomainValidationRequest$, () => CreateAcmeDomainValidationResponse$
|
|
1409
|
+
];
|
|
1410
|
+
var CreateAcmeEndpoint$ = [9, n0, _CAE,
|
|
1411
|
+
2, () => CreateAcmeEndpointRequest$, () => CreateAcmeEndpointResponse$
|
|
1412
|
+
];
|
|
1413
|
+
var CreateAcmeExternalAccountBinding$ = [9, n0, _CAEAB,
|
|
1414
|
+
2, () => CreateAcmeExternalAccountBindingRequest$, () => CreateAcmeExternalAccountBindingResponse$
|
|
1415
|
+
];
|
|
1416
|
+
var DeleteAcmeDomainValidation$ = [9, n0, _DADV,
|
|
1417
|
+
2, () => DeleteAcmeDomainValidationRequest$, () => __Unit
|
|
1418
|
+
];
|
|
1419
|
+
var DeleteAcmeEndpoint$ = [9, n0, _DAE,
|
|
1420
|
+
2, () => DeleteAcmeEndpointRequest$, () => __Unit
|
|
1421
|
+
];
|
|
1422
|
+
var DeleteAcmeExternalAccountBinding$ = [9, n0, _DAEAB,
|
|
1423
|
+
2, () => DeleteAcmeExternalAccountBindingRequest$, () => __Unit
|
|
1424
|
+
];
|
|
982
1425
|
var DeleteCertificate$ = [9, n0, _DCe,
|
|
983
1426
|
0, () => DeleteCertificateRequest$, () => __Unit
|
|
984
1427
|
];
|
|
1428
|
+
var DescribeAcmeAccount$ = [9, n0, _DAA,
|
|
1429
|
+
0, () => DescribeAcmeAccountRequest$, () => DescribeAcmeAccountResponse$
|
|
1430
|
+
];
|
|
1431
|
+
var DescribeAcmeDomainValidation$ = [9, n0, _DADVe,
|
|
1432
|
+
0, () => DescribeAcmeDomainValidationRequest$, () => DescribeAcmeDomainValidationResponse$
|
|
1433
|
+
];
|
|
1434
|
+
var DescribeAcmeEndpoint$ = [9, n0, _DAEe,
|
|
1435
|
+
0, () => DescribeAcmeEndpointRequest$, () => DescribeAcmeEndpointResponse$
|
|
1436
|
+
];
|
|
1437
|
+
var DescribeAcmeExternalAccountBinding$ = [9, n0, _DAEABe,
|
|
1438
|
+
0, () => DescribeAcmeExternalAccountBindingRequest$, () => DescribeAcmeExternalAccountBindingResponse$
|
|
1439
|
+
];
|
|
985
1440
|
var DescribeCertificate$ = [9, n0, _DCes,
|
|
986
1441
|
0, () => DescribeCertificateRequest$, () => DescribeCertificateResponse$
|
|
987
1442
|
];
|
|
@@ -991,18 +1446,36 @@ var ExportCertificate$ = [9, n0, _EC,
|
|
|
991
1446
|
var GetAccountConfiguration$ = [9, n0, _GAC,
|
|
992
1447
|
0, () => __Unit, () => GetAccountConfigurationResponse$
|
|
993
1448
|
];
|
|
1449
|
+
var GetAcmeExternalAccountBindingCredentials$ = [9, n0, _GAEABC,
|
|
1450
|
+
0, () => GetAcmeExternalAccountBindingCredentialsRequest$, () => GetAcmeExternalAccountBindingCredentialsResponse$
|
|
1451
|
+
];
|
|
994
1452
|
var GetCertificate$ = [9, n0, _GC,
|
|
995
1453
|
0, () => GetCertificateRequest$, () => GetCertificateResponse$
|
|
996
1454
|
];
|
|
997
1455
|
var ImportCertificate$ = [9, n0, _IC,
|
|
998
1456
|
0, () => ImportCertificateRequest$, () => ImportCertificateResponse$
|
|
999
1457
|
];
|
|
1458
|
+
var ListAcmeAccounts$ = [9, n0, _LAA,
|
|
1459
|
+
0, () => ListAcmeAccountsRequest$, () => ListAcmeAccountsResponse$
|
|
1460
|
+
];
|
|
1461
|
+
var ListAcmeDomainValidations$ = [9, n0, _LADV,
|
|
1462
|
+
0, () => ListAcmeDomainValidationsRequest$, () => ListAcmeDomainValidationsResponse$
|
|
1463
|
+
];
|
|
1464
|
+
var ListAcmeEndpoints$ = [9, n0, _LAE,
|
|
1465
|
+
0, () => ListAcmeEndpointsRequest$, () => ListAcmeEndpointsResponse$
|
|
1466
|
+
];
|
|
1467
|
+
var ListAcmeExternalAccountBindings$ = [9, n0, _LAEAB,
|
|
1468
|
+
0, () => ListAcmeExternalAccountBindingsRequest$, () => ListAcmeExternalAccountBindingsResponse$
|
|
1469
|
+
];
|
|
1000
1470
|
var ListCertificates$ = [9, n0, _LC,
|
|
1001
1471
|
0, () => ListCertificatesRequest$, () => ListCertificatesResponse$
|
|
1002
1472
|
];
|
|
1003
1473
|
var ListTagsForCertificate$ = [9, n0, _LTFC,
|
|
1004
1474
|
0, () => ListTagsForCertificateRequest$, () => ListTagsForCertificateResponse$
|
|
1005
1475
|
];
|
|
1476
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1477
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1478
|
+
];
|
|
1006
1479
|
var PutAccountConfiguration$ = [9, n0, _PAC,
|
|
1007
1480
|
0, () => PutAccountConfigurationRequest$, () => __Unit
|
|
1008
1481
|
];
|
|
@@ -1018,12 +1491,30 @@ var RequestCertificate$ = [9, n0, _RCe,
|
|
|
1018
1491
|
var ResendValidationEmail$ = [9, n0, _RVE,
|
|
1019
1492
|
0, () => ResendValidationEmailRequest$, () => __Unit
|
|
1020
1493
|
];
|
|
1494
|
+
var RevokeAcmeAccount$ = [9, n0, _RAA,
|
|
1495
|
+
2, () => RevokeAcmeAccountRequest$, () => __Unit
|
|
1496
|
+
];
|
|
1497
|
+
var RevokeAcmeExternalAccountBinding$ = [9, n0, _RAEAB,
|
|
1498
|
+
2, () => RevokeAcmeExternalAccountBindingRequest$, () => __Unit
|
|
1499
|
+
];
|
|
1021
1500
|
var RevokeCertificate$ = [9, n0, _RCev,
|
|
1022
1501
|
0, () => RevokeCertificateRequest$, () => RevokeCertificateResponse$
|
|
1023
1502
|
];
|
|
1024
1503
|
var SearchCertificates$ = [9, n0, _SC,
|
|
1025
1504
|
0, () => SearchCertificatesRequest$, () => SearchCertificatesResponse$
|
|
1026
1505
|
];
|
|
1506
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1507
|
+
0, () => TagResourceRequest$, () => __Unit
|
|
1508
|
+
];
|
|
1509
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1510
|
+
0, () => UntagResourceRequest$, () => __Unit
|
|
1511
|
+
];
|
|
1512
|
+
var UpdateAcmeDomainValidation$ = [9, n0, _UADV,
|
|
1513
|
+
2, () => UpdateAcmeDomainValidationRequest$, () => __Unit
|
|
1514
|
+
];
|
|
1515
|
+
var UpdateAcmeEndpoint$ = [9, n0, _UAE,
|
|
1516
|
+
2, () => UpdateAcmeEndpointRequest$, () => __Unit
|
|
1517
|
+
];
|
|
1027
1518
|
var UpdateCertificateOptions$ = [9, n0, _UCO,
|
|
1028
1519
|
0, () => UpdateCertificateOptionsRequest$, () => __Unit
|
|
1029
1520
|
];
|
|
@@ -1053,6 +1544,7 @@ const getRuntimeConfig$1 = (config) => {
|
|
|
1053
1544
|
serviceTarget: "CertificateManager",
|
|
1054
1545
|
},
|
|
1055
1546
|
serviceId: config?.serviceId ?? "ACM",
|
|
1547
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1056
1548
|
urlParser: config?.urlParser ?? parseUrl,
|
|
1057
1549
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1058
1550
|
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
@@ -1086,7 +1578,6 @@ const getRuntimeConfig = (config) => {
|
|
|
1086
1578
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1087
1579
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1088
1580
|
}, config),
|
|
1089
|
-
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1090
1581
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1091
1582
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1092
1583
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -1174,214 +1665,306 @@ class ACMClient extends Client {
|
|
|
1174
1665
|
}
|
|
1175
1666
|
}
|
|
1176
1667
|
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1668
|
+
const command = makeBuilder(commonParams, "CertificateManager", "ACMClient", getEndpointPlugin);
|
|
1669
|
+
const _ep0 = {
|
|
1670
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
1671
|
+
};
|
|
1672
|
+
const _ep1 = {
|
|
1673
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
1674
|
+
};
|
|
1675
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
1676
|
+
|
|
1677
|
+
class AddTagsToCertificateCommand extends command(_ep0, _mw0, "AddTagsToCertificate", AddTagsToCertificate$) {
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
class CreateAcmeDomainValidationCommand extends command(_ep1, _mw0, "CreateAcmeDomainValidation", CreateAcmeDomainValidation$) {
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
class CreateAcmeEndpointCommand extends command(_ep1, _mw0, "CreateAcmeEndpoint", CreateAcmeEndpoint$) {
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
class CreateAcmeExternalAccountBindingCommand extends command(_ep1, _mw0, "CreateAcmeExternalAccountBinding", CreateAcmeExternalAccountBinding$) {
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
class DeleteAcmeDomainValidationCommand extends command(_ep1, _mw0, "DeleteAcmeDomainValidation", DeleteAcmeDomainValidation$) {
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
class DeleteAcmeEndpointCommand extends command(_ep1, _mw0, "DeleteAcmeEndpoint", DeleteAcmeEndpoint$) {
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
class DeleteAcmeExternalAccountBindingCommand extends command(_ep1, _mw0, "DeleteAcmeExternalAccountBinding", DeleteAcmeExternalAccountBinding$) {
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
class DeleteCertificateCommand extends command(_ep0, _mw0, "DeleteCertificate", DeleteCertificate$) {
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
class DescribeAcmeAccountCommand extends command(_ep1, _mw0, "DescribeAcmeAccount", DescribeAcmeAccount$) {
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
class DescribeAcmeDomainValidationCommand extends command(_ep1, _mw0, "DescribeAcmeDomainValidation", DescribeAcmeDomainValidation$) {
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
class DescribeAcmeEndpointCommand extends command(_ep1, _mw0, "DescribeAcmeEndpoint", DescribeAcmeEndpoint$) {
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
class DescribeAcmeExternalAccountBindingCommand extends command(_ep1, _mw0, "DescribeAcmeExternalAccountBinding", DescribeAcmeExternalAccountBinding$) {
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
class DescribeCertificateCommand extends command(_ep0, _mw0, "DescribeCertificate", DescribeCertificate$) {
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
class ExportCertificateCommand extends command(_ep0, _mw0, "ExportCertificate", ExportCertificate$) {
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
class GetAccountConfigurationCommand extends command(_ep0, _mw0, "GetAccountConfiguration", GetAccountConfiguration$) {
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
class GetAcmeExternalAccountBindingCredentialsCommand extends command(_ep1, _mw0, "GetAcmeExternalAccountBindingCredentials", GetAcmeExternalAccountBindingCredentials$) {
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
class GetCertificateCommand extends command(_ep0, _mw0, "GetCertificate", GetCertificate$) {
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
class ImportCertificateCommand extends command(_ep0, _mw0, "ImportCertificate", ImportCertificate$) {
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
class ListAcmeAccountsCommand extends command(_ep1, _mw0, "ListAcmeAccounts", ListAcmeAccounts$) {
|
|
1187
1732
|
}
|
|
1188
1733
|
|
|
1189
|
-
class
|
|
1190
|
-
.classBuilder()
|
|
1191
|
-
.ep(commonParams)
|
|
1192
|
-
.m(function (Command, cs, config, o) {
|
|
1193
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1194
|
-
})
|
|
1195
|
-
.s("CertificateManager", "DeleteCertificate", {})
|
|
1196
|
-
.n("ACMClient", "DeleteCertificateCommand")
|
|
1197
|
-
.sc(DeleteCertificate$)
|
|
1198
|
-
.build() {
|
|
1734
|
+
class ListAcmeDomainValidationsCommand extends command(_ep1, _mw0, "ListAcmeDomainValidations", ListAcmeDomainValidations$) {
|
|
1199
1735
|
}
|
|
1200
1736
|
|
|
1201
|
-
class
|
|
1202
|
-
.classBuilder()
|
|
1203
|
-
.ep(commonParams)
|
|
1204
|
-
.m(function (Command, cs, config, o) {
|
|
1205
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1206
|
-
})
|
|
1207
|
-
.s("CertificateManager", "DescribeCertificate", {})
|
|
1208
|
-
.n("ACMClient", "DescribeCertificateCommand")
|
|
1209
|
-
.sc(DescribeCertificate$)
|
|
1210
|
-
.build() {
|
|
1737
|
+
class ListAcmeEndpointsCommand extends command(_ep1, _mw0, "ListAcmeEndpoints", ListAcmeEndpoints$) {
|
|
1211
1738
|
}
|
|
1212
1739
|
|
|
1213
|
-
class
|
|
1214
|
-
.classBuilder()
|
|
1215
|
-
.ep(commonParams)
|
|
1216
|
-
.m(function (Command, cs, config, o) {
|
|
1217
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1218
|
-
})
|
|
1219
|
-
.s("CertificateManager", "ExportCertificate", {})
|
|
1220
|
-
.n("ACMClient", "ExportCertificateCommand")
|
|
1221
|
-
.sc(ExportCertificate$)
|
|
1222
|
-
.build() {
|
|
1740
|
+
class ListAcmeExternalAccountBindingsCommand extends command(_ep1, _mw0, "ListAcmeExternalAccountBindings", ListAcmeExternalAccountBindings$) {
|
|
1223
1741
|
}
|
|
1224
1742
|
|
|
1225
|
-
class
|
|
1226
|
-
.classBuilder()
|
|
1227
|
-
.ep(commonParams)
|
|
1228
|
-
.m(function (Command, cs, config, o) {
|
|
1229
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1230
|
-
})
|
|
1231
|
-
.s("CertificateManager", "GetAccountConfiguration", {})
|
|
1232
|
-
.n("ACMClient", "GetAccountConfigurationCommand")
|
|
1233
|
-
.sc(GetAccountConfiguration$)
|
|
1234
|
-
.build() {
|
|
1743
|
+
class ListCertificatesCommand extends command(_ep0, _mw0, "ListCertificates", ListCertificates$) {
|
|
1235
1744
|
}
|
|
1236
1745
|
|
|
1237
|
-
class
|
|
1238
|
-
.classBuilder()
|
|
1239
|
-
.ep(commonParams)
|
|
1240
|
-
.m(function (Command, cs, config, o) {
|
|
1241
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1242
|
-
})
|
|
1243
|
-
.s("CertificateManager", "GetCertificate", {})
|
|
1244
|
-
.n("ACMClient", "GetCertificateCommand")
|
|
1245
|
-
.sc(GetCertificate$)
|
|
1246
|
-
.build() {
|
|
1746
|
+
class ListTagsForCertificateCommand extends command(_ep0, _mw0, "ListTagsForCertificate", ListTagsForCertificate$) {
|
|
1247
1747
|
}
|
|
1248
1748
|
|
|
1249
|
-
class
|
|
1250
|
-
.classBuilder()
|
|
1251
|
-
.ep(commonParams)
|
|
1252
|
-
.m(function (Command, cs, config, o) {
|
|
1253
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1254
|
-
})
|
|
1255
|
-
.s("CertificateManager", "ImportCertificate", {})
|
|
1256
|
-
.n("ACMClient", "ImportCertificateCommand")
|
|
1257
|
-
.sc(ImportCertificate$)
|
|
1258
|
-
.build() {
|
|
1749
|
+
class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
|
|
1259
1750
|
}
|
|
1260
1751
|
|
|
1261
|
-
class
|
|
1262
|
-
.classBuilder()
|
|
1263
|
-
.ep(commonParams)
|
|
1264
|
-
.m(function (Command, cs, config, o) {
|
|
1265
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1266
|
-
})
|
|
1267
|
-
.s("CertificateManager", "ListCertificates", {})
|
|
1268
|
-
.n("ACMClient", "ListCertificatesCommand")
|
|
1269
|
-
.sc(ListCertificates$)
|
|
1270
|
-
.build() {
|
|
1752
|
+
class PutAccountConfigurationCommand extends command(_ep0, _mw0, "PutAccountConfiguration", PutAccountConfiguration$) {
|
|
1271
1753
|
}
|
|
1272
1754
|
|
|
1273
|
-
class
|
|
1274
|
-
.classBuilder()
|
|
1275
|
-
.ep(commonParams)
|
|
1276
|
-
.m(function (Command, cs, config, o) {
|
|
1277
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1278
|
-
})
|
|
1279
|
-
.s("CertificateManager", "ListTagsForCertificate", {})
|
|
1280
|
-
.n("ACMClient", "ListTagsForCertificateCommand")
|
|
1281
|
-
.sc(ListTagsForCertificate$)
|
|
1282
|
-
.build() {
|
|
1755
|
+
class RemoveTagsFromCertificateCommand extends command(_ep0, _mw0, "RemoveTagsFromCertificate", RemoveTagsFromCertificate$) {
|
|
1283
1756
|
}
|
|
1284
1757
|
|
|
1285
|
-
class
|
|
1286
|
-
.classBuilder()
|
|
1287
|
-
.ep(commonParams)
|
|
1288
|
-
.m(function (Command, cs, config, o) {
|
|
1289
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1290
|
-
})
|
|
1291
|
-
.s("CertificateManager", "PutAccountConfiguration", {})
|
|
1292
|
-
.n("ACMClient", "PutAccountConfigurationCommand")
|
|
1293
|
-
.sc(PutAccountConfiguration$)
|
|
1294
|
-
.build() {
|
|
1758
|
+
class RenewCertificateCommand extends command(_ep0, _mw0, "RenewCertificate", RenewCertificate$) {
|
|
1295
1759
|
}
|
|
1296
1760
|
|
|
1297
|
-
class
|
|
1298
|
-
.classBuilder()
|
|
1299
|
-
.ep(commonParams)
|
|
1300
|
-
.m(function (Command, cs, config, o) {
|
|
1301
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1302
|
-
})
|
|
1303
|
-
.s("CertificateManager", "RemoveTagsFromCertificate", {})
|
|
1304
|
-
.n("ACMClient", "RemoveTagsFromCertificateCommand")
|
|
1305
|
-
.sc(RemoveTagsFromCertificate$)
|
|
1306
|
-
.build() {
|
|
1761
|
+
class RequestCertificateCommand extends command(_ep0, _mw0, "RequestCertificate", RequestCertificate$) {
|
|
1307
1762
|
}
|
|
1308
1763
|
|
|
1309
|
-
class
|
|
1310
|
-
.classBuilder()
|
|
1311
|
-
.ep(commonParams)
|
|
1312
|
-
.m(function (Command, cs, config, o) {
|
|
1313
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1314
|
-
})
|
|
1315
|
-
.s("CertificateManager", "RenewCertificate", {})
|
|
1316
|
-
.n("ACMClient", "RenewCertificateCommand")
|
|
1317
|
-
.sc(RenewCertificate$)
|
|
1318
|
-
.build() {
|
|
1764
|
+
class ResendValidationEmailCommand extends command(_ep0, _mw0, "ResendValidationEmail", ResendValidationEmail$) {
|
|
1319
1765
|
}
|
|
1320
1766
|
|
|
1321
|
-
class
|
|
1322
|
-
.classBuilder()
|
|
1323
|
-
.ep(commonParams)
|
|
1324
|
-
.m(function (Command, cs, config, o) {
|
|
1325
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1326
|
-
})
|
|
1327
|
-
.s("CertificateManager", "RequestCertificate", {})
|
|
1328
|
-
.n("ACMClient", "RequestCertificateCommand")
|
|
1329
|
-
.sc(RequestCertificate$)
|
|
1330
|
-
.build() {
|
|
1767
|
+
class RevokeAcmeAccountCommand extends command(_ep1, _mw0, "RevokeAcmeAccount", RevokeAcmeAccount$) {
|
|
1331
1768
|
}
|
|
1332
1769
|
|
|
1333
|
-
class
|
|
1334
|
-
.classBuilder()
|
|
1335
|
-
.ep(commonParams)
|
|
1336
|
-
.m(function (Command, cs, config, o) {
|
|
1337
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1338
|
-
})
|
|
1339
|
-
.s("CertificateManager", "ResendValidationEmail", {})
|
|
1340
|
-
.n("ACMClient", "ResendValidationEmailCommand")
|
|
1341
|
-
.sc(ResendValidationEmail$)
|
|
1342
|
-
.build() {
|
|
1770
|
+
class RevokeAcmeExternalAccountBindingCommand extends command(_ep1, _mw0, "RevokeAcmeExternalAccountBinding", RevokeAcmeExternalAccountBinding$) {
|
|
1343
1771
|
}
|
|
1344
1772
|
|
|
1345
|
-
class RevokeCertificateCommand extends
|
|
1346
|
-
.classBuilder()
|
|
1347
|
-
.ep(commonParams)
|
|
1348
|
-
.m(function (Command, cs, config, o) {
|
|
1349
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1350
|
-
})
|
|
1351
|
-
.s("CertificateManager", "RevokeCertificate", {})
|
|
1352
|
-
.n("ACMClient", "RevokeCertificateCommand")
|
|
1353
|
-
.sc(RevokeCertificate$)
|
|
1354
|
-
.build() {
|
|
1773
|
+
class RevokeCertificateCommand extends command(_ep0, _mw0, "RevokeCertificate", RevokeCertificate$) {
|
|
1355
1774
|
}
|
|
1356
1775
|
|
|
1357
|
-
class SearchCertificatesCommand extends
|
|
1358
|
-
.classBuilder()
|
|
1359
|
-
.ep(commonParams)
|
|
1360
|
-
.m(function (Command, cs, config, o) {
|
|
1361
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1362
|
-
})
|
|
1363
|
-
.s("CertificateManager", "SearchCertificates", {})
|
|
1364
|
-
.n("ACMClient", "SearchCertificatesCommand")
|
|
1365
|
-
.sc(SearchCertificates$)
|
|
1366
|
-
.build() {
|
|
1776
|
+
class SearchCertificatesCommand extends command(_ep0, _mw0, "SearchCertificates", SearchCertificates$) {
|
|
1367
1777
|
}
|
|
1368
1778
|
|
|
1369
|
-
class
|
|
1370
|
-
.classBuilder()
|
|
1371
|
-
.ep(commonParams)
|
|
1372
|
-
.m(function (Command, cs, config, o) {
|
|
1373
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1374
|
-
})
|
|
1375
|
-
.s("CertificateManager", "UpdateCertificateOptions", {})
|
|
1376
|
-
.n("ACMClient", "UpdateCertificateOptionsCommand")
|
|
1377
|
-
.sc(UpdateCertificateOptions$)
|
|
1378
|
-
.build() {
|
|
1779
|
+
class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
|
|
1379
1780
|
}
|
|
1380
1781
|
|
|
1782
|
+
class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
class UpdateAcmeDomainValidationCommand extends command(_ep1, _mw0, "UpdateAcmeDomainValidation", UpdateAcmeDomainValidation$) {
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
class UpdateAcmeEndpointCommand extends command(_ep1, _mw0, "UpdateAcmeEndpoint", UpdateAcmeEndpoint$) {
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
class UpdateCertificateOptionsCommand extends command(_ep0, _mw0, "UpdateCertificateOptions", UpdateCertificateOptions$) {
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
const paginateListAcmeAccounts = createPaginator(ACMClient, ListAcmeAccountsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1795
|
+
|
|
1796
|
+
const paginateListAcmeDomainValidations = createPaginator(ACMClient, ListAcmeDomainValidationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1797
|
+
|
|
1798
|
+
const paginateListAcmeEndpoints = createPaginator(ACMClient, ListAcmeEndpointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1799
|
+
|
|
1800
|
+
const paginateListAcmeExternalAccountBindings = createPaginator(ACMClient, ListAcmeExternalAccountBindingsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1801
|
+
|
|
1381
1802
|
const paginateListCertificates = createPaginator(ACMClient, ListCertificatesCommand, "NextToken", "NextToken", "MaxItems");
|
|
1382
1803
|
|
|
1383
1804
|
const paginateSearchCertificates = createPaginator(ACMClient, SearchCertificatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1384
1805
|
|
|
1806
|
+
const checkState$4 = async (client, input) => {
|
|
1807
|
+
let reason;
|
|
1808
|
+
try {
|
|
1809
|
+
let result = await client.send(new DescribeAcmeDomainValidationCommand(input));
|
|
1810
|
+
reason = result;
|
|
1811
|
+
try {
|
|
1812
|
+
const returnComparator = () => {
|
|
1813
|
+
return result.AcmeDomainValidation.Status;
|
|
1814
|
+
};
|
|
1815
|
+
if (returnComparator() === "DELETING") {
|
|
1816
|
+
return { state: WaiterState.RETRY, reason };
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
catch (e) { }
|
|
1820
|
+
}
|
|
1821
|
+
catch (exception) {
|
|
1822
|
+
reason = exception;
|
|
1823
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
1824
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
return { state: WaiterState.RETRY, reason };
|
|
1828
|
+
};
|
|
1829
|
+
const waitForAcmeDomainValidationDeleted = async (params, input) => {
|
|
1830
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1831
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1832
|
+
};
|
|
1833
|
+
const waitUntilAcmeDomainValidationDeleted = async (params, input) => {
|
|
1834
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1835
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1836
|
+
return checkExceptions(result);
|
|
1837
|
+
};
|
|
1838
|
+
|
|
1839
|
+
const checkState$3 = async (client, input) => {
|
|
1840
|
+
let reason;
|
|
1841
|
+
try {
|
|
1842
|
+
let result = await client.send(new DescribeAcmeDomainValidationCommand(input));
|
|
1843
|
+
reason = result;
|
|
1844
|
+
try {
|
|
1845
|
+
const returnComparator = () => {
|
|
1846
|
+
return result.AcmeDomainValidation.Status;
|
|
1847
|
+
};
|
|
1848
|
+
if (returnComparator() === "VALID") {
|
|
1849
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1850
|
+
}
|
|
1851
|
+
}
|
|
1852
|
+
catch (e) { }
|
|
1853
|
+
try {
|
|
1854
|
+
const returnComparator = () => {
|
|
1855
|
+
return result.AcmeDomainValidation.Status;
|
|
1856
|
+
};
|
|
1857
|
+
if (returnComparator() === "INVALID") {
|
|
1858
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
catch (e) { }
|
|
1862
|
+
try {
|
|
1863
|
+
const returnComparator = () => {
|
|
1864
|
+
return result.AcmeDomainValidation.Status;
|
|
1865
|
+
};
|
|
1866
|
+
if (returnComparator() === "VALIDATING") {
|
|
1867
|
+
return { state: WaiterState.RETRY, reason };
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
catch (e) { }
|
|
1871
|
+
}
|
|
1872
|
+
catch (exception) {
|
|
1873
|
+
reason = exception;
|
|
1874
|
+
}
|
|
1875
|
+
return { state: WaiterState.RETRY, reason };
|
|
1876
|
+
};
|
|
1877
|
+
const waitForAcmeDomainValidationValidated = async (params, input) => {
|
|
1878
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1879
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1880
|
+
};
|
|
1881
|
+
const waitUntilAcmeDomainValidationValidated = async (params, input) => {
|
|
1882
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1883
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1884
|
+
return checkExceptions(result);
|
|
1885
|
+
};
|
|
1886
|
+
|
|
1887
|
+
const checkState$2 = async (client, input) => {
|
|
1888
|
+
let reason;
|
|
1889
|
+
try {
|
|
1890
|
+
let result = await client.send(new DescribeAcmeEndpointCommand(input));
|
|
1891
|
+
reason = result;
|
|
1892
|
+
try {
|
|
1893
|
+
const returnComparator = () => {
|
|
1894
|
+
return result.AcmeEndpoint.Status;
|
|
1895
|
+
};
|
|
1896
|
+
if (returnComparator() === "ACTIVE") {
|
|
1897
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1898
|
+
}
|
|
1899
|
+
}
|
|
1900
|
+
catch (e) { }
|
|
1901
|
+
try {
|
|
1902
|
+
const returnComparator = () => {
|
|
1903
|
+
return result.AcmeEndpoint.Status;
|
|
1904
|
+
};
|
|
1905
|
+
if (returnComparator() === "FAILED") {
|
|
1906
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1907
|
+
}
|
|
1908
|
+
}
|
|
1909
|
+
catch (e) { }
|
|
1910
|
+
try {
|
|
1911
|
+
const returnComparator = () => {
|
|
1912
|
+
return result.AcmeEndpoint.Status;
|
|
1913
|
+
};
|
|
1914
|
+
if (returnComparator() === "CREATING") {
|
|
1915
|
+
return { state: WaiterState.RETRY, reason };
|
|
1916
|
+
}
|
|
1917
|
+
}
|
|
1918
|
+
catch (e) { }
|
|
1919
|
+
}
|
|
1920
|
+
catch (exception) {
|
|
1921
|
+
reason = exception;
|
|
1922
|
+
}
|
|
1923
|
+
return { state: WaiterState.RETRY, reason };
|
|
1924
|
+
};
|
|
1925
|
+
const waitForAcmeEndpointActive = async (params, input) => {
|
|
1926
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1927
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
1928
|
+
};
|
|
1929
|
+
const waitUntilAcmeEndpointActive = async (params, input) => {
|
|
1930
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1931
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
1932
|
+
return checkExceptions(result);
|
|
1933
|
+
};
|
|
1934
|
+
|
|
1935
|
+
const checkState$1 = async (client, input) => {
|
|
1936
|
+
let reason;
|
|
1937
|
+
try {
|
|
1938
|
+
let result = await client.send(new DescribeAcmeEndpointCommand(input));
|
|
1939
|
+
reason = result;
|
|
1940
|
+
try {
|
|
1941
|
+
const returnComparator = () => {
|
|
1942
|
+
return result.AcmeEndpoint.Status;
|
|
1943
|
+
};
|
|
1944
|
+
if (returnComparator() === "DELETING") {
|
|
1945
|
+
return { state: WaiterState.RETRY, reason };
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1948
|
+
catch (e) { }
|
|
1949
|
+
}
|
|
1950
|
+
catch (exception) {
|
|
1951
|
+
reason = exception;
|
|
1952
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
1953
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1954
|
+
}
|
|
1955
|
+
}
|
|
1956
|
+
return { state: WaiterState.RETRY, reason };
|
|
1957
|
+
};
|
|
1958
|
+
const waitForAcmeEndpointDeleted = async (params, input) => {
|
|
1959
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1960
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1961
|
+
};
|
|
1962
|
+
const waitUntilAcmeEndpointDeleted = async (params, input) => {
|
|
1963
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1964
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1965
|
+
return checkExceptions(result);
|
|
1966
|
+
};
|
|
1967
|
+
|
|
1385
1968
|
const checkState = async (client, input) => {
|
|
1386
1969
|
let reason;
|
|
1387
1970
|
try {
|
|
@@ -1449,34 +2032,69 @@ const waitUntilCertificateValidated = async (params, input) => {
|
|
|
1449
2032
|
|
|
1450
2033
|
const commands = {
|
|
1451
2034
|
AddTagsToCertificateCommand,
|
|
2035
|
+
CreateAcmeDomainValidationCommand,
|
|
2036
|
+
CreateAcmeEndpointCommand,
|
|
2037
|
+
CreateAcmeExternalAccountBindingCommand,
|
|
2038
|
+
DeleteAcmeDomainValidationCommand,
|
|
2039
|
+
DeleteAcmeEndpointCommand,
|
|
2040
|
+
DeleteAcmeExternalAccountBindingCommand,
|
|
1452
2041
|
DeleteCertificateCommand,
|
|
2042
|
+
DescribeAcmeAccountCommand,
|
|
2043
|
+
DescribeAcmeDomainValidationCommand,
|
|
2044
|
+
DescribeAcmeEndpointCommand,
|
|
2045
|
+
DescribeAcmeExternalAccountBindingCommand,
|
|
1453
2046
|
DescribeCertificateCommand,
|
|
1454
2047
|
ExportCertificateCommand,
|
|
1455
2048
|
GetAccountConfigurationCommand,
|
|
2049
|
+
GetAcmeExternalAccountBindingCredentialsCommand,
|
|
1456
2050
|
GetCertificateCommand,
|
|
1457
2051
|
ImportCertificateCommand,
|
|
2052
|
+
ListAcmeAccountsCommand,
|
|
2053
|
+
ListAcmeDomainValidationsCommand,
|
|
2054
|
+
ListAcmeEndpointsCommand,
|
|
2055
|
+
ListAcmeExternalAccountBindingsCommand,
|
|
1458
2056
|
ListCertificatesCommand,
|
|
1459
2057
|
ListTagsForCertificateCommand,
|
|
2058
|
+
ListTagsForResourceCommand,
|
|
1460
2059
|
PutAccountConfigurationCommand,
|
|
1461
2060
|
RemoveTagsFromCertificateCommand,
|
|
1462
2061
|
RenewCertificateCommand,
|
|
1463
2062
|
RequestCertificateCommand,
|
|
1464
2063
|
ResendValidationEmailCommand,
|
|
2064
|
+
RevokeAcmeAccountCommand,
|
|
2065
|
+
RevokeAcmeExternalAccountBindingCommand,
|
|
1465
2066
|
RevokeCertificateCommand,
|
|
1466
2067
|
SearchCertificatesCommand,
|
|
2068
|
+
TagResourceCommand,
|
|
2069
|
+
UntagResourceCommand,
|
|
2070
|
+
UpdateAcmeDomainValidationCommand,
|
|
2071
|
+
UpdateAcmeEndpointCommand,
|
|
1467
2072
|
UpdateCertificateOptionsCommand,
|
|
1468
2073
|
};
|
|
1469
2074
|
const paginators = {
|
|
2075
|
+
paginateListAcmeAccounts,
|
|
2076
|
+
paginateListAcmeDomainValidations,
|
|
2077
|
+
paginateListAcmeEndpoints,
|
|
2078
|
+
paginateListAcmeExternalAccountBindings,
|
|
1470
2079
|
paginateListCertificates,
|
|
1471
2080
|
paginateSearchCertificates,
|
|
1472
2081
|
};
|
|
1473
2082
|
const waiters = {
|
|
2083
|
+
waitUntilAcmeDomainValidationValidated,
|
|
2084
|
+
waitUntilAcmeDomainValidationDeleted,
|
|
2085
|
+
waitUntilAcmeEndpointActive,
|
|
2086
|
+
waitUntilAcmeEndpointDeleted,
|
|
1474
2087
|
waitUntilCertificateValidated,
|
|
1475
2088
|
};
|
|
1476
2089
|
class ACM extends ACMClient {
|
|
1477
2090
|
}
|
|
1478
2091
|
createAggregatedClient(commands, ACM, { paginators, waiters });
|
|
1479
2092
|
|
|
2093
|
+
const CertificateKeyPairOrigin = {
|
|
2094
|
+
ACME: "ACME",
|
|
2095
|
+
AWS_MANAGED: "AWS_MANAGED",
|
|
2096
|
+
CUSTOMER_PROVIDED: "CUSTOMER_PROVIDED",
|
|
2097
|
+
};
|
|
1480
2098
|
const CertificateExport = {
|
|
1481
2099
|
DISABLED: "DISABLED",
|
|
1482
2100
|
ENABLED: "ENABLED",
|
|
@@ -1513,9 +2131,56 @@ const ValidationMethod = {
|
|
|
1513
2131
|
EMAIL: "EMAIL",
|
|
1514
2132
|
HTTP: "HTTP",
|
|
1515
2133
|
};
|
|
2134
|
+
const AcmeAccountStatus = {
|
|
2135
|
+
DEACTIVATED: "DEACTIVATED",
|
|
2136
|
+
REVOKED: "REVOKED",
|
|
2137
|
+
VALID: "VALID",
|
|
2138
|
+
};
|
|
2139
|
+
const AcmeAuthorizationBehavior = {
|
|
2140
|
+
PRE_APPROVED: "PRE_APPROVED",
|
|
2141
|
+
};
|
|
2142
|
+
const AcmeContact = {
|
|
2143
|
+
NOT_REQUIRED: "NOT_REQUIRED",
|
|
2144
|
+
REQUIRED: "REQUIRED",
|
|
2145
|
+
};
|
|
2146
|
+
const AcmeDomainValidationFailureReason = {
|
|
2147
|
+
ACCESS_DENIED: "ACCESS_DENIED",
|
|
2148
|
+
DOMAIN_MISMATCH: "DOMAIN_MISMATCH",
|
|
2149
|
+
DOMAIN_NOT_ALLOWED: "DOMAIN_NOT_ALLOWED",
|
|
2150
|
+
ENDPOINT_NOT_ACTIVE: "ENDPOINT_NOT_ACTIVE",
|
|
2151
|
+
HOSTED_ZONE_NOT_FOUND: "HOSTED_ZONE_NOT_FOUND",
|
|
2152
|
+
INTERNAL_FAILURE: "INTERNAL_FAILURE",
|
|
2153
|
+
INVALID_CHANGE_BATCH: "INVALID_CHANGE_BATCH",
|
|
2154
|
+
INVALID_PUBLIC_DOMAIN: "INVALID_PUBLIC_DOMAIN",
|
|
2155
|
+
TIMED_OUT: "TIMED_OUT",
|
|
2156
|
+
};
|
|
2157
|
+
const DomainScopeOption = {
|
|
2158
|
+
DISABLED: "DISABLED",
|
|
2159
|
+
ENABLED: "ENABLED",
|
|
2160
|
+
};
|
|
1516
2161
|
const RecordType = {
|
|
1517
2162
|
CNAME: "CNAME",
|
|
1518
2163
|
};
|
|
2164
|
+
const PrevalidationType = {
|
|
2165
|
+
DNS_PREVALIDATION: "DNS_PREVALIDATION",
|
|
2166
|
+
};
|
|
2167
|
+
const AcmeDomainValidationStatus = {
|
|
2168
|
+
DELETING: "DELETING",
|
|
2169
|
+
INVALID: "INVALID",
|
|
2170
|
+
VALID: "VALID",
|
|
2171
|
+
VALIDATING: "VALIDATING",
|
|
2172
|
+
};
|
|
2173
|
+
const PublicKeyAlgorithm = {
|
|
2174
|
+
EC_PRIME256_V1: "EC_prime256v1",
|
|
2175
|
+
EC_SECP384_R1: "EC_secp384r1",
|
|
2176
|
+
RSA_2048: "RSA_2048",
|
|
2177
|
+
};
|
|
2178
|
+
const AcmeEndpointStatus = {
|
|
2179
|
+
ACTIVE: "ACTIVE",
|
|
2180
|
+
CREATING: "CREATING",
|
|
2181
|
+
DELETING: "DELETING",
|
|
2182
|
+
FAILED: "FAILED",
|
|
2183
|
+
};
|
|
1519
2184
|
const DomainStatus = {
|
|
1520
2185
|
FAILED: "FAILED",
|
|
1521
2186
|
PENDING_VALIDATION: "PENDING_VALIDATION",
|
|
@@ -1597,6 +2262,11 @@ const ComparisonOperator = {
|
|
|
1597
2262
|
CONTAINS: "CONTAINS",
|
|
1598
2263
|
EQUALS: "EQUALS",
|
|
1599
2264
|
};
|
|
2265
|
+
const TimeType = {
|
|
2266
|
+
DAYS: "DAYS",
|
|
2267
|
+
HOURS: "HOURS",
|
|
2268
|
+
MINUTES: "MINUTES",
|
|
2269
|
+
};
|
|
1600
2270
|
const SortBy = {
|
|
1601
2271
|
CREATED_AT: "CREATED_AT",
|
|
1602
2272
|
};
|
|
@@ -1605,7 +2275,10 @@ const SortOrder = {
|
|
|
1605
2275
|
DESCENDING: "DESCENDING",
|
|
1606
2276
|
};
|
|
1607
2277
|
const SearchCertificatesSortBy = {
|
|
2278
|
+
ACME_ACCOUNT_ID: "ACME_ACCOUNT_ID",
|
|
2279
|
+
ACME_ENDPOINT_ARN: "ACME_ENDPOINT_ARN",
|
|
1608
2280
|
CERTIFICATE_ARN: "CERTIFICATE_ARN",
|
|
2281
|
+
CERTIFICATE_KEY_PAIR_ORIGIN: "CERTIFICATE_KEY_PAIR_ORIGIN",
|
|
1609
2282
|
COMMON_NAME: "COMMON_NAME",
|
|
1610
2283
|
CREATED_AT: "CREATED_AT",
|
|
1611
2284
|
EXPORTED: "EXPORTED",
|
|
@@ -1637,13 +2310,29 @@ exports.AccessDeniedException = AccessDeniedException;
|
|
|
1637
2310
|
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1638
2311
|
exports.AcmCertificateMetadata$ = AcmCertificateMetadata$;
|
|
1639
2312
|
exports.AcmCertificateMetadataFilter$ = AcmCertificateMetadataFilter$;
|
|
2313
|
+
exports.AcmeAccount$ = AcmeAccount$;
|
|
2314
|
+
exports.AcmeAccountStatus = AcmeAccountStatus;
|
|
2315
|
+
exports.AcmeAccountSummary$ = AcmeAccountSummary$;
|
|
2316
|
+
exports.AcmeAuthorizationBehavior = AcmeAuthorizationBehavior;
|
|
2317
|
+
exports.AcmeContact = AcmeContact;
|
|
2318
|
+
exports.AcmeDomainValidation$ = AcmeDomainValidation$;
|
|
2319
|
+
exports.AcmeDomainValidationFailureReason = AcmeDomainValidationFailureReason;
|
|
2320
|
+
exports.AcmeDomainValidationStatus = AcmeDomainValidationStatus;
|
|
2321
|
+
exports.AcmeDomainValidationSummary$ = AcmeDomainValidationSummary$;
|
|
2322
|
+
exports.AcmeEndpoint$ = AcmeEndpoint$;
|
|
2323
|
+
exports.AcmeEndpointStatus = AcmeEndpointStatus;
|
|
2324
|
+
exports.AcmeEndpointSummary$ = AcmeEndpointSummary$;
|
|
2325
|
+
exports.AcmeExternalAccountBinding$ = AcmeExternalAccountBinding$;
|
|
2326
|
+
exports.AcmeExternalAccountBindingSummary$ = AcmeExternalAccountBindingSummary$;
|
|
1640
2327
|
exports.AddTagsToCertificate$ = AddTagsToCertificate$;
|
|
1641
2328
|
exports.AddTagsToCertificateCommand = AddTagsToCertificateCommand;
|
|
1642
2329
|
exports.AddTagsToCertificateRequest$ = AddTagsToCertificateRequest$;
|
|
2330
|
+
exports.CertificateAuthority$ = CertificateAuthority$;
|
|
1643
2331
|
exports.CertificateDetail$ = CertificateDetail$;
|
|
1644
2332
|
exports.CertificateExport = CertificateExport;
|
|
1645
2333
|
exports.CertificateFilter$ = CertificateFilter$;
|
|
1646
2334
|
exports.CertificateFilterStatement$ = CertificateFilterStatement$;
|
|
2335
|
+
exports.CertificateKeyPairOrigin = CertificateKeyPairOrigin;
|
|
1647
2336
|
exports.CertificateManagedBy = CertificateManagedBy;
|
|
1648
2337
|
exports.CertificateMetadata$ = CertificateMetadata$;
|
|
1649
2338
|
exports.CertificateOptions$ = CertificateOptions$;
|
|
@@ -1656,19 +2345,61 @@ exports.CommonNameFilter$ = CommonNameFilter$;
|
|
|
1656
2345
|
exports.ComparisonOperator = ComparisonOperator;
|
|
1657
2346
|
exports.ConflictException = ConflictException;
|
|
1658
2347
|
exports.ConflictException$ = ConflictException$;
|
|
2348
|
+
exports.CreateAcmeDomainValidation$ = CreateAcmeDomainValidation$;
|
|
2349
|
+
exports.CreateAcmeDomainValidationCommand = CreateAcmeDomainValidationCommand;
|
|
2350
|
+
exports.CreateAcmeDomainValidationRequest$ = CreateAcmeDomainValidationRequest$;
|
|
2351
|
+
exports.CreateAcmeDomainValidationResponse$ = CreateAcmeDomainValidationResponse$;
|
|
2352
|
+
exports.CreateAcmeEndpoint$ = CreateAcmeEndpoint$;
|
|
2353
|
+
exports.CreateAcmeEndpointCommand = CreateAcmeEndpointCommand;
|
|
2354
|
+
exports.CreateAcmeEndpointRequest$ = CreateAcmeEndpointRequest$;
|
|
2355
|
+
exports.CreateAcmeEndpointResponse$ = CreateAcmeEndpointResponse$;
|
|
2356
|
+
exports.CreateAcmeExternalAccountBinding$ = CreateAcmeExternalAccountBinding$;
|
|
2357
|
+
exports.CreateAcmeExternalAccountBindingCommand = CreateAcmeExternalAccountBindingCommand;
|
|
2358
|
+
exports.CreateAcmeExternalAccountBindingRequest$ = CreateAcmeExternalAccountBindingRequest$;
|
|
2359
|
+
exports.CreateAcmeExternalAccountBindingResponse$ = CreateAcmeExternalAccountBindingResponse$;
|
|
1659
2360
|
exports.CustomAttribute$ = CustomAttribute$;
|
|
2361
|
+
exports.DeleteAcmeDomainValidation$ = DeleteAcmeDomainValidation$;
|
|
2362
|
+
exports.DeleteAcmeDomainValidationCommand = DeleteAcmeDomainValidationCommand;
|
|
2363
|
+
exports.DeleteAcmeDomainValidationRequest$ = DeleteAcmeDomainValidationRequest$;
|
|
2364
|
+
exports.DeleteAcmeEndpoint$ = DeleteAcmeEndpoint$;
|
|
2365
|
+
exports.DeleteAcmeEndpointCommand = DeleteAcmeEndpointCommand;
|
|
2366
|
+
exports.DeleteAcmeEndpointRequest$ = DeleteAcmeEndpointRequest$;
|
|
2367
|
+
exports.DeleteAcmeExternalAccountBinding$ = DeleteAcmeExternalAccountBinding$;
|
|
2368
|
+
exports.DeleteAcmeExternalAccountBindingCommand = DeleteAcmeExternalAccountBindingCommand;
|
|
2369
|
+
exports.DeleteAcmeExternalAccountBindingRequest$ = DeleteAcmeExternalAccountBindingRequest$;
|
|
1660
2370
|
exports.DeleteCertificate$ = DeleteCertificate$;
|
|
1661
2371
|
exports.DeleteCertificateCommand = DeleteCertificateCommand;
|
|
1662
2372
|
exports.DeleteCertificateRequest$ = DeleteCertificateRequest$;
|
|
2373
|
+
exports.DescribeAcmeAccount$ = DescribeAcmeAccount$;
|
|
2374
|
+
exports.DescribeAcmeAccountCommand = DescribeAcmeAccountCommand;
|
|
2375
|
+
exports.DescribeAcmeAccountRequest$ = DescribeAcmeAccountRequest$;
|
|
2376
|
+
exports.DescribeAcmeAccountResponse$ = DescribeAcmeAccountResponse$;
|
|
2377
|
+
exports.DescribeAcmeDomainValidation$ = DescribeAcmeDomainValidation$;
|
|
2378
|
+
exports.DescribeAcmeDomainValidationCommand = DescribeAcmeDomainValidationCommand;
|
|
2379
|
+
exports.DescribeAcmeDomainValidationRequest$ = DescribeAcmeDomainValidationRequest$;
|
|
2380
|
+
exports.DescribeAcmeDomainValidationResponse$ = DescribeAcmeDomainValidationResponse$;
|
|
2381
|
+
exports.DescribeAcmeEndpoint$ = DescribeAcmeEndpoint$;
|
|
2382
|
+
exports.DescribeAcmeEndpointCommand = DescribeAcmeEndpointCommand;
|
|
2383
|
+
exports.DescribeAcmeEndpointRequest$ = DescribeAcmeEndpointRequest$;
|
|
2384
|
+
exports.DescribeAcmeEndpointResponse$ = DescribeAcmeEndpointResponse$;
|
|
2385
|
+
exports.DescribeAcmeExternalAccountBinding$ = DescribeAcmeExternalAccountBinding$;
|
|
2386
|
+
exports.DescribeAcmeExternalAccountBindingCommand = DescribeAcmeExternalAccountBindingCommand;
|
|
2387
|
+
exports.DescribeAcmeExternalAccountBindingRequest$ = DescribeAcmeExternalAccountBindingRequest$;
|
|
2388
|
+
exports.DescribeAcmeExternalAccountBindingResponse$ = DescribeAcmeExternalAccountBindingResponse$;
|
|
1663
2389
|
exports.DescribeCertificate$ = DescribeCertificate$;
|
|
1664
2390
|
exports.DescribeCertificateCommand = DescribeCertificateCommand;
|
|
1665
2391
|
exports.DescribeCertificateRequest$ = DescribeCertificateRequest$;
|
|
1666
2392
|
exports.DescribeCertificateResponse$ = DescribeCertificateResponse$;
|
|
1667
2393
|
exports.DistinguishedName$ = DistinguishedName$;
|
|
1668
2394
|
exports.DnsNameFilter$ = DnsNameFilter$;
|
|
2395
|
+
exports.DnsPrevalidationDetails$ = DnsPrevalidationDetails$;
|
|
2396
|
+
exports.DnsPrevalidationOptions$ = DnsPrevalidationOptions$;
|
|
2397
|
+
exports.DomainScope$ = DomainScope$;
|
|
2398
|
+
exports.DomainScopeOption = DomainScopeOption;
|
|
1669
2399
|
exports.DomainStatus = DomainStatus;
|
|
1670
2400
|
exports.DomainValidation$ = DomainValidation$;
|
|
1671
2401
|
exports.DomainValidationOption$ = DomainValidationOption$;
|
|
2402
|
+
exports.Expiration$ = Expiration$;
|
|
1672
2403
|
exports.ExpiryEventsConfiguration$ = ExpiryEventsConfiguration$;
|
|
1673
2404
|
exports.ExportCertificate$ = ExportCertificate$;
|
|
1674
2405
|
exports.ExportCertificateCommand = ExportCertificateCommand;
|
|
@@ -1676,12 +2407,17 @@ exports.ExportCertificateRequest$ = ExportCertificateRequest$;
|
|
|
1676
2407
|
exports.ExportCertificateResponse$ = ExportCertificateResponse$;
|
|
1677
2408
|
exports.ExtendedKeyUsage$ = ExtendedKeyUsage$;
|
|
1678
2409
|
exports.ExtendedKeyUsageName = ExtendedKeyUsageName;
|
|
2410
|
+
exports.FailureDetails$ = FailureDetails$;
|
|
1679
2411
|
exports.FailureReason = FailureReason;
|
|
1680
2412
|
exports.Filters$ = Filters$;
|
|
1681
2413
|
exports.GeneralName$ = GeneralName$;
|
|
1682
2414
|
exports.GetAccountConfiguration$ = GetAccountConfiguration$;
|
|
1683
2415
|
exports.GetAccountConfigurationCommand = GetAccountConfigurationCommand;
|
|
1684
2416
|
exports.GetAccountConfigurationResponse$ = GetAccountConfigurationResponse$;
|
|
2417
|
+
exports.GetAcmeExternalAccountBindingCredentials$ = GetAcmeExternalAccountBindingCredentials$;
|
|
2418
|
+
exports.GetAcmeExternalAccountBindingCredentialsCommand = GetAcmeExternalAccountBindingCredentialsCommand;
|
|
2419
|
+
exports.GetAcmeExternalAccountBindingCredentialsRequest$ = GetAcmeExternalAccountBindingCredentialsRequest$;
|
|
2420
|
+
exports.GetAcmeExternalAccountBindingCredentialsResponse$ = GetAcmeExternalAccountBindingCredentialsResponse$;
|
|
1685
2421
|
exports.GetCertificate$ = GetCertificate$;
|
|
1686
2422
|
exports.GetCertificateCommand = GetCertificateCommand;
|
|
1687
2423
|
exports.GetCertificateRequest$ = GetCertificateRequest$;
|
|
@@ -1691,6 +2427,8 @@ exports.ImportCertificate$ = ImportCertificate$;
|
|
|
1691
2427
|
exports.ImportCertificateCommand = ImportCertificateCommand;
|
|
1692
2428
|
exports.ImportCertificateRequest$ = ImportCertificateRequest$;
|
|
1693
2429
|
exports.ImportCertificateResponse$ = ImportCertificateResponse$;
|
|
2430
|
+
exports.InternalServerException = InternalServerException;
|
|
2431
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1694
2432
|
exports.InvalidArgsException = InvalidArgsException;
|
|
1695
2433
|
exports.InvalidArgsException$ = InvalidArgsException$;
|
|
1696
2434
|
exports.InvalidArnException = InvalidArnException;
|
|
@@ -1708,6 +2446,22 @@ exports.KeyUsage$ = KeyUsage$;
|
|
|
1708
2446
|
exports.KeyUsageName = KeyUsageName;
|
|
1709
2447
|
exports.LimitExceededException = LimitExceededException;
|
|
1710
2448
|
exports.LimitExceededException$ = LimitExceededException$;
|
|
2449
|
+
exports.ListAcmeAccounts$ = ListAcmeAccounts$;
|
|
2450
|
+
exports.ListAcmeAccountsCommand = ListAcmeAccountsCommand;
|
|
2451
|
+
exports.ListAcmeAccountsRequest$ = ListAcmeAccountsRequest$;
|
|
2452
|
+
exports.ListAcmeAccountsResponse$ = ListAcmeAccountsResponse$;
|
|
2453
|
+
exports.ListAcmeDomainValidations$ = ListAcmeDomainValidations$;
|
|
2454
|
+
exports.ListAcmeDomainValidationsCommand = ListAcmeDomainValidationsCommand;
|
|
2455
|
+
exports.ListAcmeDomainValidationsRequest$ = ListAcmeDomainValidationsRequest$;
|
|
2456
|
+
exports.ListAcmeDomainValidationsResponse$ = ListAcmeDomainValidationsResponse$;
|
|
2457
|
+
exports.ListAcmeEndpoints$ = ListAcmeEndpoints$;
|
|
2458
|
+
exports.ListAcmeEndpointsCommand = ListAcmeEndpointsCommand;
|
|
2459
|
+
exports.ListAcmeEndpointsRequest$ = ListAcmeEndpointsRequest$;
|
|
2460
|
+
exports.ListAcmeEndpointsResponse$ = ListAcmeEndpointsResponse$;
|
|
2461
|
+
exports.ListAcmeExternalAccountBindings$ = ListAcmeExternalAccountBindings$;
|
|
2462
|
+
exports.ListAcmeExternalAccountBindingsCommand = ListAcmeExternalAccountBindingsCommand;
|
|
2463
|
+
exports.ListAcmeExternalAccountBindingsRequest$ = ListAcmeExternalAccountBindingsRequest$;
|
|
2464
|
+
exports.ListAcmeExternalAccountBindingsResponse$ = ListAcmeExternalAccountBindingsResponse$;
|
|
1711
2465
|
exports.ListCertificates$ = ListCertificates$;
|
|
1712
2466
|
exports.ListCertificatesCommand = ListCertificatesCommand;
|
|
1713
2467
|
exports.ListCertificatesRequest$ = ListCertificatesRequest$;
|
|
@@ -1716,7 +2470,16 @@ exports.ListTagsForCertificate$ = ListTagsForCertificate$;
|
|
|
1716
2470
|
exports.ListTagsForCertificateCommand = ListTagsForCertificateCommand;
|
|
1717
2471
|
exports.ListTagsForCertificateRequest$ = ListTagsForCertificateRequest$;
|
|
1718
2472
|
exports.ListTagsForCertificateResponse$ = ListTagsForCertificateResponse$;
|
|
2473
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2474
|
+
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2475
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2476
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1719
2477
|
exports.OtherName$ = OtherName$;
|
|
2478
|
+
exports.PrevalidationDetails$ = PrevalidationDetails$;
|
|
2479
|
+
exports.PrevalidationOptions$ = PrevalidationOptions$;
|
|
2480
|
+
exports.PrevalidationType = PrevalidationType;
|
|
2481
|
+
exports.PublicCertificateAuthority$ = PublicCertificateAuthority$;
|
|
2482
|
+
exports.PublicKeyAlgorithm = PublicKeyAlgorithm;
|
|
1720
2483
|
exports.PutAccountConfiguration$ = PutAccountConfiguration$;
|
|
1721
2484
|
exports.PutAccountConfigurationCommand = PutAccountConfigurationCommand;
|
|
1722
2485
|
exports.PutAccountConfigurationRequest$ = PutAccountConfigurationRequest$;
|
|
@@ -1745,6 +2508,12 @@ exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
|
1745
2508
|
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1746
2509
|
exports.ResourceRecord$ = ResourceRecord$;
|
|
1747
2510
|
exports.RevocationReason = RevocationReason;
|
|
2511
|
+
exports.RevokeAcmeAccount$ = RevokeAcmeAccount$;
|
|
2512
|
+
exports.RevokeAcmeAccountCommand = RevokeAcmeAccountCommand;
|
|
2513
|
+
exports.RevokeAcmeAccountRequest$ = RevokeAcmeAccountRequest$;
|
|
2514
|
+
exports.RevokeAcmeExternalAccountBinding$ = RevokeAcmeExternalAccountBinding$;
|
|
2515
|
+
exports.RevokeAcmeExternalAccountBindingCommand = RevokeAcmeExternalAccountBindingCommand;
|
|
2516
|
+
exports.RevokeAcmeExternalAccountBindingRequest$ = RevokeAcmeExternalAccountBindingRequest$;
|
|
1748
2517
|
exports.RevokeCertificate$ = RevokeCertificate$;
|
|
1749
2518
|
exports.RevokeCertificateCommand = RevokeCertificateCommand;
|
|
1750
2519
|
exports.RevokeCertificateRequest$ = RevokeCertificateRequest$;
|
|
@@ -1755,6 +2524,8 @@ exports.SearchCertificatesRequest$ = SearchCertificatesRequest$;
|
|
|
1755
2524
|
exports.SearchCertificatesResponse$ = SearchCertificatesResponse$;
|
|
1756
2525
|
exports.SearchCertificatesSortBy = SearchCertificatesSortBy;
|
|
1757
2526
|
exports.SearchCertificatesSortOrder = SearchCertificatesSortOrder;
|
|
2527
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2528
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1758
2529
|
exports.SortBy = SortBy;
|
|
1759
2530
|
exports.SortOrder = SortOrder;
|
|
1760
2531
|
exports.SubjectAlternativeNameFilter$ = SubjectAlternativeNameFilter$;
|
|
@@ -1762,12 +2533,25 @@ exports.SubjectFilter$ = SubjectFilter$;
|
|
|
1762
2533
|
exports.Tag$ = Tag$;
|
|
1763
2534
|
exports.TagPolicyException = TagPolicyException;
|
|
1764
2535
|
exports.TagPolicyException$ = TagPolicyException$;
|
|
2536
|
+
exports.TagResource$ = TagResource$;
|
|
2537
|
+
exports.TagResourceCommand = TagResourceCommand;
|
|
2538
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1765
2539
|
exports.ThrottlingException = ThrottlingException;
|
|
1766
2540
|
exports.ThrottlingException$ = ThrottlingException$;
|
|
1767
2541
|
exports.ThrottlingReason$ = ThrottlingReason$;
|
|
2542
|
+
exports.TimeType = TimeType;
|
|
1768
2543
|
exports.TimestampRange$ = TimestampRange$;
|
|
1769
2544
|
exports.TooManyTagsException = TooManyTagsException;
|
|
1770
2545
|
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2546
|
+
exports.UntagResource$ = UntagResource$;
|
|
2547
|
+
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2548
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2549
|
+
exports.UpdateAcmeDomainValidation$ = UpdateAcmeDomainValidation$;
|
|
2550
|
+
exports.UpdateAcmeDomainValidationCommand = UpdateAcmeDomainValidationCommand;
|
|
2551
|
+
exports.UpdateAcmeDomainValidationRequest$ = UpdateAcmeDomainValidationRequest$;
|
|
2552
|
+
exports.UpdateAcmeEndpoint$ = UpdateAcmeEndpoint$;
|
|
2553
|
+
exports.UpdateAcmeEndpointCommand = UpdateAcmeEndpointCommand;
|
|
2554
|
+
exports.UpdateAcmeEndpointRequest$ = UpdateAcmeEndpointRequest$;
|
|
1771
2555
|
exports.UpdateCertificateOptions$ = UpdateCertificateOptions$;
|
|
1772
2556
|
exports.UpdateCertificateOptionsCommand = UpdateCertificateOptionsCommand;
|
|
1773
2557
|
exports.UpdateCertificateOptionsRequest$ = UpdateCertificateOptionsRequest$;
|
|
@@ -1777,7 +2561,19 @@ exports.ValidationMethod = ValidationMethod;
|
|
|
1777
2561
|
exports.X509AttributeFilter$ = X509AttributeFilter$;
|
|
1778
2562
|
exports.X509Attributes$ = X509Attributes$;
|
|
1779
2563
|
exports.errorTypeRegistries = errorTypeRegistries;
|
|
2564
|
+
exports.paginateListAcmeAccounts = paginateListAcmeAccounts;
|
|
2565
|
+
exports.paginateListAcmeDomainValidations = paginateListAcmeDomainValidations;
|
|
2566
|
+
exports.paginateListAcmeEndpoints = paginateListAcmeEndpoints;
|
|
2567
|
+
exports.paginateListAcmeExternalAccountBindings = paginateListAcmeExternalAccountBindings;
|
|
1780
2568
|
exports.paginateListCertificates = paginateListCertificates;
|
|
1781
2569
|
exports.paginateSearchCertificates = paginateSearchCertificates;
|
|
2570
|
+
exports.waitForAcmeDomainValidationDeleted = waitForAcmeDomainValidationDeleted;
|
|
2571
|
+
exports.waitForAcmeDomainValidationValidated = waitForAcmeDomainValidationValidated;
|
|
2572
|
+
exports.waitForAcmeEndpointActive = waitForAcmeEndpointActive;
|
|
2573
|
+
exports.waitForAcmeEndpointDeleted = waitForAcmeEndpointDeleted;
|
|
1782
2574
|
exports.waitForCertificateValidated = waitForCertificateValidated;
|
|
2575
|
+
exports.waitUntilAcmeDomainValidationDeleted = waitUntilAcmeDomainValidationDeleted;
|
|
2576
|
+
exports.waitUntilAcmeDomainValidationValidated = waitUntilAcmeDomainValidationValidated;
|
|
2577
|
+
exports.waitUntilAcmeEndpointActive = waitUntilAcmeEndpointActive;
|
|
2578
|
+
exports.waitUntilAcmeEndpointDeleted = waitUntilAcmeEndpointDeleted;
|
|
1783
2579
|
exports.waitUntilCertificateValidated = waitUntilCertificateValidated;
|