@aws-sdk/client-acm 3.1076.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 (166) hide show
  1. package/README.md +161 -7
  2. package/dist-cjs/index.js +1406 -152
  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 +5 -1
  113. package/dist-types/runtimeConfig.d.ts +5 -1
  114. package/dist-types/runtimeConfig.native.d.ts +5 -1
  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 +11 -1
  152. package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
  153. package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
  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 +6 -8
@@ -40,10 +40,50 @@ import {
40
40
  AddTagsToCertificateCommandInput,
41
41
  AddTagsToCertificateCommandOutput,
42
42
  } from "./commands/AddTagsToCertificateCommand";
43
+ import {
44
+ CreateAcmeDomainValidationCommandInput,
45
+ CreateAcmeDomainValidationCommandOutput,
46
+ } from "./commands/CreateAcmeDomainValidationCommand";
47
+ import {
48
+ CreateAcmeEndpointCommandInput,
49
+ CreateAcmeEndpointCommandOutput,
50
+ } from "./commands/CreateAcmeEndpointCommand";
51
+ import {
52
+ CreateAcmeExternalAccountBindingCommandInput,
53
+ CreateAcmeExternalAccountBindingCommandOutput,
54
+ } from "./commands/CreateAcmeExternalAccountBindingCommand";
55
+ import {
56
+ DeleteAcmeDomainValidationCommandInput,
57
+ DeleteAcmeDomainValidationCommandOutput,
58
+ } from "./commands/DeleteAcmeDomainValidationCommand";
59
+ import {
60
+ DeleteAcmeEndpointCommandInput,
61
+ DeleteAcmeEndpointCommandOutput,
62
+ } from "./commands/DeleteAcmeEndpointCommand";
63
+ import {
64
+ DeleteAcmeExternalAccountBindingCommandInput,
65
+ DeleteAcmeExternalAccountBindingCommandOutput,
66
+ } from "./commands/DeleteAcmeExternalAccountBindingCommand";
43
67
  import {
44
68
  DeleteCertificateCommandInput,
45
69
  DeleteCertificateCommandOutput,
46
70
  } from "./commands/DeleteCertificateCommand";
71
+ import {
72
+ DescribeAcmeAccountCommandInput,
73
+ DescribeAcmeAccountCommandOutput,
74
+ } from "./commands/DescribeAcmeAccountCommand";
75
+ import {
76
+ DescribeAcmeDomainValidationCommandInput,
77
+ DescribeAcmeDomainValidationCommandOutput,
78
+ } from "./commands/DescribeAcmeDomainValidationCommand";
79
+ import {
80
+ DescribeAcmeEndpointCommandInput,
81
+ DescribeAcmeEndpointCommandOutput,
82
+ } from "./commands/DescribeAcmeEndpointCommand";
83
+ import {
84
+ DescribeAcmeExternalAccountBindingCommandInput,
85
+ DescribeAcmeExternalAccountBindingCommandOutput,
86
+ } from "./commands/DescribeAcmeExternalAccountBindingCommand";
47
87
  import {
48
88
  DescribeCertificateCommandInput,
49
89
  DescribeCertificateCommandOutput,
@@ -56,6 +96,10 @@ import {
56
96
  GetAccountConfigurationCommandInput,
57
97
  GetAccountConfigurationCommandOutput,
58
98
  } from "./commands/GetAccountConfigurationCommand";
99
+ import {
100
+ GetAcmeExternalAccountBindingCredentialsCommandInput,
101
+ GetAcmeExternalAccountBindingCredentialsCommandOutput,
102
+ } from "./commands/GetAcmeExternalAccountBindingCredentialsCommand";
59
103
  import {
60
104
  GetCertificateCommandInput,
61
105
  GetCertificateCommandOutput,
@@ -64,6 +108,22 @@ import {
64
108
  ImportCertificateCommandInput,
65
109
  ImportCertificateCommandOutput,
66
110
  } from "./commands/ImportCertificateCommand";
111
+ import {
112
+ ListAcmeAccountsCommandInput,
113
+ ListAcmeAccountsCommandOutput,
114
+ } from "./commands/ListAcmeAccountsCommand";
115
+ import {
116
+ ListAcmeDomainValidationsCommandInput,
117
+ ListAcmeDomainValidationsCommandOutput,
118
+ } from "./commands/ListAcmeDomainValidationsCommand";
119
+ import {
120
+ ListAcmeEndpointsCommandInput,
121
+ ListAcmeEndpointsCommandOutput,
122
+ } from "./commands/ListAcmeEndpointsCommand";
123
+ import {
124
+ ListAcmeExternalAccountBindingsCommandInput,
125
+ ListAcmeExternalAccountBindingsCommandOutput,
126
+ } from "./commands/ListAcmeExternalAccountBindingsCommand";
67
127
  import {
68
128
  ListCertificatesCommandInput,
69
129
  ListCertificatesCommandOutput,
@@ -72,6 +132,10 @@ import {
72
132
  ListTagsForCertificateCommandInput,
73
133
  ListTagsForCertificateCommandOutput,
74
134
  } from "./commands/ListTagsForCertificateCommand";
135
+ import {
136
+ ListTagsForResourceCommandInput,
137
+ ListTagsForResourceCommandOutput,
138
+ } from "./commands/ListTagsForResourceCommand";
75
139
  import {
76
140
  PutAccountConfigurationCommandInput,
77
141
  PutAccountConfigurationCommandOutput,
@@ -92,6 +156,14 @@ import {
92
156
  ResendValidationEmailCommandInput,
93
157
  ResendValidationEmailCommandOutput,
94
158
  } from "./commands/ResendValidationEmailCommand";
159
+ import {
160
+ RevokeAcmeAccountCommandInput,
161
+ RevokeAcmeAccountCommandOutput,
162
+ } from "./commands/RevokeAcmeAccountCommand";
163
+ import {
164
+ RevokeAcmeExternalAccountBindingCommandInput,
165
+ RevokeAcmeExternalAccountBindingCommandOutput,
166
+ } from "./commands/RevokeAcmeExternalAccountBindingCommand";
95
167
  import {
96
168
  RevokeCertificateCommandInput,
97
169
  RevokeCertificateCommandOutput,
@@ -100,6 +172,22 @@ import {
100
172
  SearchCertificatesCommandInput,
101
173
  SearchCertificatesCommandOutput,
102
174
  } from "./commands/SearchCertificatesCommand";
175
+ import {
176
+ TagResourceCommandInput,
177
+ TagResourceCommandOutput,
178
+ } from "./commands/TagResourceCommand";
179
+ import {
180
+ UntagResourceCommandInput,
181
+ UntagResourceCommandOutput,
182
+ } from "./commands/UntagResourceCommand";
183
+ import {
184
+ UpdateAcmeDomainValidationCommandInput,
185
+ UpdateAcmeDomainValidationCommandOutput,
186
+ } from "./commands/UpdateAcmeDomainValidationCommand";
187
+ import {
188
+ UpdateAcmeEndpointCommandInput,
189
+ UpdateAcmeEndpointCommandOutput,
190
+ } from "./commands/UpdateAcmeEndpointCommand";
103
191
  import {
104
192
  UpdateCertificateOptionsCommandInput,
105
193
  UpdateCertificateOptionsCommandOutput,
@@ -113,39 +201,83 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
113
201
  export { __Client };
114
202
  export type ServiceInputTypes =
115
203
  | AddTagsToCertificateCommandInput
204
+ | CreateAcmeDomainValidationCommandInput
205
+ | CreateAcmeEndpointCommandInput
206
+ | CreateAcmeExternalAccountBindingCommandInput
207
+ | DeleteAcmeDomainValidationCommandInput
208
+ | DeleteAcmeEndpointCommandInput
209
+ | DeleteAcmeExternalAccountBindingCommandInput
116
210
  | DeleteCertificateCommandInput
211
+ | DescribeAcmeAccountCommandInput
212
+ | DescribeAcmeDomainValidationCommandInput
213
+ | DescribeAcmeEndpointCommandInput
214
+ | DescribeAcmeExternalAccountBindingCommandInput
117
215
  | DescribeCertificateCommandInput
118
216
  | ExportCertificateCommandInput
119
217
  | GetAccountConfigurationCommandInput
218
+ | GetAcmeExternalAccountBindingCredentialsCommandInput
120
219
  | GetCertificateCommandInput
121
220
  | ImportCertificateCommandInput
221
+ | ListAcmeAccountsCommandInput
222
+ | ListAcmeDomainValidationsCommandInput
223
+ | ListAcmeEndpointsCommandInput
224
+ | ListAcmeExternalAccountBindingsCommandInput
122
225
  | ListCertificatesCommandInput
123
226
  | ListTagsForCertificateCommandInput
227
+ | ListTagsForResourceCommandInput
124
228
  | PutAccountConfigurationCommandInput
125
229
  | RemoveTagsFromCertificateCommandInput
126
230
  | RenewCertificateCommandInput
127
231
  | RequestCertificateCommandInput
128
232
  | ResendValidationEmailCommandInput
233
+ | RevokeAcmeAccountCommandInput
234
+ | RevokeAcmeExternalAccountBindingCommandInput
129
235
  | RevokeCertificateCommandInput
130
236
  | SearchCertificatesCommandInput
237
+ | TagResourceCommandInput
238
+ | UntagResourceCommandInput
239
+ | UpdateAcmeDomainValidationCommandInput
240
+ | UpdateAcmeEndpointCommandInput
131
241
  | UpdateCertificateOptionsCommandInput;
132
242
  export type ServiceOutputTypes =
133
243
  | AddTagsToCertificateCommandOutput
244
+ | CreateAcmeDomainValidationCommandOutput
245
+ | CreateAcmeEndpointCommandOutput
246
+ | CreateAcmeExternalAccountBindingCommandOutput
247
+ | DeleteAcmeDomainValidationCommandOutput
248
+ | DeleteAcmeEndpointCommandOutput
249
+ | DeleteAcmeExternalAccountBindingCommandOutput
134
250
  | DeleteCertificateCommandOutput
251
+ | DescribeAcmeAccountCommandOutput
252
+ | DescribeAcmeDomainValidationCommandOutput
253
+ | DescribeAcmeEndpointCommandOutput
254
+ | DescribeAcmeExternalAccountBindingCommandOutput
135
255
  | DescribeCertificateCommandOutput
136
256
  | ExportCertificateCommandOutput
137
257
  | GetAccountConfigurationCommandOutput
258
+ | GetAcmeExternalAccountBindingCredentialsCommandOutput
138
259
  | GetCertificateCommandOutput
139
260
  | ImportCertificateCommandOutput
261
+ | ListAcmeAccountsCommandOutput
262
+ | ListAcmeDomainValidationsCommandOutput
263
+ | ListAcmeEndpointsCommandOutput
264
+ | ListAcmeExternalAccountBindingsCommandOutput
140
265
  | ListCertificatesCommandOutput
141
266
  | ListTagsForCertificateCommandOutput
267
+ | ListTagsForResourceCommandOutput
142
268
  | PutAccountConfigurationCommandOutput
143
269
  | RemoveTagsFromCertificateCommandOutput
144
270
  | RenewCertificateCommandOutput
145
271
  | RequestCertificateCommandOutput
146
272
  | ResendValidationEmailCommandOutput
273
+ | RevokeAcmeAccountCommandOutput
274
+ | RevokeAcmeExternalAccountBindingCommandOutput
147
275
  | RevokeCertificateCommandOutput
148
276
  | SearchCertificatesCommandOutput
277
+ | TagResourceCommandOutput
278
+ | UntagResourceCommandOutput
279
+ | UpdateAcmeDomainValidationCommandOutput
280
+ | UpdateAcmeEndpointCommandOutput
149
281
  | UpdateCertificateOptionsCommandOutput;
150
282
  export interface ClientDefaults
151
283
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
@@ -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
+ CreateAcmeDomainValidationRequest,
10
+ CreateAcmeDomainValidationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAcmeDomainValidationCommandInput
15
+ extends CreateAcmeDomainValidationRequest {}
16
+ export interface CreateAcmeDomainValidationCommandOutput
17
+ extends CreateAcmeDomainValidationResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateAcmeDomainValidationCommand_base: {
20
+ new (
21
+ input: CreateAcmeDomainValidationCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ CreateAcmeDomainValidationCommandInput,
24
+ CreateAcmeDomainValidationCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateAcmeDomainValidationCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ CreateAcmeDomainValidationCommandInput,
33
+ CreateAcmeDomainValidationCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class CreateAcmeDomainValidationCommand extends CreateAcmeDomainValidationCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: CreateAcmeDomainValidationRequest;
46
+ output: CreateAcmeDomainValidationResponse;
47
+ };
48
+ sdk: {
49
+ input: CreateAcmeDomainValidationCommandInput;
50
+ output: CreateAcmeDomainValidationCommandOutput;
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
+ CreateAcmeEndpointRequest,
10
+ CreateAcmeEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAcmeEndpointCommandInput
15
+ extends CreateAcmeEndpointRequest {}
16
+ export interface CreateAcmeEndpointCommandOutput
17
+ extends CreateAcmeEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateAcmeEndpointCommand_base: {
20
+ new (
21
+ input: CreateAcmeEndpointCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ CreateAcmeEndpointCommandInput,
24
+ CreateAcmeEndpointCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateAcmeEndpointCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ CreateAcmeEndpointCommandInput,
33
+ CreateAcmeEndpointCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class CreateAcmeEndpointCommand extends CreateAcmeEndpointCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: CreateAcmeEndpointRequest;
46
+ output: CreateAcmeEndpointResponse;
47
+ };
48
+ sdk: {
49
+ input: CreateAcmeEndpointCommandInput;
50
+ output: CreateAcmeEndpointCommandOutput;
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
+ CreateAcmeExternalAccountBindingRequest,
10
+ CreateAcmeExternalAccountBindingResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAcmeExternalAccountBindingCommandInput
15
+ extends CreateAcmeExternalAccountBindingRequest {}
16
+ export interface CreateAcmeExternalAccountBindingCommandOutput
17
+ extends CreateAcmeExternalAccountBindingResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateAcmeExternalAccountBindingCommand_base: {
20
+ new (
21
+ input: CreateAcmeExternalAccountBindingCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ CreateAcmeExternalAccountBindingCommandInput,
24
+ CreateAcmeExternalAccountBindingCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateAcmeExternalAccountBindingCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ CreateAcmeExternalAccountBindingCommandInput,
33
+ CreateAcmeExternalAccountBindingCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class CreateAcmeExternalAccountBindingCommand extends CreateAcmeExternalAccountBindingCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: CreateAcmeExternalAccountBindingRequest;
46
+ output: CreateAcmeExternalAccountBindingResponse;
47
+ };
48
+ sdk: {
49
+ input: CreateAcmeExternalAccountBindingCommandInput;
50
+ output: CreateAcmeExternalAccountBindingCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -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 { DeleteAcmeDomainValidationRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteAcmeDomainValidationCommandInput
12
+ extends DeleteAcmeDomainValidationRequest {}
13
+ export interface DeleteAcmeDomainValidationCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteAcmeDomainValidationCommand_base: {
16
+ new (
17
+ input: DeleteAcmeDomainValidationCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ DeleteAcmeDomainValidationCommandInput,
20
+ DeleteAcmeDomainValidationCommandOutput,
21
+ ACMClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteAcmeDomainValidationCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ DeleteAcmeDomainValidationCommandInput,
29
+ DeleteAcmeDomainValidationCommandOutput,
30
+ ACMClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class DeleteAcmeDomainValidationCommand extends DeleteAcmeDomainValidationCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: DeleteAcmeDomainValidationRequest;
42
+ output: {};
43
+ };
44
+ sdk: {
45
+ input: DeleteAcmeDomainValidationCommandInput;
46
+ output: DeleteAcmeDomainValidationCommandOutput;
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 { DeleteAcmeEndpointRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteAcmeEndpointCommandInput
12
+ extends DeleteAcmeEndpointRequest {}
13
+ export interface DeleteAcmeEndpointCommandOutput extends __MetadataBearer {}
14
+ declare const DeleteAcmeEndpointCommand_base: {
15
+ new (
16
+ input: DeleteAcmeEndpointCommandInput
17
+ ): import("@smithy/core/client").CommandImpl<
18
+ DeleteAcmeEndpointCommandInput,
19
+ DeleteAcmeEndpointCommandOutput,
20
+ ACMClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ input: DeleteAcmeEndpointCommandInput
26
+ ): import("@smithy/core/client").CommandImpl<
27
+ DeleteAcmeEndpointCommandInput,
28
+ DeleteAcmeEndpointCommandOutput,
29
+ ACMClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): {
34
+ [x: string]: unknown;
35
+ };
36
+ };
37
+ export declare class DeleteAcmeEndpointCommand extends DeleteAcmeEndpointCommand_base {
38
+ protected static __types: {
39
+ api: {
40
+ input: DeleteAcmeEndpointRequest;
41
+ output: {};
42
+ };
43
+ sdk: {
44
+ input: DeleteAcmeEndpointCommandInput;
45
+ output: DeleteAcmeEndpointCommandOutput;
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 { DeleteAcmeExternalAccountBindingRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteAcmeExternalAccountBindingCommandInput
12
+ extends DeleteAcmeExternalAccountBindingRequest {}
13
+ export interface DeleteAcmeExternalAccountBindingCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteAcmeExternalAccountBindingCommand_base: {
16
+ new (
17
+ input: DeleteAcmeExternalAccountBindingCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ DeleteAcmeExternalAccountBindingCommandInput,
20
+ DeleteAcmeExternalAccountBindingCommandOutput,
21
+ ACMClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteAcmeExternalAccountBindingCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ DeleteAcmeExternalAccountBindingCommandInput,
29
+ DeleteAcmeExternalAccountBindingCommandOutput,
30
+ ACMClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class DeleteAcmeExternalAccountBindingCommand extends DeleteAcmeExternalAccountBindingCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: DeleteAcmeExternalAccountBindingRequest;
42
+ output: {};
43
+ };
44
+ sdk: {
45
+ input: DeleteAcmeExternalAccountBindingCommandInput;
46
+ output: DeleteAcmeExternalAccountBindingCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -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
+ DescribeAcmeAccountRequest,
10
+ DescribeAcmeAccountResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeAcmeAccountCommandInput
15
+ extends DescribeAcmeAccountRequest {}
16
+ export interface DescribeAcmeAccountCommandOutput
17
+ extends DescribeAcmeAccountResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeAcmeAccountCommand_base: {
20
+ new (
21
+ input: DescribeAcmeAccountCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ DescribeAcmeAccountCommandInput,
24
+ DescribeAcmeAccountCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeAcmeAccountCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ DescribeAcmeAccountCommandInput,
33
+ DescribeAcmeAccountCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class DescribeAcmeAccountCommand extends DescribeAcmeAccountCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: DescribeAcmeAccountRequest;
46
+ output: DescribeAcmeAccountResponse;
47
+ };
48
+ sdk: {
49
+ input: DescribeAcmeAccountCommandInput;
50
+ output: DescribeAcmeAccountCommandOutput;
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
+ DescribeAcmeDomainValidationRequest,
10
+ DescribeAcmeDomainValidationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeAcmeDomainValidationCommandInput
15
+ extends DescribeAcmeDomainValidationRequest {}
16
+ export interface DescribeAcmeDomainValidationCommandOutput
17
+ extends DescribeAcmeDomainValidationResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeAcmeDomainValidationCommand_base: {
20
+ new (
21
+ input: DescribeAcmeDomainValidationCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ DescribeAcmeDomainValidationCommandInput,
24
+ DescribeAcmeDomainValidationCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeAcmeDomainValidationCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ DescribeAcmeDomainValidationCommandInput,
33
+ DescribeAcmeDomainValidationCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class DescribeAcmeDomainValidationCommand extends DescribeAcmeDomainValidationCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: DescribeAcmeDomainValidationRequest;
46
+ output: DescribeAcmeDomainValidationResponse;
47
+ };
48
+ sdk: {
49
+ input: DescribeAcmeDomainValidationCommandInput;
50
+ output: DescribeAcmeDomainValidationCommandOutput;
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
+ DescribeAcmeEndpointRequest,
10
+ DescribeAcmeEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeAcmeEndpointCommandInput
15
+ extends DescribeAcmeEndpointRequest {}
16
+ export interface DescribeAcmeEndpointCommandOutput
17
+ extends DescribeAcmeEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeAcmeEndpointCommand_base: {
20
+ new (
21
+ input: DescribeAcmeEndpointCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ DescribeAcmeEndpointCommandInput,
24
+ DescribeAcmeEndpointCommandOutput,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeAcmeEndpointCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ DescribeAcmeEndpointCommandInput,
33
+ DescribeAcmeEndpointCommandOutput,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class DescribeAcmeEndpointCommand extends DescribeAcmeEndpointCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: DescribeAcmeEndpointRequest;
46
+ output: DescribeAcmeEndpointResponse;
47
+ };
48
+ sdk: {
49
+ input: DescribeAcmeEndpointCommandInput;
50
+ output: DescribeAcmeEndpointCommandOutput;
51
+ };
52
+ };
53
+ }