@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
@@ -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,47 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ACMClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./ACMClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ ACMClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ ACMClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _ep1: EndpointParameterInstructions;
42
+ export declare const _mw0: (
43
+ Command: any,
44
+ cs: any,
45
+ config: any,
46
+ o: any
47
+ ) => never[];
@@ -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 { AddTagsToCertificateRequest } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface AddTagsToCertificateCommandInput
12
5
  extends AddTagsToCertificateRequest {}
13
6
  export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {}
@@ -17,22 +10,20 @@ declare const AddTagsToCertificateCommand_base: {
17
10
  ): import("@smithy/core/client").CommandImpl<
18
11
  AddTagsToCertificateCommandInput,
19
12
  AddTagsToCertificateCommandOutput,
20
- ACMClientResolvedConfig,
21
- ServiceInputTypes,
22
- ServiceOutputTypes
13
+ import("..").ACMClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
23
16
  >;
24
17
  new (
25
18
  input: AddTagsToCertificateCommandInput
26
19
  ): import("@smithy/core/client").CommandImpl<
27
20
  AddTagsToCertificateCommandInput,
28
21
  AddTagsToCertificateCommandOutput,
29
- ACMClientResolvedConfig,
30
- ServiceInputTypes,
31
- ServiceOutputTypes
22
+ import("..").ACMClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
32
25
  >;
33
- getEndpointParameterInstructions(): {
34
- [x: string]: unknown;
35
- };
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
36
27
  };
37
28
  export declare class AddTagsToCertificateCommand extends AddTagsToCertificateCommand_base {
38
29
  protected static __types: {
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ CreateAcmeDomainValidationRequest,
4
+ CreateAcmeDomainValidationResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface CreateAcmeDomainValidationCommandInput
8
+ extends CreateAcmeDomainValidationRequest {}
9
+ export interface CreateAcmeDomainValidationCommandOutput
10
+ extends CreateAcmeDomainValidationResponse,
11
+ __MetadataBearer {}
12
+ declare const CreateAcmeDomainValidationCommand_base: {
13
+ new (
14
+ input: CreateAcmeDomainValidationCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ CreateAcmeDomainValidationCommandInput,
17
+ CreateAcmeDomainValidationCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: CreateAcmeDomainValidationCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ CreateAcmeDomainValidationCommandInput,
26
+ CreateAcmeDomainValidationCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class CreateAcmeDomainValidationCommand extends CreateAcmeDomainValidationCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: CreateAcmeDomainValidationRequest;
37
+ output: CreateAcmeDomainValidationResponse;
38
+ };
39
+ sdk: {
40
+ input: CreateAcmeDomainValidationCommandInput;
41
+ output: CreateAcmeDomainValidationCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ CreateAcmeEndpointRequest,
4
+ CreateAcmeEndpointResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface CreateAcmeEndpointCommandInput
8
+ extends CreateAcmeEndpointRequest {}
9
+ export interface CreateAcmeEndpointCommandOutput
10
+ extends CreateAcmeEndpointResponse,
11
+ __MetadataBearer {}
12
+ declare const CreateAcmeEndpointCommand_base: {
13
+ new (
14
+ input: CreateAcmeEndpointCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ CreateAcmeEndpointCommandInput,
17
+ CreateAcmeEndpointCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: CreateAcmeEndpointCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ CreateAcmeEndpointCommandInput,
26
+ CreateAcmeEndpointCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class CreateAcmeEndpointCommand extends CreateAcmeEndpointCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: CreateAcmeEndpointRequest;
37
+ output: CreateAcmeEndpointResponse;
38
+ };
39
+ sdk: {
40
+ input: CreateAcmeEndpointCommandInput;
41
+ output: CreateAcmeEndpointCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ CreateAcmeExternalAccountBindingRequest,
4
+ CreateAcmeExternalAccountBindingResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface CreateAcmeExternalAccountBindingCommandInput
8
+ extends CreateAcmeExternalAccountBindingRequest {}
9
+ export interface CreateAcmeExternalAccountBindingCommandOutput
10
+ extends CreateAcmeExternalAccountBindingResponse,
11
+ __MetadataBearer {}
12
+ declare const CreateAcmeExternalAccountBindingCommand_base: {
13
+ new (
14
+ input: CreateAcmeExternalAccountBindingCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ CreateAcmeExternalAccountBindingCommandInput,
17
+ CreateAcmeExternalAccountBindingCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: CreateAcmeExternalAccountBindingCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ CreateAcmeExternalAccountBindingCommandInput,
26
+ CreateAcmeExternalAccountBindingCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class CreateAcmeExternalAccountBindingCommand extends CreateAcmeExternalAccountBindingCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: CreateAcmeExternalAccountBindingRequest;
37
+ output: CreateAcmeExternalAccountBindingResponse;
38
+ };
39
+ sdk: {
40
+ input: CreateAcmeExternalAccountBindingCommandInput;
41
+ output: CreateAcmeExternalAccountBindingCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -0,0 +1,40 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { DeleteAcmeDomainValidationRequest } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface DeleteAcmeDomainValidationCommandInput
5
+ extends DeleteAcmeDomainValidationRequest {}
6
+ export interface DeleteAcmeDomainValidationCommandOutput
7
+ extends __MetadataBearer {}
8
+ declare const DeleteAcmeDomainValidationCommand_base: {
9
+ new (
10
+ input: DeleteAcmeDomainValidationCommandInput
11
+ ): import("@smithy/core/client").CommandImpl<
12
+ DeleteAcmeDomainValidationCommandInput,
13
+ DeleteAcmeDomainValidationCommandOutput,
14
+ import("..").ACMClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
17
+ >;
18
+ new (
19
+ input: DeleteAcmeDomainValidationCommandInput
20
+ ): import("@smithy/core/client").CommandImpl<
21
+ DeleteAcmeDomainValidationCommandInput,
22
+ DeleteAcmeDomainValidationCommandOutput,
23
+ import("..").ACMClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
+ };
29
+ export declare class DeleteAcmeDomainValidationCommand extends DeleteAcmeDomainValidationCommand_base {
30
+ protected static __types: {
31
+ api: {
32
+ input: DeleteAcmeDomainValidationRequest;
33
+ output: {};
34
+ };
35
+ sdk: {
36
+ input: DeleteAcmeDomainValidationCommandInput;
37
+ output: DeleteAcmeDomainValidationCommandOutput;
38
+ };
39
+ };
40
+ }
@@ -0,0 +1,39 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { DeleteAcmeEndpointRequest } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface DeleteAcmeEndpointCommandInput
5
+ extends DeleteAcmeEndpointRequest {}
6
+ export interface DeleteAcmeEndpointCommandOutput extends __MetadataBearer {}
7
+ declare const DeleteAcmeEndpointCommand_base: {
8
+ new (
9
+ input: DeleteAcmeEndpointCommandInput
10
+ ): import("@smithy/core/client").CommandImpl<
11
+ DeleteAcmeEndpointCommandInput,
12
+ DeleteAcmeEndpointCommandOutput,
13
+ import("..").ACMClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
16
+ >;
17
+ new (
18
+ input: DeleteAcmeEndpointCommandInput
19
+ ): import("@smithy/core/client").CommandImpl<
20
+ DeleteAcmeEndpointCommandInput,
21
+ DeleteAcmeEndpointCommandOutput,
22
+ import("..").ACMClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
25
+ >;
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
27
+ };
28
+ export declare class DeleteAcmeEndpointCommand extends DeleteAcmeEndpointCommand_base {
29
+ protected static __types: {
30
+ api: {
31
+ input: DeleteAcmeEndpointRequest;
32
+ output: {};
33
+ };
34
+ sdk: {
35
+ input: DeleteAcmeEndpointCommandInput;
36
+ output: DeleteAcmeEndpointCommandOutput;
37
+ };
38
+ };
39
+ }
@@ -0,0 +1,40 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { DeleteAcmeExternalAccountBindingRequest } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface DeleteAcmeExternalAccountBindingCommandInput
5
+ extends DeleteAcmeExternalAccountBindingRequest {}
6
+ export interface DeleteAcmeExternalAccountBindingCommandOutput
7
+ extends __MetadataBearer {}
8
+ declare const DeleteAcmeExternalAccountBindingCommand_base: {
9
+ new (
10
+ input: DeleteAcmeExternalAccountBindingCommandInput
11
+ ): import("@smithy/core/client").CommandImpl<
12
+ DeleteAcmeExternalAccountBindingCommandInput,
13
+ DeleteAcmeExternalAccountBindingCommandOutput,
14
+ import("..").ACMClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
17
+ >;
18
+ new (
19
+ input: DeleteAcmeExternalAccountBindingCommandInput
20
+ ): import("@smithy/core/client").CommandImpl<
21
+ DeleteAcmeExternalAccountBindingCommandInput,
22
+ DeleteAcmeExternalAccountBindingCommandOutput,
23
+ import("..").ACMClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
+ };
29
+ export declare class DeleteAcmeExternalAccountBindingCommand extends DeleteAcmeExternalAccountBindingCommand_base {
30
+ protected static __types: {
31
+ api: {
32
+ input: DeleteAcmeExternalAccountBindingRequest;
33
+ output: {};
34
+ };
35
+ sdk: {
36
+ input: DeleteAcmeExternalAccountBindingCommandInput;
37
+ output: DeleteAcmeExternalAccountBindingCommandOutput;
38
+ };
39
+ };
40
+ }
@@ -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 { DeleteCertificateRequest } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteCertificateCommandInput
12
5
  extends DeleteCertificateRequest {}
13
6
  export interface DeleteCertificateCommandOutput extends __MetadataBearer {}
@@ -17,22 +10,20 @@ declare const DeleteCertificateCommand_base: {
17
10
  ): import("@smithy/core/client").CommandImpl<
18
11
  DeleteCertificateCommandInput,
19
12
  DeleteCertificateCommandOutput,
20
- ACMClientResolvedConfig,
21
- ServiceInputTypes,
22
- ServiceOutputTypes
13
+ import("..").ACMClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
23
16
  >;
24
17
  new (
25
18
  input: DeleteCertificateCommandInput
26
19
  ): import("@smithy/core/client").CommandImpl<
27
20
  DeleteCertificateCommandInput,
28
21
  DeleteCertificateCommandOutput,
29
- ACMClientResolvedConfig,
30
- ServiceInputTypes,
31
- ServiceOutputTypes
22
+ import("..").ACMClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
32
25
  >;
33
- getEndpointParameterInstructions(): {
34
- [x: string]: unknown;
35
- };
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
36
27
  };
37
28
  export declare class DeleteCertificateCommand extends DeleteCertificateCommand_base {
38
29
  protected static __types: {
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ DescribeAcmeAccountRequest,
4
+ DescribeAcmeAccountResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface DescribeAcmeAccountCommandInput
8
+ extends DescribeAcmeAccountRequest {}
9
+ export interface DescribeAcmeAccountCommandOutput
10
+ extends DescribeAcmeAccountResponse,
11
+ __MetadataBearer {}
12
+ declare const DescribeAcmeAccountCommand_base: {
13
+ new (
14
+ input: DescribeAcmeAccountCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ DescribeAcmeAccountCommandInput,
17
+ DescribeAcmeAccountCommandOutput,
18
+ import("..").ACMClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: DescribeAcmeAccountCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ DescribeAcmeAccountCommandInput,
26
+ DescribeAcmeAccountCommandOutput,
27
+ import("..").ACMClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class DescribeAcmeAccountCommand extends DescribeAcmeAccountCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: DescribeAcmeAccountRequest;
37
+ output: DescribeAcmeAccountResponse;
38
+ };
39
+ sdk: {
40
+ input: DescribeAcmeAccountCommandInput;
41
+ output: DescribeAcmeAccountCommandOutput;
42
+ };
43
+ };
44
+ }