@aws-sdk/client-acm 3.1075.0 → 3.1077.0

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