@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,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import {
9
+ DescribeAcmeExternalAccountBindingRequest,
10
+ DescribeAcmeExternalAccountBindingResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeAcmeExternalAccountBindingCommandInput
15
+ extends DescribeAcmeExternalAccountBindingRequest {}
16
+ export interface DescribeAcmeExternalAccountBindingCommandOutput
17
+ extends DescribeAcmeExternalAccountBindingResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeAcmeExternalAccountBindingCommand_base: {
20
+ new (
21
+ input: DescribeAcmeExternalAccountBindingCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ DescribeAcmeExternalAccountBindingCommandInput,
24
+ DescribeAcmeExternalAccountBindingCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeAcmeExternalAccountBindingCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ DescribeAcmeExternalAccountBindingCommandInput,
33
+ DescribeAcmeExternalAccountBindingCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class DescribeAcmeExternalAccountBindingCommand extends DescribeAcmeExternalAccountBindingCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: DescribeAcmeExternalAccountBindingRequest;
46
+ output: DescribeAcmeExternalAccountBindingResponse;
47
+ };
48
+ sdk: {
49
+ input: DescribeAcmeExternalAccountBindingCommandInput;
50
+ output: DescribeAcmeExternalAccountBindingCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import {
9
+ GetAcmeExternalAccountBindingCredentialsRequest,
10
+ GetAcmeExternalAccountBindingCredentialsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetAcmeExternalAccountBindingCredentialsCommandInput
15
+ extends GetAcmeExternalAccountBindingCredentialsRequest {}
16
+ export interface GetAcmeExternalAccountBindingCredentialsCommandOutput
17
+ extends GetAcmeExternalAccountBindingCredentialsResponse,
18
+ __MetadataBearer {}
19
+ declare const GetAcmeExternalAccountBindingCredentialsCommand_base: {
20
+ new (
21
+ input: GetAcmeExternalAccountBindingCredentialsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ GetAcmeExternalAccountBindingCredentialsCommandInput,
24
+ GetAcmeExternalAccountBindingCredentialsCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetAcmeExternalAccountBindingCredentialsCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ GetAcmeExternalAccountBindingCredentialsCommandInput,
33
+ GetAcmeExternalAccountBindingCredentialsCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class GetAcmeExternalAccountBindingCredentialsCommand extends GetAcmeExternalAccountBindingCredentialsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: GetAcmeExternalAccountBindingCredentialsRequest;
46
+ output: GetAcmeExternalAccountBindingCredentialsResponse;
47
+ };
48
+ sdk: {
49
+ input: GetAcmeExternalAccountBindingCredentialsCommandInput;
50
+ output: GetAcmeExternalAccountBindingCredentialsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,52 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import {
9
+ ListAcmeAccountsRequest,
10
+ ListAcmeAccountsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAcmeAccountsCommandInput extends ListAcmeAccountsRequest {}
15
+ export interface ListAcmeAccountsCommandOutput
16
+ extends ListAcmeAccountsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListAcmeAccountsCommand_base: {
19
+ new (
20
+ input: ListAcmeAccountsCommandInput
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ ListAcmeAccountsCommandInput,
23
+ ListAcmeAccountsCommandOutput,
24
+ ACMClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListAcmeAccountsCommandInput
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ ListAcmeAccountsCommandInput,
32
+ ListAcmeAccountsCommandOutput,
33
+ ACMClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
40
+ };
41
+ export declare class ListAcmeAccountsCommand extends ListAcmeAccountsCommand_base {
42
+ protected static __types: {
43
+ api: {
44
+ input: ListAcmeAccountsRequest;
45
+ output: ListAcmeAccountsResponse;
46
+ };
47
+ sdk: {
48
+ input: ListAcmeAccountsCommandInput;
49
+ output: ListAcmeAccountsCommandOutput;
50
+ };
51
+ };
52
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import {
9
+ ListAcmeDomainValidationsRequest,
10
+ ListAcmeDomainValidationsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAcmeDomainValidationsCommandInput
15
+ extends ListAcmeDomainValidationsRequest {}
16
+ export interface ListAcmeDomainValidationsCommandOutput
17
+ extends ListAcmeDomainValidationsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAcmeDomainValidationsCommand_base: {
20
+ new (
21
+ input: ListAcmeDomainValidationsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListAcmeDomainValidationsCommandInput,
24
+ ListAcmeDomainValidationsCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListAcmeDomainValidationsCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ ListAcmeDomainValidationsCommandInput,
33
+ ListAcmeDomainValidationsCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class ListAcmeDomainValidationsCommand extends ListAcmeDomainValidationsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: ListAcmeDomainValidationsRequest;
46
+ output: ListAcmeDomainValidationsResponse;
47
+ };
48
+ sdk: {
49
+ input: ListAcmeDomainValidationsCommandInput;
50
+ output: ListAcmeDomainValidationsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import {
9
+ ListAcmeEndpointsRequest,
10
+ ListAcmeEndpointsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAcmeEndpointsCommandInput
15
+ extends ListAcmeEndpointsRequest {}
16
+ export interface ListAcmeEndpointsCommandOutput
17
+ extends ListAcmeEndpointsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAcmeEndpointsCommand_base: {
20
+ new (
21
+ input: ListAcmeEndpointsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListAcmeEndpointsCommandInput,
24
+ ListAcmeEndpointsCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListAcmeEndpointsCommandInput]
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ ListAcmeEndpointsCommandInput,
33
+ ListAcmeEndpointsCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class ListAcmeEndpointsCommand extends ListAcmeEndpointsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: ListAcmeEndpointsRequest;
46
+ output: ListAcmeEndpointsResponse;
47
+ };
48
+ sdk: {
49
+ input: ListAcmeEndpointsCommandInput;
50
+ output: ListAcmeEndpointsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import {
9
+ ListAcmeExternalAccountBindingsRequest,
10
+ ListAcmeExternalAccountBindingsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAcmeExternalAccountBindingsCommandInput
15
+ extends ListAcmeExternalAccountBindingsRequest {}
16
+ export interface ListAcmeExternalAccountBindingsCommandOutput
17
+ extends ListAcmeExternalAccountBindingsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAcmeExternalAccountBindingsCommand_base: {
20
+ new (
21
+ input: ListAcmeExternalAccountBindingsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListAcmeExternalAccountBindingsCommandInput,
24
+ ListAcmeExternalAccountBindingsCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListAcmeExternalAccountBindingsCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ ListAcmeExternalAccountBindingsCommandInput,
33
+ ListAcmeExternalAccountBindingsCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class ListAcmeExternalAccountBindingsCommand extends ListAcmeExternalAccountBindingsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: ListAcmeExternalAccountBindingsRequest;
46
+ output: ListAcmeExternalAccountBindingsResponse;
47
+ };
48
+ sdk: {
49
+ input: ListAcmeExternalAccountBindingsCommandInput;
50
+ output: ListAcmeExternalAccountBindingsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListTagsForResourceCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: ListTagsForResourceRequest;
46
+ output: ListTagsForResourceResponse;
47
+ };
48
+ sdk: {
49
+ input: ListTagsForResourceCommandInput;
50
+ output: ListTagsForResourceCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,48 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import { RevokeAcmeAccountRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface RevokeAcmeAccountCommandInput
12
+ extends RevokeAcmeAccountRequest {}
13
+ export interface RevokeAcmeAccountCommandOutput extends __MetadataBearer {}
14
+ declare const RevokeAcmeAccountCommand_base: {
15
+ new (
16
+ input: RevokeAcmeAccountCommandInput
17
+ ): import("@smithy/core/client").CommandImpl<
18
+ RevokeAcmeAccountCommandInput,
19
+ RevokeAcmeAccountCommandOutput,
20
+ ACMClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ input: RevokeAcmeAccountCommandInput
26
+ ): import("@smithy/core/client").CommandImpl<
27
+ RevokeAcmeAccountCommandInput,
28
+ RevokeAcmeAccountCommandOutput,
29
+ ACMClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): {
34
+ [x: string]: unknown;
35
+ };
36
+ };
37
+ export declare class RevokeAcmeAccountCommand extends RevokeAcmeAccountCommand_base {
38
+ protected static __types: {
39
+ api: {
40
+ input: RevokeAcmeAccountRequest;
41
+ output: {};
42
+ };
43
+ sdk: {
44
+ input: RevokeAcmeAccountCommandInput;
45
+ output: RevokeAcmeAccountCommandOutput;
46
+ };
47
+ };
48
+ }
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import { RevokeAcmeExternalAccountBindingRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface RevokeAcmeExternalAccountBindingCommandInput
12
+ extends RevokeAcmeExternalAccountBindingRequest {}
13
+ export interface RevokeAcmeExternalAccountBindingCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const RevokeAcmeExternalAccountBindingCommand_base: {
16
+ new (
17
+ input: RevokeAcmeExternalAccountBindingCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ RevokeAcmeExternalAccountBindingCommandInput,
20
+ RevokeAcmeExternalAccountBindingCommandOutput,
21
+ ACMClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: RevokeAcmeExternalAccountBindingCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ RevokeAcmeExternalAccountBindingCommandInput,
29
+ RevokeAcmeExternalAccountBindingCommandOutput,
30
+ ACMClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class RevokeAcmeExternalAccountBindingCommand extends RevokeAcmeExternalAccountBindingCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: RevokeAcmeExternalAccountBindingRequest;
42
+ output: {};
43
+ };
44
+ sdk: {
45
+ input: RevokeAcmeExternalAccountBindingCommandInput;
46
+ output: RevokeAcmeExternalAccountBindingCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import { TagResourceRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const TagResourceCommand_base: {
14
+ new (
15
+ input: TagResourceCommandInput
16
+ ): import("@smithy/core/client").CommandImpl<
17
+ TagResourceCommandInput,
18
+ TagResourceCommandOutput,
19
+ ACMClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: TagResourceCommandInput
25
+ ): import("@smithy/core/client").CommandImpl<
26
+ TagResourceCommandInput,
27
+ TagResourceCommandOutput,
28
+ ACMClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): {
33
+ [x: string]: unknown;
34
+ };
35
+ };
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import { UntagResourceRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
12
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const UntagResourceCommand_base: {
14
+ new (
15
+ input: UntagResourceCommandInput
16
+ ): import("@smithy/core/client").CommandImpl<
17
+ UntagResourceCommandInput,
18
+ UntagResourceCommandOutput,
19
+ ACMClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: UntagResourceCommandInput
25
+ ): import("@smithy/core/client").CommandImpl<
26
+ UntagResourceCommandInput,
27
+ UntagResourceCommandOutput,
28
+ ACMClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): {
33
+ [x: string]: unknown;
34
+ };
35
+ };
36
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UntagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: UntagResourceCommandInput;
44
+ output: UntagResourceCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import { UpdateAcmeDomainValidationRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateAcmeDomainValidationCommandInput
12
+ extends UpdateAcmeDomainValidationRequest {}
13
+ export interface UpdateAcmeDomainValidationCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const UpdateAcmeDomainValidationCommand_base: {
16
+ new (
17
+ input: UpdateAcmeDomainValidationCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ UpdateAcmeDomainValidationCommandInput,
20
+ UpdateAcmeDomainValidationCommandOutput,
21
+ ACMClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateAcmeDomainValidationCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ UpdateAcmeDomainValidationCommandInput,
29
+ UpdateAcmeDomainValidationCommandOutput,
30
+ ACMClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class UpdateAcmeDomainValidationCommand extends UpdateAcmeDomainValidationCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: UpdateAcmeDomainValidationRequest;
42
+ output: {};
43
+ };
44
+ sdk: {
45
+ input: UpdateAcmeDomainValidationCommandInput;
46
+ output: UpdateAcmeDomainValidationCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -0,0 +1,48 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ACMClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ACMClient";
8
+ import { UpdateAcmeEndpointRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateAcmeEndpointCommandInput
12
+ extends UpdateAcmeEndpointRequest {}
13
+ export interface UpdateAcmeEndpointCommandOutput extends __MetadataBearer {}
14
+ declare const UpdateAcmeEndpointCommand_base: {
15
+ new (
16
+ input: UpdateAcmeEndpointCommandInput
17
+ ): import("@smithy/core/client").CommandImpl<
18
+ UpdateAcmeEndpointCommandInput,
19
+ UpdateAcmeEndpointCommandOutput,
20
+ ACMClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ input: UpdateAcmeEndpointCommandInput
26
+ ): import("@smithy/core/client").CommandImpl<
27
+ UpdateAcmeEndpointCommandInput,
28
+ UpdateAcmeEndpointCommandOutput,
29
+ ACMClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): {
34
+ [x: string]: unknown;
35
+ };
36
+ };
37
+ export declare class UpdateAcmeEndpointCommand extends UpdateAcmeEndpointCommand_base {
38
+ protected static __types: {
39
+ api: {
40
+ input: UpdateAcmeEndpointRequest;
41
+ output: {};
42
+ };
43
+ sdk: {
44
+ input: UpdateAcmeEndpointCommandInput;
45
+ output: UpdateAcmeEndpointCommandOutput;
46
+ };
47
+ };
48
+ }