@aws-sdk/client-acm 3.1076.0 → 3.1078.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (192) hide show
  1. package/README.md +161 -7
  2. package/dist-cjs/index.js +1058 -262
  3. package/dist-es/ACM.js +60 -0
  4. package/dist-es/commandBuilder.js +11 -0
  5. package/dist-es/commands/AddTagsToCertificateCommand.js +2 -14
  6. package/dist-es/commands/CreateAcmeDomainValidationCommand.js +4 -0
  7. package/dist-es/commands/CreateAcmeEndpointCommand.js +4 -0
  8. package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +4 -0
  9. package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +4 -0
  10. package/dist-es/commands/DeleteAcmeEndpointCommand.js +4 -0
  11. package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +4 -0
  12. package/dist-es/commands/DeleteCertificateCommand.js +2 -14
  13. package/dist-es/commands/DescribeAcmeAccountCommand.js +4 -0
  14. package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +4 -0
  15. package/dist-es/commands/DescribeAcmeEndpointCommand.js +4 -0
  16. package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +4 -0
  17. package/dist-es/commands/DescribeCertificateCommand.js +2 -14
  18. package/dist-es/commands/ExportCertificateCommand.js +2 -14
  19. package/dist-es/commands/GetAccountConfigurationCommand.js +2 -14
  20. package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +4 -0
  21. package/dist-es/commands/GetCertificateCommand.js +2 -14
  22. package/dist-es/commands/ImportCertificateCommand.js +2 -14
  23. package/dist-es/commands/ListAcmeAccountsCommand.js +4 -0
  24. package/dist-es/commands/ListAcmeDomainValidationsCommand.js +4 -0
  25. package/dist-es/commands/ListAcmeEndpointsCommand.js +4 -0
  26. package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +4 -0
  27. package/dist-es/commands/ListCertificatesCommand.js +2 -14
  28. package/dist-es/commands/ListTagsForCertificateCommand.js +2 -14
  29. package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
  30. package/dist-es/commands/PutAccountConfigurationCommand.js +2 -14
  31. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -14
  32. package/dist-es/commands/RenewCertificateCommand.js +2 -14
  33. package/dist-es/commands/RequestCertificateCommand.js +2 -14
  34. package/dist-es/commands/ResendValidationEmailCommand.js +2 -14
  35. package/dist-es/commands/RevokeAcmeAccountCommand.js +4 -0
  36. package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +4 -0
  37. package/dist-es/commands/RevokeCertificateCommand.js +2 -14
  38. package/dist-es/commands/SearchCertificatesCommand.js +2 -14
  39. package/dist-es/commands/TagResourceCommand.js +4 -0
  40. package/dist-es/commands/UntagResourceCommand.js +4 -0
  41. package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +4 -0
  42. package/dist-es/commands/UpdateAcmeEndpointCommand.js +4 -0
  43. package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -14
  44. package/dist-es/commands/index.js +22 -0
  45. package/dist-es/endpoint/EndpointParameters.js +4 -1
  46. package/dist-es/endpoint/bdd.js +27 -35
  47. package/dist-es/endpoint/endpointResolver.js +1 -1
  48. package/dist-es/index.js +1 -0
  49. package/dist-es/models/enums.js +60 -0
  50. package/dist-es/models/errors.js +37 -12
  51. package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
  52. package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
  53. package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
  54. package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
  55. package/dist-es/pagination/index.js +4 -0
  56. package/dist-es/runtimeConfig.browser.js +0 -2
  57. package/dist-es/runtimeConfig.js +1 -2
  58. package/dist-es/runtimeConfig.native.js +0 -2
  59. package/dist-es/runtimeConfig.shared.js +2 -0
  60. package/dist-es/schemas/schemas_0.js +512 -39
  61. package/dist-es/waiters/index.js +4 -0
  62. package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
  63. package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
  64. package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
  65. package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
  66. package/dist-types/ACM.d.ts +208 -0
  67. package/dist-types/ACMClient.d.ts +24 -2
  68. package/dist-types/commandBuilder.d.ts +22 -0
  69. package/dist-types/commands/AddTagsToCertificateCommand.d.ts +7 -9
  70. package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +110 -0
  71. package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +110 -0
  72. package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +113 -0
  73. package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +84 -0
  74. package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +84 -0
  75. package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +81 -0
  76. package/dist-types/commands/DeleteCertificateCommand.d.ts +7 -9
  77. package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +96 -0
  78. package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +113 -0
  79. package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +108 -0
  80. package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +95 -0
  81. package/dist-types/commands/DescribeCertificateCommand.d.ts +9 -8
  82. package/dist-types/commands/ExportCertificateCommand.d.ts +6 -8
  83. package/dist-types/commands/GetAccountConfigurationCommand.d.ts +3 -8
  84. package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +87 -0
  85. package/dist-types/commands/GetCertificateCommand.d.ts +6 -8
  86. package/dist-types/commands/ImportCertificateCommand.d.ts +6 -8
  87. package/dist-types/commands/ListAcmeAccountsCommand.d.ts +100 -0
  88. package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +118 -0
  89. package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +109 -0
  90. package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +100 -0
  91. package/dist-types/commands/ListCertificatesCommand.d.ts +8 -9
  92. package/dist-types/commands/ListTagsForCertificateCommand.d.ts +7 -9
  93. package/dist-types/commands/ListTagsForResourceCommand.d.ts +82 -0
  94. package/dist-types/commands/PutAccountConfigurationCommand.d.ts +3 -8
  95. package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +7 -9
  96. package/dist-types/commands/RenewCertificateCommand.d.ts +6 -8
  97. package/dist-types/commands/RequestCertificateCommand.d.ts +3 -8
  98. package/dist-types/commands/ResendValidationEmailCommand.d.ts +6 -8
  99. package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +88 -0
  100. package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +87 -0
  101. package/dist-types/commands/RevokeCertificateCommand.d.ts +6 -8
  102. package/dist-types/commands/SearchCertificatesCommand.d.ts +13 -9
  103. package/dist-types/commands/TagResourceCommand.d.ts +84 -0
  104. package/dist-types/commands/UntagResourceCommand.d.ts +78 -0
  105. package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +97 -0
  106. package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +96 -0
  107. package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +6 -8
  108. package/dist-types/commands/index.d.ts +22 -0
  109. package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
  110. package/dist-types/index.d.ts +1 -0
  111. package/dist-types/models/enums.d.ts +148 -0
  112. package/dist-types/models/errors.d.ts +37 -12
  113. package/dist-types/models/models_0.d.ts +1284 -67
  114. package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
  116. package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
  117. package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
  118. package/dist-types/pagination/index.d.ts +4 -0
  119. package/dist-types/runtimeConfig.browser.d.ts +5 -1
  120. package/dist-types/runtimeConfig.d.ts +5 -1
  121. package/dist-types/runtimeConfig.native.d.ts +5 -1
  122. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  123. package/dist-types/schemas/schemas_0.d.ts +76 -0
  124. package/dist-types/ts3.4/ACM.d.ts +452 -0
  125. package/dist-types/ts3.4/ACMClient.d.ts +132 -0
  126. package/dist-types/ts3.4/commandBuilder.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +7 -16
  128. package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +44 -0
  129. package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +44 -0
  130. package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +44 -0
  131. package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +40 -0
  132. package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +39 -0
  133. package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +40 -0
  134. package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +7 -16
  135. package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +44 -0
  136. package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +44 -0
  137. package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +44 -0
  138. package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +44 -0
  139. package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +7 -16
  140. package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +7 -16
  141. package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +7 -16
  142. package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +44 -0
  143. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +7 -16
  144. package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +7 -16
  145. package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +43 -0
  146. package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +44 -0
  147. package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +44 -0
  148. package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +44 -0
  149. package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +7 -16
  150. package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +7 -16
  151. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +44 -0
  152. package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +7 -16
  153. package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +7 -16
  154. package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +7 -16
  155. package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +7 -16
  156. package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +7 -16
  157. package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +39 -0
  158. package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +40 -0
  159. package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +7 -16
  160. package/dist-types/ts3.4/commands/SearchCertificatesCommand.d.ts +7 -16
  161. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
  162. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  163. package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +40 -0
  164. package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +39 -0
  165. package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +7 -16
  166. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  167. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
  168. package/dist-types/ts3.4/index.d.ts +1 -0
  169. package/dist-types/ts3.4/models/enums.d.ts +80 -0
  170. package/dist-types/ts3.4/models/errors.d.ts +22 -7
  171. package/dist-types/ts3.4/models/models_0.d.ts +395 -5
  172. package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
  173. package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
  174. package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
  175. package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
  176. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  177. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
  178. package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
  179. package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
  180. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  181. package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
  182. package/dist-types/ts3.4/waiters/index.d.ts +4 -0
  183. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
  184. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
  185. package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
  186. package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
  187. package/dist-types/waiters/index.d.ts +4 -0
  188. package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
  189. package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
  190. package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
  191. package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
  192. package/package.json +8 -10
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ DescribeAcmeDomainValidationRequest,
4
+ DescribeAcmeDomainValidationResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface DescribeAcmeDomainValidationCommandInput
8
+ extends DescribeAcmeDomainValidationRequest {}
9
+ export interface DescribeAcmeDomainValidationCommandOutput
10
+ extends DescribeAcmeDomainValidationResponse,
11
+ __MetadataBearer {}
12
+ declare const DescribeAcmeDomainValidationCommand_base: {
13
+ new (
14
+ input: DescribeAcmeDomainValidationCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ DescribeAcmeDomainValidationCommandInput,
17
+ DescribeAcmeDomainValidationCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: DescribeAcmeDomainValidationCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ DescribeAcmeDomainValidationCommandInput,
26
+ DescribeAcmeDomainValidationCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class DescribeAcmeDomainValidationCommand extends DescribeAcmeDomainValidationCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: DescribeAcmeDomainValidationRequest;
37
+ output: DescribeAcmeDomainValidationResponse;
38
+ };
39
+ sdk: {
40
+ input: DescribeAcmeDomainValidationCommandInput;
41
+ output: DescribeAcmeDomainValidationCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ DescribeAcmeEndpointRequest,
4
+ DescribeAcmeEndpointResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface DescribeAcmeEndpointCommandInput
8
+ extends DescribeAcmeEndpointRequest {}
9
+ export interface DescribeAcmeEndpointCommandOutput
10
+ extends DescribeAcmeEndpointResponse,
11
+ __MetadataBearer {}
12
+ declare const DescribeAcmeEndpointCommand_base: {
13
+ new (
14
+ input: DescribeAcmeEndpointCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ DescribeAcmeEndpointCommandInput,
17
+ DescribeAcmeEndpointCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: DescribeAcmeEndpointCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ DescribeAcmeEndpointCommandInput,
26
+ DescribeAcmeEndpointCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class DescribeAcmeEndpointCommand extends DescribeAcmeEndpointCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: DescribeAcmeEndpointRequest;
37
+ output: DescribeAcmeEndpointResponse;
38
+ };
39
+ sdk: {
40
+ input: DescribeAcmeEndpointCommandInput;
41
+ output: DescribeAcmeEndpointCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ DescribeAcmeExternalAccountBindingRequest,
4
+ DescribeAcmeExternalAccountBindingResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface DescribeAcmeExternalAccountBindingCommandInput
8
+ extends DescribeAcmeExternalAccountBindingRequest {}
9
+ export interface DescribeAcmeExternalAccountBindingCommandOutput
10
+ extends DescribeAcmeExternalAccountBindingResponse,
11
+ __MetadataBearer {}
12
+ declare const DescribeAcmeExternalAccountBindingCommand_base: {
13
+ new (
14
+ input: DescribeAcmeExternalAccountBindingCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ DescribeAcmeExternalAccountBindingCommandInput,
17
+ DescribeAcmeExternalAccountBindingCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: DescribeAcmeExternalAccountBindingCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ DescribeAcmeExternalAccountBindingCommandInput,
26
+ DescribeAcmeExternalAccountBindingCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class DescribeAcmeExternalAccountBindingCommand extends DescribeAcmeExternalAccountBindingCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: DescribeAcmeExternalAccountBindingRequest;
37
+ output: DescribeAcmeExternalAccountBindingResponse;
38
+ };
39
+ sdk: {
40
+ input: DescribeAcmeExternalAccountBindingCommandInput;
41
+ output: DescribeAcmeExternalAccountBindingCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ACMClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ACMClient";
8
2
  import {
9
3
  DescribeCertificateRequest,
10
4
  DescribeCertificateResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeCertificateCommandInput
15
8
  extends DescribeCertificateRequest {}
16
9
  export interface DescribeCertificateCommandOutput
@@ -22,22 +15,20 @@ declare const DescribeCertificateCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DescribeCertificateCommandInput,
24
17
  DescribeCertificateCommandOutput,
25
- ACMClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DescribeCertificateCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DescribeCertificateCommandInput,
33
26
  DescribeCertificateCommandOutput,
34
- ACMClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DescribeCertificateCommand extends DescribeCertificateCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ACMClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ACMClient";
8
2
  import {
9
3
  ExportCertificateRequest,
10
4
  ExportCertificateResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ExportCertificateCommandInput
15
8
  extends ExportCertificateRequest {}
16
9
  export interface ExportCertificateCommandOutput
@@ -22,22 +15,20 @@ declare const ExportCertificateCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ExportCertificateCommandInput,
24
17
  ExportCertificateCommandOutput,
25
- ACMClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ExportCertificateCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ExportCertificateCommandInput,
33
26
  ExportCertificateCommandOutput,
34
- ACMClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ExportCertificateCommand extends ExportCertificateCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ACMClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ACMClient";
8
2
  import { GetAccountConfigurationResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetAccountConfigurationCommandInput {}
12
5
  export interface GetAccountConfigurationCommandOutput
13
6
  extends GetAccountConfigurationResponse,
@@ -18,22 +11,20 @@ declare const GetAccountConfigurationCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  GetAccountConfigurationCommandInput,
20
13
  GetAccountConfigurationCommandOutput,
21
- ACMClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").ACMClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [GetAccountConfigurationCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  GetAccountConfigurationCommandInput,
29
22
  GetAccountConfigurationCommandOutput,
30
- ACMClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").ACMClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class GetAccountConfigurationCommand extends GetAccountConfigurationCommand_base {
39
30
  protected static __types: {
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ GetAcmeExternalAccountBindingCredentialsRequest,
4
+ GetAcmeExternalAccountBindingCredentialsResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface GetAcmeExternalAccountBindingCredentialsCommandInput
8
+ extends GetAcmeExternalAccountBindingCredentialsRequest {}
9
+ export interface GetAcmeExternalAccountBindingCredentialsCommandOutput
10
+ extends GetAcmeExternalAccountBindingCredentialsResponse,
11
+ __MetadataBearer {}
12
+ declare const GetAcmeExternalAccountBindingCredentialsCommand_base: {
13
+ new (
14
+ input: GetAcmeExternalAccountBindingCredentialsCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ GetAcmeExternalAccountBindingCredentialsCommandInput,
17
+ GetAcmeExternalAccountBindingCredentialsCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: GetAcmeExternalAccountBindingCredentialsCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ GetAcmeExternalAccountBindingCredentialsCommandInput,
26
+ GetAcmeExternalAccountBindingCredentialsCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class GetAcmeExternalAccountBindingCredentialsCommand extends GetAcmeExternalAccountBindingCredentialsCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: GetAcmeExternalAccountBindingCredentialsRequest;
37
+ output: GetAcmeExternalAccountBindingCredentialsResponse;
38
+ };
39
+ sdk: {
40
+ input: GetAcmeExternalAccountBindingCredentialsCommandInput;
41
+ output: GetAcmeExternalAccountBindingCredentialsCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ACMClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ACMClient";
8
2
  import {
9
3
  GetCertificateRequest,
10
4
  GetCertificateResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetCertificateCommandInput extends GetCertificateRequest {}
15
8
  export interface GetCertificateCommandOutput
16
9
  extends GetCertificateResponse,
@@ -21,22 +14,20 @@ declare const GetCertificateCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  GetCertificateCommandInput,
23
16
  GetCertificateCommandOutput,
24
- ACMClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").ACMClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: GetCertificateCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetCertificateCommandInput,
32
25
  GetCertificateCommandOutput,
33
- ACMClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").ACMClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class GetCertificateCommand extends GetCertificateCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ACMClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ACMClient";
8
2
  import {
9
3
  ImportCertificateRequest,
10
4
  ImportCertificateResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ImportCertificateCommandInput
15
8
  extends ImportCertificateRequest {}
16
9
  export interface ImportCertificateCommandOutput
@@ -22,22 +15,20 @@ declare const ImportCertificateCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ImportCertificateCommandInput,
24
17
  ImportCertificateCommandOutput,
25
- ACMClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ImportCertificateCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ImportCertificateCommandInput,
33
26
  ImportCertificateCommandOutput,
34
- ACMClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ImportCertificateCommand extends ImportCertificateCommand_base {
43
34
  protected static __types: {
@@ -0,0 +1,43 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListAcmeAccountsRequest,
4
+ ListAcmeAccountsResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface ListAcmeAccountsCommandInput extends ListAcmeAccountsRequest {}
8
+ export interface ListAcmeAccountsCommandOutput
9
+ extends ListAcmeAccountsResponse,
10
+ __MetadataBearer {}
11
+ declare const ListAcmeAccountsCommand_base: {
12
+ new (
13
+ input: ListAcmeAccountsCommandInput
14
+ ): import("@smithy/core/client").CommandImpl<
15
+ ListAcmeAccountsCommandInput,
16
+ ListAcmeAccountsCommandOutput,
17
+ import("..").ACMClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
20
+ >;
21
+ new (
22
+ input: ListAcmeAccountsCommandInput
23
+ ): import("@smithy/core/client").CommandImpl<
24
+ ListAcmeAccountsCommandInput,
25
+ ListAcmeAccountsCommandOutput,
26
+ import("..").ACMClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
29
+ >;
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
+ };
32
+ export declare class ListAcmeAccountsCommand extends ListAcmeAccountsCommand_base {
33
+ protected static __types: {
34
+ api: {
35
+ input: ListAcmeAccountsRequest;
36
+ output: ListAcmeAccountsResponse;
37
+ };
38
+ sdk: {
39
+ input: ListAcmeAccountsCommandInput;
40
+ output: ListAcmeAccountsCommandOutput;
41
+ };
42
+ };
43
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListAcmeDomainValidationsRequest,
4
+ ListAcmeDomainValidationsResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface ListAcmeDomainValidationsCommandInput
8
+ extends ListAcmeDomainValidationsRequest {}
9
+ export interface ListAcmeDomainValidationsCommandOutput
10
+ extends ListAcmeDomainValidationsResponse,
11
+ __MetadataBearer {}
12
+ declare const ListAcmeDomainValidationsCommand_base: {
13
+ new (
14
+ input: ListAcmeDomainValidationsCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ ListAcmeDomainValidationsCommandInput,
17
+ ListAcmeDomainValidationsCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: ListAcmeDomainValidationsCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ ListAcmeDomainValidationsCommandInput,
26
+ ListAcmeDomainValidationsCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class ListAcmeDomainValidationsCommand extends ListAcmeDomainValidationsCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: ListAcmeDomainValidationsRequest;
37
+ output: ListAcmeDomainValidationsResponse;
38
+ };
39
+ sdk: {
40
+ input: ListAcmeDomainValidationsCommandInput;
41
+ output: ListAcmeDomainValidationsCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListAcmeEndpointsRequest,
4
+ ListAcmeEndpointsResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface ListAcmeEndpointsCommandInput
8
+ extends ListAcmeEndpointsRequest {}
9
+ export interface ListAcmeEndpointsCommandOutput
10
+ extends ListAcmeEndpointsResponse,
11
+ __MetadataBearer {}
12
+ declare const ListAcmeEndpointsCommand_base: {
13
+ new (
14
+ input: ListAcmeEndpointsCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ ListAcmeEndpointsCommandInput,
17
+ ListAcmeEndpointsCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ ...[input]: [] | [ListAcmeEndpointsCommandInput]
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ ListAcmeEndpointsCommandInput,
26
+ ListAcmeEndpointsCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class ListAcmeEndpointsCommand extends ListAcmeEndpointsCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: ListAcmeEndpointsRequest;
37
+ output: ListAcmeEndpointsResponse;
38
+ };
39
+ sdk: {
40
+ input: ListAcmeEndpointsCommandInput;
41
+ output: ListAcmeEndpointsCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListAcmeExternalAccountBindingsRequest,
4
+ ListAcmeExternalAccountBindingsResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface ListAcmeExternalAccountBindingsCommandInput
8
+ extends ListAcmeExternalAccountBindingsRequest {}
9
+ export interface ListAcmeExternalAccountBindingsCommandOutput
10
+ extends ListAcmeExternalAccountBindingsResponse,
11
+ __MetadataBearer {}
12
+ declare const ListAcmeExternalAccountBindingsCommand_base: {
13
+ new (
14
+ input: ListAcmeExternalAccountBindingsCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ ListAcmeExternalAccountBindingsCommandInput,
17
+ ListAcmeExternalAccountBindingsCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: ListAcmeExternalAccountBindingsCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ ListAcmeExternalAccountBindingsCommandInput,
26
+ ListAcmeExternalAccountBindingsCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class ListAcmeExternalAccountBindingsCommand extends ListAcmeExternalAccountBindingsCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: ListAcmeExternalAccountBindingsRequest;
37
+ output: ListAcmeExternalAccountBindingsResponse;
38
+ };
39
+ sdk: {
40
+ input: ListAcmeExternalAccountBindingsCommandInput;
41
+ output: ListAcmeExternalAccountBindingsCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ACMClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ACMClient";
8
2
  import {
9
3
  ListCertificatesRequest,
10
4
  ListCertificatesResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListCertificatesCommandInput extends ListCertificatesRequest {}
15
8
  export interface ListCertificatesCommandOutput
16
9
  extends ListCertificatesResponse,
@@ -21,22 +14,20 @@ declare const ListCertificatesCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ListCertificatesCommandInput,
23
16
  ListCertificatesCommandOutput,
24
- ACMClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").ACMClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  ...[input]: [] | [ListCertificatesCommandInput]
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ListCertificatesCommandInput,
32
25
  ListCertificatesCommandOutput,
33
- ACMClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").ACMClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ListCertificatesCommand extends ListCertificatesCommand_base {
42
33
  protected static __types: {