@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.
- package/README.md +161 -7
- package/dist-cjs/index.js +2459 -33
- package/dist-es/ACM.js +60 -0
- package/dist-es/commands/AddTagsToCertificateCommand.js +4 -1
- package/dist-es/commands/CreateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/CreateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteCertificateCommand.js +4 -1
- package/dist-es/commands/DescribeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DescribeCertificateCommand.js +4 -1
- package/dist-es/commands/ExportCertificateCommand.js +4 -1
- package/dist-es/commands/GetAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +19 -0
- package/dist-es/commands/GetCertificateCommand.js +4 -1
- package/dist-es/commands/ImportCertificateCommand.js +4 -1
- package/dist-es/commands/ListAcmeAccountsCommand.js +19 -0
- package/dist-es/commands/ListAcmeDomainValidationsCommand.js +19 -0
- package/dist-es/commands/ListAcmeEndpointsCommand.js +19 -0
- package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +19 -0
- package/dist-es/commands/ListCertificatesCommand.js +4 -1
- package/dist-es/commands/ListTagsForCertificateCommand.js +4 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +19 -0
- package/dist-es/commands/PutAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +4 -1
- package/dist-es/commands/RenewCertificateCommand.js +4 -1
- package/dist-es/commands/RequestCertificateCommand.js +4 -1
- package/dist-es/commands/ResendValidationEmailCommand.js +4 -1
- package/dist-es/commands/RevokeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/RevokeCertificateCommand.js +4 -1
- package/dist-es/commands/SearchCertificatesCommand.js +4 -1
- package/dist-es/commands/TagResourceCommand.js +19 -0
- package/dist-es/commands/UntagResourceCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +4 -1
- package/dist-es/commands/index.js +22 -0
- package/dist-es/endpoint/EndpointParameters.js +4 -1
- package/dist-es/endpoint/bdd.js +27 -35
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/enums.js +60 -0
- package/dist-es/models/errors.js +37 -12
- package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +512 -39
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
- package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
- package/dist-types/ACM.d.ts +208 -0
- package/dist-types/ACMClient.d.ts +24 -2
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +4 -1
- package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +118 -0
- package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +86 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -1
- package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +101 -0
- package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +118 -0
- package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +113 -0
- package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +100 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -0
- package/dist-types/commands/ExportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +92 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ListAcmeAccountsCommand.d.ts +105 -0
- package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +123 -0
- package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +114 -0
- package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +105 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +5 -1
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +4 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -1
- package/dist-types/commands/RenewCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -0
- package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +93 -0
- package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +92 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +3 -0
- package/dist-types/commands/SearchCertificatesCommand.d.ts +10 -1
- package/dist-types/commands/TagResourceCommand.d.ts +89 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +102 -0
- package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +101 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/models/enums.d.ts +148 -0
- package/dist-types/models/errors.d.ts +37 -12
- package/dist-types/models/models_0.d.ts +1284 -67
- package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/ACM.d.ts +452 -0
- package/dist-types/ts3.4/ACMClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/ts3.4/models/enums.d.ts +80 -0
- package/dist-types/ts3.4/models/errors.d.ts +22 -7
- package/dist-types/ts3.4/models/models_0.d.ts +395 -5
- package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +18 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +18 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +18 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ACMServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -197
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -778
package/README.md
CHANGED
|
@@ -22,16 +22,16 @@ To install this package, use the CLI of your favorite package manager:
|
|
|
22
22
|
|
|
23
23
|
The AWS SDK is modulized by clients and commands.
|
|
24
24
|
To send a request, you only need to import the `ACMClient` and
|
|
25
|
-
the commands you need, for example `
|
|
25
|
+
the commands you need, for example `ListAcmeEndpointsCommand`:
|
|
26
26
|
|
|
27
27
|
```js
|
|
28
28
|
// ES5 example
|
|
29
|
-
const { ACMClient,
|
|
29
|
+
const { ACMClient, ListAcmeEndpointsCommand } = require("@aws-sdk/client-acm");
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
```ts
|
|
33
33
|
// ES6+ example
|
|
34
|
-
import { ACMClient,
|
|
34
|
+
import { ACMClient, ListAcmeEndpointsCommand } from "@aws-sdk/client-acm";
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
### Usage
|
|
@@ -48,7 +48,7 @@ To send a request:
|
|
|
48
48
|
const client = new ACMClient({ region: "REGION" });
|
|
49
49
|
|
|
50
50
|
const params = { /** input parameters */ };
|
|
51
|
-
const command = new
|
|
51
|
+
const command = new ListAcmeEndpointsCommand(params);
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
#### Async/await
|
|
@@ -104,7 +104,7 @@ const client = new ACM({ region: "REGION" });
|
|
|
104
104
|
|
|
105
105
|
// async/await.
|
|
106
106
|
try {
|
|
107
|
-
const data = await client.
|
|
107
|
+
const data = await client.listAcmeEndpoints(params);
|
|
108
108
|
// process data.
|
|
109
109
|
} catch (error) {
|
|
110
110
|
// error handling.
|
|
@@ -112,7 +112,7 @@ try {
|
|
|
112
112
|
|
|
113
113
|
// Promises.
|
|
114
114
|
client
|
|
115
|
-
.
|
|
115
|
+
.listAcmeEndpoints(params)
|
|
116
116
|
.then((data) => {
|
|
117
117
|
// process data.
|
|
118
118
|
})
|
|
@@ -121,7 +121,7 @@ client
|
|
|
121
121
|
});
|
|
122
122
|
|
|
123
123
|
// callbacks (not recommended).
|
|
124
|
-
client.
|
|
124
|
+
client.listAcmeEndpoints(params, (err, data) => {
|
|
125
125
|
// process err and data.
|
|
126
126
|
});
|
|
127
127
|
```
|
|
@@ -188,6 +188,48 @@ AddTagsToCertificate
|
|
|
188
188
|
</details>
|
|
189
189
|
<details>
|
|
190
190
|
<summary>
|
|
191
|
+
CreateAcmeDomainValidation
|
|
192
|
+
</summary>
|
|
193
|
+
|
|
194
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/CreateAcmeDomainValidationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeDomainValidationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeDomainValidationCommandOutput/)
|
|
195
|
+
</details>
|
|
196
|
+
<details>
|
|
197
|
+
<summary>
|
|
198
|
+
CreateAcmeEndpoint
|
|
199
|
+
</summary>
|
|
200
|
+
|
|
201
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/CreateAcmeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeEndpointCommandOutput/)
|
|
202
|
+
</details>
|
|
203
|
+
<details>
|
|
204
|
+
<summary>
|
|
205
|
+
CreateAcmeExternalAccountBinding
|
|
206
|
+
</summary>
|
|
207
|
+
|
|
208
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/CreateAcmeExternalAccountBindingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeExternalAccountBindingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeExternalAccountBindingCommandOutput/)
|
|
209
|
+
</details>
|
|
210
|
+
<details>
|
|
211
|
+
<summary>
|
|
212
|
+
DeleteAcmeDomainValidation
|
|
213
|
+
</summary>
|
|
214
|
+
|
|
215
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DeleteAcmeDomainValidationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeDomainValidationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeDomainValidationCommandOutput/)
|
|
216
|
+
</details>
|
|
217
|
+
<details>
|
|
218
|
+
<summary>
|
|
219
|
+
DeleteAcmeEndpoint
|
|
220
|
+
</summary>
|
|
221
|
+
|
|
222
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DeleteAcmeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeEndpointCommandOutput/)
|
|
223
|
+
</details>
|
|
224
|
+
<details>
|
|
225
|
+
<summary>
|
|
226
|
+
DeleteAcmeExternalAccountBinding
|
|
227
|
+
</summary>
|
|
228
|
+
|
|
229
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DeleteAcmeExternalAccountBindingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeExternalAccountBindingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeExternalAccountBindingCommandOutput/)
|
|
230
|
+
</details>
|
|
231
|
+
<details>
|
|
232
|
+
<summary>
|
|
191
233
|
DeleteCertificate
|
|
192
234
|
</summary>
|
|
193
235
|
|
|
@@ -195,6 +237,34 @@ DeleteCertificate
|
|
|
195
237
|
</details>
|
|
196
238
|
<details>
|
|
197
239
|
<summary>
|
|
240
|
+
DescribeAcmeAccount
|
|
241
|
+
</summary>
|
|
242
|
+
|
|
243
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DescribeAcmeAccountCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeAccountCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeAccountCommandOutput/)
|
|
244
|
+
</details>
|
|
245
|
+
<details>
|
|
246
|
+
<summary>
|
|
247
|
+
DescribeAcmeDomainValidation
|
|
248
|
+
</summary>
|
|
249
|
+
|
|
250
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DescribeAcmeDomainValidationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeDomainValidationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeDomainValidationCommandOutput/)
|
|
251
|
+
</details>
|
|
252
|
+
<details>
|
|
253
|
+
<summary>
|
|
254
|
+
DescribeAcmeEndpoint
|
|
255
|
+
</summary>
|
|
256
|
+
|
|
257
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DescribeAcmeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeEndpointCommandOutput/)
|
|
258
|
+
</details>
|
|
259
|
+
<details>
|
|
260
|
+
<summary>
|
|
261
|
+
DescribeAcmeExternalAccountBinding
|
|
262
|
+
</summary>
|
|
263
|
+
|
|
264
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DescribeAcmeExternalAccountBindingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeExternalAccountBindingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeExternalAccountBindingCommandOutput/)
|
|
265
|
+
</details>
|
|
266
|
+
<details>
|
|
267
|
+
<summary>
|
|
198
268
|
DescribeCertificate
|
|
199
269
|
</summary>
|
|
200
270
|
|
|
@@ -216,6 +286,13 @@ GetAccountConfiguration
|
|
|
216
286
|
</details>
|
|
217
287
|
<details>
|
|
218
288
|
<summary>
|
|
289
|
+
GetAcmeExternalAccountBindingCredentials
|
|
290
|
+
</summary>
|
|
291
|
+
|
|
292
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/GetAcmeExternalAccountBindingCredentialsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/GetAcmeExternalAccountBindingCredentialsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/GetAcmeExternalAccountBindingCredentialsCommandOutput/)
|
|
293
|
+
</details>
|
|
294
|
+
<details>
|
|
295
|
+
<summary>
|
|
219
296
|
GetCertificate
|
|
220
297
|
</summary>
|
|
221
298
|
|
|
@@ -230,6 +307,34 @@ ImportCertificate
|
|
|
230
307
|
</details>
|
|
231
308
|
<details>
|
|
232
309
|
<summary>
|
|
310
|
+
ListAcmeAccounts
|
|
311
|
+
</summary>
|
|
312
|
+
|
|
313
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListAcmeAccountsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeAccountsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeAccountsCommandOutput/)
|
|
314
|
+
</details>
|
|
315
|
+
<details>
|
|
316
|
+
<summary>
|
|
317
|
+
ListAcmeDomainValidations
|
|
318
|
+
</summary>
|
|
319
|
+
|
|
320
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListAcmeDomainValidationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeDomainValidationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeDomainValidationsCommandOutput/)
|
|
321
|
+
</details>
|
|
322
|
+
<details>
|
|
323
|
+
<summary>
|
|
324
|
+
ListAcmeEndpoints
|
|
325
|
+
</summary>
|
|
326
|
+
|
|
327
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListAcmeEndpointsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeEndpointsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeEndpointsCommandOutput/)
|
|
328
|
+
</details>
|
|
329
|
+
<details>
|
|
330
|
+
<summary>
|
|
331
|
+
ListAcmeExternalAccountBindings
|
|
332
|
+
</summary>
|
|
333
|
+
|
|
334
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListAcmeExternalAccountBindingsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeExternalAccountBindingsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeExternalAccountBindingsCommandOutput/)
|
|
335
|
+
</details>
|
|
336
|
+
<details>
|
|
337
|
+
<summary>
|
|
233
338
|
ListCertificates
|
|
234
339
|
</summary>
|
|
235
340
|
|
|
@@ -244,6 +349,13 @@ ListTagsForCertificate
|
|
|
244
349
|
</details>
|
|
245
350
|
<details>
|
|
246
351
|
<summary>
|
|
352
|
+
ListTagsForResource
|
|
353
|
+
</summary>
|
|
354
|
+
|
|
355
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListTagsForResourceCommandOutput/)
|
|
356
|
+
</details>
|
|
357
|
+
<details>
|
|
358
|
+
<summary>
|
|
247
359
|
PutAccountConfiguration
|
|
248
360
|
</summary>
|
|
249
361
|
|
|
@@ -279,6 +391,20 @@ ResendValidationEmail
|
|
|
279
391
|
</details>
|
|
280
392
|
<details>
|
|
281
393
|
<summary>
|
|
394
|
+
RevokeAcmeAccount
|
|
395
|
+
</summary>
|
|
396
|
+
|
|
397
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/RevokeAcmeAccountCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/RevokeAcmeAccountCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/RevokeAcmeAccountCommandOutput/)
|
|
398
|
+
</details>
|
|
399
|
+
<details>
|
|
400
|
+
<summary>
|
|
401
|
+
RevokeAcmeExternalAccountBinding
|
|
402
|
+
</summary>
|
|
403
|
+
|
|
404
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/RevokeAcmeExternalAccountBindingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/RevokeAcmeExternalAccountBindingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/RevokeAcmeExternalAccountBindingCommandOutput/)
|
|
405
|
+
</details>
|
|
406
|
+
<details>
|
|
407
|
+
<summary>
|
|
282
408
|
RevokeCertificate
|
|
283
409
|
</summary>
|
|
284
410
|
|
|
@@ -293,6 +419,34 @@ SearchCertificates
|
|
|
293
419
|
</details>
|
|
294
420
|
<details>
|
|
295
421
|
<summary>
|
|
422
|
+
TagResource
|
|
423
|
+
</summary>
|
|
424
|
+
|
|
425
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/TagResourceCommandOutput/)
|
|
426
|
+
</details>
|
|
427
|
+
<details>
|
|
428
|
+
<summary>
|
|
429
|
+
UntagResource
|
|
430
|
+
</summary>
|
|
431
|
+
|
|
432
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UntagResourceCommandOutput/)
|
|
433
|
+
</details>
|
|
434
|
+
<details>
|
|
435
|
+
<summary>
|
|
436
|
+
UpdateAcmeDomainValidation
|
|
437
|
+
</summary>
|
|
438
|
+
|
|
439
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/UpdateAcmeDomainValidationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UpdateAcmeDomainValidationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UpdateAcmeDomainValidationCommandOutput/)
|
|
440
|
+
</details>
|
|
441
|
+
<details>
|
|
442
|
+
<summary>
|
|
443
|
+
UpdateAcmeEndpoint
|
|
444
|
+
</summary>
|
|
445
|
+
|
|
446
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/UpdateAcmeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UpdateAcmeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UpdateAcmeEndpointCommandOutput/)
|
|
447
|
+
</details>
|
|
448
|
+
<details>
|
|
449
|
+
<summary>
|
|
296
450
|
UpdateCertificateOptions
|
|
297
451
|
</summary>
|
|
298
452
|
|