@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
@@ -0,0 +1,93 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { RevokeAcmeAccountRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link RevokeAcmeAccountCommand}.
14
+ */
15
+ export interface RevokeAcmeAccountCommandInput extends RevokeAcmeAccountRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link RevokeAcmeAccountCommand}.
21
+ */
22
+ export interface RevokeAcmeAccountCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const RevokeAcmeAccountCommand_base: {
25
+ new (input: RevokeAcmeAccountCommandInput): import("@smithy/core/client").CommandImpl<RevokeAcmeAccountCommandInput, RevokeAcmeAccountCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: RevokeAcmeAccountCommandInput): import("@smithy/core/client").CommandImpl<RevokeAcmeAccountCommandInput, RevokeAcmeAccountCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Revokes an ACME account, preventing it from requesting or revoking certificates. This operation is irreversible.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, RevokeAcmeAccountCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, RevokeAcmeAccountCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // RevokeAcmeAccountRequest
42
+ * AcmeEndpointArn: "STRING_VALUE", // required
43
+ * AccountUrl: "STRING_VALUE", // required
44
+ * };
45
+ * const command = new RevokeAcmeAccountCommand(input);
46
+ * const response = await client.send(command);
47
+ * // {};
48
+ *
49
+ * ```
50
+ *
51
+ * @param RevokeAcmeAccountCommandInput - {@link RevokeAcmeAccountCommandInput}
52
+ * @returns {@link RevokeAcmeAccountCommandOutput}
53
+ * @see {@link RevokeAcmeAccountCommandInput} for command's `input` shape.
54
+ * @see {@link RevokeAcmeAccountCommandOutput} for command's `response` shape.
55
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
56
+ *
57
+ * @throws {@link AccessDeniedException} (client fault)
58
+ * <p>You do not have access required to perform this action.</p>
59
+ *
60
+ * @throws {@link ConflictException} (client fault)
61
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
62
+ *
63
+ * @throws {@link InternalServerException} (server fault)
64
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
65
+ *
66
+ * @throws {@link ResourceNotFoundException} (client fault)
67
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
68
+ *
69
+ * @throws {@link ThrottlingException} (client fault)
70
+ * <p>The request was denied because it exceeded a quota.</p>
71
+ *
72
+ * @throws {@link ValidationException} (client fault)
73
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
74
+ *
75
+ * @throws {@link ACMServiceException}
76
+ * <p>Base exception class for all service exceptions from ACM service.</p>
77
+ *
78
+ *
79
+ * @public
80
+ */
81
+ export declare class RevokeAcmeAccountCommand extends RevokeAcmeAccountCommand_base {
82
+ /** @internal type navigation helper, not in runtime. */
83
+ protected static __types: {
84
+ api: {
85
+ input: RevokeAcmeAccountRequest;
86
+ output: {};
87
+ };
88
+ sdk: {
89
+ input: RevokeAcmeAccountCommandInput;
90
+ output: RevokeAcmeAccountCommandOutput;
91
+ };
92
+ };
93
+ }
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { RevokeAcmeExternalAccountBindingRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link RevokeAcmeExternalAccountBindingCommand}.
14
+ */
15
+ export interface RevokeAcmeExternalAccountBindingCommandInput extends RevokeAcmeExternalAccountBindingRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link RevokeAcmeExternalAccountBindingCommand}.
21
+ */
22
+ export interface RevokeAcmeExternalAccountBindingCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const RevokeAcmeExternalAccountBindingCommand_base: {
25
+ new (input: RevokeAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<RevokeAcmeExternalAccountBindingCommandInput, RevokeAcmeExternalAccountBindingCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: RevokeAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<RevokeAcmeExternalAccountBindingCommandInput, RevokeAcmeExternalAccountBindingCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Revokes an external account binding, preventing new ACME accounts from being registered using this binding. Existing ACME accounts that were previously registered using the binding are not affected and must be revoked separately.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, RevokeAcmeExternalAccountBindingCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, RevokeAcmeExternalAccountBindingCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // RevokeAcmeExternalAccountBindingRequest
42
+ * AcmeExternalAccountBindingArn: "STRING_VALUE", // required
43
+ * };
44
+ * const command = new RevokeAcmeExternalAccountBindingCommand(input);
45
+ * const response = await client.send(command);
46
+ * // {};
47
+ *
48
+ * ```
49
+ *
50
+ * @param RevokeAcmeExternalAccountBindingCommandInput - {@link RevokeAcmeExternalAccountBindingCommandInput}
51
+ * @returns {@link RevokeAcmeExternalAccountBindingCommandOutput}
52
+ * @see {@link RevokeAcmeExternalAccountBindingCommandInput} for command's `input` shape.
53
+ * @see {@link RevokeAcmeExternalAccountBindingCommandOutput} for command's `response` shape.
54
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
55
+ *
56
+ * @throws {@link AccessDeniedException} (client fault)
57
+ * <p>You do not have access required to perform this action.</p>
58
+ *
59
+ * @throws {@link ConflictException} (client fault)
60
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
61
+ *
62
+ * @throws {@link InternalServerException} (server fault)
63
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
64
+ *
65
+ * @throws {@link ResourceNotFoundException} (client fault)
66
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
67
+ *
68
+ * @throws {@link ThrottlingException} (client fault)
69
+ * <p>The request was denied because it exceeded a quota.</p>
70
+ *
71
+ * @throws {@link ValidationException} (client fault)
72
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
73
+ *
74
+ * @throws {@link ACMServiceException}
75
+ * <p>Base exception class for all service exceptions from ACM service.</p>
76
+ *
77
+ *
78
+ * @public
79
+ */
80
+ export declare class RevokeAcmeExternalAccountBindingCommand extends RevokeAcmeExternalAccountBindingCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: RevokeAcmeExternalAccountBindingRequest;
85
+ output: {};
86
+ };
87
+ sdk: {
88
+ input: RevokeAcmeExternalAccountBindingCommandInput;
89
+ output: RevokeAcmeExternalAccountBindingCommandOutput;
90
+ };
91
+ };
92
+ }
@@ -74,6 +74,9 @@ declare const RevokeCertificateCommand_base: {
74
74
  * @throws {@link ThrottlingException} (client fault)
75
75
  * <p>The request was denied because it exceeded a quota.</p>
76
76
  *
77
+ * @throws {@link ValidationException} (client fault)
78
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
79
+ *
77
80
  * @throws {@link ACMServiceException}
78
81
  * <p>Base exception class for all service exceptions from ACM service.</p>
79
82
  *
@@ -86,6 +86,9 @@ declare const SearchCertificatesCommand_base: {
86
86
  * ExportOption: "ENABLED" || "DISABLED",
87
87
  * ManagedBy: "CLOUDFRONT",
88
88
  * ValidationMethod: "EMAIL" || "DNS" || "HTTP",
89
+ * CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
90
+ * AcmeEndpointArn: "STRING_VALUE",
91
+ * AcmeAccountId: "STRING_VALUE",
89
92
  * },
90
93
  * },
91
94
  * },
@@ -131,12 +134,15 @@ declare const SearchCertificatesCommand_base: {
131
134
  * ExportOption: "ENABLED" || "DISABLED",
132
135
  * ManagedBy: "CLOUDFRONT",
133
136
  * ValidationMethod: "EMAIL" || "DNS" || "HTTP",
137
+ * CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
138
+ * AcmeEndpointArn: "STRING_VALUE",
139
+ * AcmeAccountId: "STRING_VALUE",
134
140
  * },
135
141
  * },
136
142
  * },
137
143
  * MaxResults: Number("int"),
138
144
  * NextToken: "STRING_VALUE",
139
- * SortBy: "CREATED_AT" || "NOT_AFTER" || "STATUS" || "RENEWAL_STATUS" || "EXPORTED" || "IN_USE" || "NOT_BEFORE" || "KEY_ALGORITHM" || "TYPE" || "CERTIFICATE_ARN" || "COMMON_NAME" || "REVOKED_AT" || "RENEWAL_ELIGIBILITY" || "ISSUED_AT" || "MANAGED_BY" || "EXPORT_OPTION" || "VALIDATION_METHOD" || "IMPORTED_AT",
145
+ * SortBy: "CREATED_AT" || "NOT_AFTER" || "STATUS" || "RENEWAL_STATUS" || "EXPORTED" || "IN_USE" || "NOT_BEFORE" || "KEY_ALGORITHM" || "TYPE" || "CERTIFICATE_ARN" || "COMMON_NAME" || "REVOKED_AT" || "RENEWAL_ELIGIBILITY" || "ISSUED_AT" || "MANAGED_BY" || "EXPORT_OPTION" || "VALIDATION_METHOD" || "IMPORTED_AT" || "ACME_ENDPOINT_ARN" || "ACME_ACCOUNT_ID" || "CERTIFICATE_KEY_PAIR_ORIGIN",
140
146
  * SortOrder: "ASCENDING" || "DESCENDING",
141
147
  * };
142
148
  * const command = new SearchCertificatesCommand(input);
@@ -260,6 +266,9 @@ declare const SearchCertificatesCommand_base: {
260
266
  * // ExportOption: "ENABLED" || "DISABLED",
261
267
  * // ManagedBy: "CLOUDFRONT",
262
268
  * // ValidationMethod: "EMAIL" || "DNS" || "HTTP",
269
+ * // CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
270
+ * // AcmeEndpointArn: "STRING_VALUE",
271
+ * // AcmeAccountId: "STRING_VALUE",
263
272
  * // },
264
273
  * // },
265
274
  * // },
@@ -0,0 +1,89 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { TagResourceRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link TagResourceCommand}.
14
+ */
15
+ export interface TagResourceCommandInput extends TagResourceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link TagResourceCommand}.
21
+ */
22
+ export interface TagResourceCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const TagResourceCommand_base: {
25
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Adds one or more tags to an ACM resource. Tags are labels that you can use to identify and organize your Amazon Web Services resources. Each tag consists of a <code>key</code> and an optional <code>value</code>.</p> <note> <p>Use this action for all ACM resource types except the <code>certificate</code> resource type. For certificate resources, use <a>AddTagsToCertificate</a> instead.</p> </note> <p>To remove one or more tags, use the <a>UntagResource</a> action. To view all of the tags that have been applied to a resource, use the <a>ListTagsForResource</a> action.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, TagResourceCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, TagResourceCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // TagResourceRequest
42
+ * ResourceArn: "STRING_VALUE", // required
43
+ * Tags: [ // TagList // required
44
+ * { // Tag
45
+ * Key: "STRING_VALUE", // required
46
+ * Value: "STRING_VALUE",
47
+ * },
48
+ * ],
49
+ * };
50
+ * const command = new TagResourceCommand(input);
51
+ * const response = await client.send(command);
52
+ * // {};
53
+ *
54
+ * ```
55
+ *
56
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
57
+ * @returns {@link TagResourceCommandOutput}
58
+ * @see {@link TagResourceCommandInput} for command's `input` shape.
59
+ * @see {@link TagResourceCommandOutput} for command's `response` shape.
60
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
61
+ *
62
+ * @throws {@link ResourceNotFoundException} (client fault)
63
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
64
+ *
65
+ * @throws {@link ServiceQuotaExceededException} (client fault)
66
+ * <p>A service quota has been exceeded.</p>
67
+ *
68
+ * @throws {@link ValidationException} (client fault)
69
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
70
+ *
71
+ * @throws {@link ACMServiceException}
72
+ * <p>Base exception class for all service exceptions from ACM service.</p>
73
+ *
74
+ *
75
+ * @public
76
+ */
77
+ export declare class TagResourceCommand extends TagResourceCommand_base {
78
+ /** @internal type navigation helper, not in runtime. */
79
+ protected static __types: {
80
+ api: {
81
+ input: TagResourceRequest;
82
+ output: {};
83
+ };
84
+ sdk: {
85
+ input: TagResourceCommandInput;
86
+ output: TagResourceCommandOutput;
87
+ };
88
+ };
89
+ }
@@ -0,0 +1,83 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { UntagResourceRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UntagResourceCommand}.
14
+ */
15
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UntagResourceCommand}.
21
+ */
22
+ export interface UntagResourceCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const UntagResourceCommand_base: {
25
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Removes one or more tags from an ACM resource.</p> <note> <p>Use this action for all ACM resource types except the <code>certificate</code> resource type. For certificate resources, use <a>RemoveTagsFromCertificate</a> instead.</p> </note> <p>To add one or more tags, use the <a>TagResource</a> action. To view all of the tags that have been applied to a resource, use the <a>ListTagsForResource</a> action.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, UntagResourceCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, UntagResourceCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // UntagResourceRequest
42
+ * ResourceArn: "STRING_VALUE", // required
43
+ * TagKeys: [ // TagKeyList // required
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * };
47
+ * const command = new UntagResourceCommand(input);
48
+ * const response = await client.send(command);
49
+ * // {};
50
+ *
51
+ * ```
52
+ *
53
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
54
+ * @returns {@link UntagResourceCommandOutput}
55
+ * @see {@link UntagResourceCommandInput} for command's `input` shape.
56
+ * @see {@link UntagResourceCommandOutput} for command's `response` shape.
57
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
58
+ *
59
+ * @throws {@link ResourceNotFoundException} (client fault)
60
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
61
+ *
62
+ * @throws {@link ValidationException} (client fault)
63
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
64
+ *
65
+ * @throws {@link ACMServiceException}
66
+ * <p>Base exception class for all service exceptions from ACM service.</p>
67
+ *
68
+ *
69
+ * @public
70
+ */
71
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
72
+ /** @internal type navigation helper, not in runtime. */
73
+ protected static __types: {
74
+ api: {
75
+ input: UntagResourceRequest;
76
+ output: {};
77
+ };
78
+ sdk: {
79
+ input: UntagResourceCommandInput;
80
+ output: UntagResourceCommandOutput;
81
+ };
82
+ };
83
+ }
@@ -0,0 +1,102 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { UpdateAcmeDomainValidationRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateAcmeDomainValidationCommand}.
14
+ */
15
+ export interface UpdateAcmeDomainValidationCommandInput extends UpdateAcmeDomainValidationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateAcmeDomainValidationCommand}.
21
+ */
22
+ export interface UpdateAcmeDomainValidationCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const UpdateAcmeDomainValidationCommand_base: {
25
+ new (input: UpdateAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<UpdateAcmeDomainValidationCommandInput, UpdateAcmeDomainValidationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<UpdateAcmeDomainValidationCommandInput, UpdateAcmeDomainValidationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Updates the prevalidation configuration of an existing domain validation.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, UpdateAcmeDomainValidationCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, UpdateAcmeDomainValidationCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // UpdateAcmeDomainValidationRequest
42
+ * AcmeDomainValidationArn: "STRING_VALUE", // required
43
+ * PrevalidationOptions: { // PrevalidationOptions Union: only one key present
44
+ * DnsPrevalidation: { // DnsPrevalidationOptions
45
+ * DomainScope: { // DomainScope
46
+ * ExactDomain: "ENABLED" || "DISABLED",
47
+ * Subdomains: "ENABLED" || "DISABLED",
48
+ * Wildcards: "ENABLED" || "DISABLED",
49
+ * },
50
+ * HostedZoneId: "STRING_VALUE",
51
+ * },
52
+ * },
53
+ * };
54
+ * const command = new UpdateAcmeDomainValidationCommand(input);
55
+ * const response = await client.send(command);
56
+ * // {};
57
+ *
58
+ * ```
59
+ *
60
+ * @param UpdateAcmeDomainValidationCommandInput - {@link UpdateAcmeDomainValidationCommandInput}
61
+ * @returns {@link UpdateAcmeDomainValidationCommandOutput}
62
+ * @see {@link UpdateAcmeDomainValidationCommandInput} for command's `input` shape.
63
+ * @see {@link UpdateAcmeDomainValidationCommandOutput} for command's `response` shape.
64
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
65
+ *
66
+ * @throws {@link AccessDeniedException} (client fault)
67
+ * <p>You do not have access required to perform this action.</p>
68
+ *
69
+ * @throws {@link ConflictException} (client fault)
70
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
71
+ *
72
+ * @throws {@link InternalServerException} (server fault)
73
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
74
+ *
75
+ * @throws {@link ResourceNotFoundException} (client fault)
76
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
77
+ *
78
+ * @throws {@link ThrottlingException} (client fault)
79
+ * <p>The request was denied because it exceeded a quota.</p>
80
+ *
81
+ * @throws {@link ValidationException} (client fault)
82
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
83
+ *
84
+ * @throws {@link ACMServiceException}
85
+ * <p>Base exception class for all service exceptions from ACM service.</p>
86
+ *
87
+ *
88
+ * @public
89
+ */
90
+ export declare class UpdateAcmeDomainValidationCommand extends UpdateAcmeDomainValidationCommand_base {
91
+ /** @internal type navigation helper, not in runtime. */
92
+ protected static __types: {
93
+ api: {
94
+ input: UpdateAcmeDomainValidationRequest;
95
+ output: {};
96
+ };
97
+ sdk: {
98
+ input: UpdateAcmeDomainValidationCommandInput;
99
+ output: UpdateAcmeDomainValidationCommandOutput;
100
+ };
101
+ };
102
+ }
@@ -0,0 +1,101 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { UpdateAcmeEndpointRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateAcmeEndpointCommand}.
14
+ */
15
+ export interface UpdateAcmeEndpointCommandInput extends UpdateAcmeEndpointRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateAcmeEndpointCommand}.
21
+ */
22
+ export interface UpdateAcmeEndpointCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const UpdateAcmeEndpointCommand_base: {
25
+ new (input: UpdateAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<UpdateAcmeEndpointCommandInput, UpdateAcmeEndpointCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<UpdateAcmeEndpointCommandInput, UpdateAcmeEndpointCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Updates the configuration of an existing ACME endpoint. You can change the authorization behavior, contact requirement, or certificate authority settings.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, UpdateAcmeEndpointCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, UpdateAcmeEndpointCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // UpdateAcmeEndpointRequest
42
+ * AcmeEndpointArn: "STRING_VALUE", // required
43
+ * AuthorizationBehavior: "PRE_APPROVED",
44
+ * Contact: "REQUIRED" || "NOT_REQUIRED",
45
+ * CertificateAuthority: { // CertificateAuthority Union: only one key present
46
+ * PublicCertificateAuthority: { // PublicCertificateAuthority
47
+ * AllowedKeyAlgorithms: [ // PublicKeyAlgorithmList
48
+ * "RSA_2048" || "EC_prime256v1" || "EC_secp384r1",
49
+ * ],
50
+ * },
51
+ * },
52
+ * };
53
+ * const command = new UpdateAcmeEndpointCommand(input);
54
+ * const response = await client.send(command);
55
+ * // {};
56
+ *
57
+ * ```
58
+ *
59
+ * @param UpdateAcmeEndpointCommandInput - {@link UpdateAcmeEndpointCommandInput}
60
+ * @returns {@link UpdateAcmeEndpointCommandOutput}
61
+ * @see {@link UpdateAcmeEndpointCommandInput} for command's `input` shape.
62
+ * @see {@link UpdateAcmeEndpointCommandOutput} for command's `response` shape.
63
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
64
+ *
65
+ * @throws {@link AccessDeniedException} (client fault)
66
+ * <p>You do not have access required to perform this action.</p>
67
+ *
68
+ * @throws {@link ConflictException} (client fault)
69
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
70
+ *
71
+ * @throws {@link InternalServerException} (server fault)
72
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
73
+ *
74
+ * @throws {@link ResourceNotFoundException} (client fault)
75
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
76
+ *
77
+ * @throws {@link ThrottlingException} (client fault)
78
+ * <p>The request was denied because it exceeded a quota.</p>
79
+ *
80
+ * @throws {@link ValidationException} (client fault)
81
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
82
+ *
83
+ * @throws {@link ACMServiceException}
84
+ * <p>Base exception class for all service exceptions from ACM service.</p>
85
+ *
86
+ *
87
+ * @public
88
+ */
89
+ export declare class UpdateAcmeEndpointCommand extends UpdateAcmeEndpointCommand_base {
90
+ /** @internal type navigation helper, not in runtime. */
91
+ protected static __types: {
92
+ api: {
93
+ input: UpdateAcmeEndpointRequest;
94
+ output: {};
95
+ };
96
+ sdk: {
97
+ input: UpdateAcmeEndpointCommandInput;
98
+ output: UpdateAcmeEndpointCommandOutput;
99
+ };
100
+ };
101
+ }
@@ -69,6 +69,9 @@ declare const UpdateCertificateOptionsCommand_base: {
69
69
  * @throws {@link ResourceNotFoundException} (client fault)
70
70
  * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
71
71
  *
72
+ * @throws {@link ValidationException} (client fault)
73
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
74
+ *
72
75
  * @throws {@link ACMServiceException}
73
76
  * <p>Base exception class for all service exceptions from ACM service.</p>
74
77
  *
@@ -1,17 +1,39 @@
1
1
  export * from "./AddTagsToCertificateCommand";
2
+ export * from "./CreateAcmeDomainValidationCommand";
3
+ export * from "./CreateAcmeEndpointCommand";
4
+ export * from "./CreateAcmeExternalAccountBindingCommand";
5
+ export * from "./DeleteAcmeDomainValidationCommand";
6
+ export * from "./DeleteAcmeEndpointCommand";
7
+ export * from "./DeleteAcmeExternalAccountBindingCommand";
2
8
  export * from "./DeleteCertificateCommand";
9
+ export * from "./DescribeAcmeAccountCommand";
10
+ export * from "./DescribeAcmeDomainValidationCommand";
11
+ export * from "./DescribeAcmeEndpointCommand";
12
+ export * from "./DescribeAcmeExternalAccountBindingCommand";
3
13
  export * from "./DescribeCertificateCommand";
4
14
  export * from "./ExportCertificateCommand";
5
15
  export * from "./GetAccountConfigurationCommand";
16
+ export * from "./GetAcmeExternalAccountBindingCredentialsCommand";
6
17
  export * from "./GetCertificateCommand";
7
18
  export * from "./ImportCertificateCommand";
19
+ export * from "./ListAcmeAccountsCommand";
20
+ export * from "./ListAcmeDomainValidationsCommand";
21
+ export * from "./ListAcmeEndpointsCommand";
22
+ export * from "./ListAcmeExternalAccountBindingsCommand";
8
23
  export * from "./ListCertificatesCommand";
9
24
  export * from "./ListTagsForCertificateCommand";
25
+ export * from "./ListTagsForResourceCommand";
10
26
  export * from "./PutAccountConfigurationCommand";
11
27
  export * from "./RemoveTagsFromCertificateCommand";
12
28
  export * from "./RenewCertificateCommand";
13
29
  export * from "./RequestCertificateCommand";
14
30
  export * from "./ResendValidationEmailCommand";
31
+ export * from "./RevokeAcmeAccountCommand";
32
+ export * from "./RevokeAcmeExternalAccountBindingCommand";
15
33
  export * from "./RevokeCertificateCommand";
16
34
  export * from "./SearchCertificatesCommand";
35
+ export * from "./TagResourceCommand";
36
+ export * from "./UntagResourceCommand";
37
+ export * from "./UpdateAcmeDomainValidationCommand";
38
+ export * from "./UpdateAcmeEndpointCommand";
17
39
  export * from "./UpdateCertificateOptionsCommand";