@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
package/dist-es/ACM.js CHANGED
@@ -1,49 +1,109 @@
1
1
  import { createAggregatedClient } from "@smithy/core/client";
2
2
  import { ACMClient } from "./ACMClient";
3
3
  import { AddTagsToCertificateCommand, } from "./commands/AddTagsToCertificateCommand";
4
+ import { CreateAcmeDomainValidationCommand, } from "./commands/CreateAcmeDomainValidationCommand";
5
+ import { CreateAcmeEndpointCommand, } from "./commands/CreateAcmeEndpointCommand";
6
+ import { CreateAcmeExternalAccountBindingCommand, } from "./commands/CreateAcmeExternalAccountBindingCommand";
7
+ import { DeleteAcmeDomainValidationCommand, } from "./commands/DeleteAcmeDomainValidationCommand";
8
+ import { DeleteAcmeEndpointCommand, } from "./commands/DeleteAcmeEndpointCommand";
9
+ import { DeleteAcmeExternalAccountBindingCommand, } from "./commands/DeleteAcmeExternalAccountBindingCommand";
4
10
  import { DeleteCertificateCommand, } from "./commands/DeleteCertificateCommand";
11
+ import { DescribeAcmeAccountCommand, } from "./commands/DescribeAcmeAccountCommand";
12
+ import { DescribeAcmeDomainValidationCommand, } from "./commands/DescribeAcmeDomainValidationCommand";
13
+ import { DescribeAcmeEndpointCommand, } from "./commands/DescribeAcmeEndpointCommand";
14
+ import { DescribeAcmeExternalAccountBindingCommand, } from "./commands/DescribeAcmeExternalAccountBindingCommand";
5
15
  import { DescribeCertificateCommand, } from "./commands/DescribeCertificateCommand";
6
16
  import { ExportCertificateCommand, } from "./commands/ExportCertificateCommand";
7
17
  import { GetAccountConfigurationCommand, } from "./commands/GetAccountConfigurationCommand";
18
+ import { GetAcmeExternalAccountBindingCredentialsCommand, } from "./commands/GetAcmeExternalAccountBindingCredentialsCommand";
8
19
  import { GetCertificateCommand, } from "./commands/GetCertificateCommand";
9
20
  import { ImportCertificateCommand, } from "./commands/ImportCertificateCommand";
21
+ import { ListAcmeAccountsCommand, } from "./commands/ListAcmeAccountsCommand";
22
+ import { ListAcmeDomainValidationsCommand, } from "./commands/ListAcmeDomainValidationsCommand";
23
+ import { ListAcmeEndpointsCommand, } from "./commands/ListAcmeEndpointsCommand";
24
+ import { ListAcmeExternalAccountBindingsCommand, } from "./commands/ListAcmeExternalAccountBindingsCommand";
10
25
  import { ListCertificatesCommand, } from "./commands/ListCertificatesCommand";
11
26
  import { ListTagsForCertificateCommand, } from "./commands/ListTagsForCertificateCommand";
27
+ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
12
28
  import { PutAccountConfigurationCommand, } from "./commands/PutAccountConfigurationCommand";
13
29
  import { RemoveTagsFromCertificateCommand, } from "./commands/RemoveTagsFromCertificateCommand";
14
30
  import { RenewCertificateCommand, } from "./commands/RenewCertificateCommand";
15
31
  import { RequestCertificateCommand, } from "./commands/RequestCertificateCommand";
16
32
  import { ResendValidationEmailCommand, } from "./commands/ResendValidationEmailCommand";
33
+ import { RevokeAcmeAccountCommand, } from "./commands/RevokeAcmeAccountCommand";
34
+ import { RevokeAcmeExternalAccountBindingCommand, } from "./commands/RevokeAcmeExternalAccountBindingCommand";
17
35
  import { RevokeCertificateCommand, } from "./commands/RevokeCertificateCommand";
18
36
  import { SearchCertificatesCommand, } from "./commands/SearchCertificatesCommand";
37
+ import { TagResourceCommand, } from "./commands/TagResourceCommand";
38
+ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
39
+ import { UpdateAcmeDomainValidationCommand, } from "./commands/UpdateAcmeDomainValidationCommand";
40
+ import { UpdateAcmeEndpointCommand, } from "./commands/UpdateAcmeEndpointCommand";
19
41
  import { UpdateCertificateOptionsCommand, } from "./commands/UpdateCertificateOptionsCommand";
42
+ import { paginateListAcmeAccounts } from "./pagination/ListAcmeAccountsPaginator";
43
+ import { paginateListAcmeDomainValidations } from "./pagination/ListAcmeDomainValidationsPaginator";
44
+ import { paginateListAcmeEndpoints } from "./pagination/ListAcmeEndpointsPaginator";
45
+ import { paginateListAcmeExternalAccountBindings } from "./pagination/ListAcmeExternalAccountBindingsPaginator";
20
46
  import { paginateListCertificates } from "./pagination/ListCertificatesPaginator";
21
47
  import { paginateSearchCertificates } from "./pagination/SearchCertificatesPaginator";
48
+ import { waitUntilAcmeDomainValidationDeleted } from "./waiters/waitForAcmeDomainValidationDeleted";
49
+ import { waitUntilAcmeDomainValidationValidated } from "./waiters/waitForAcmeDomainValidationValidated";
50
+ import { waitUntilAcmeEndpointActive } from "./waiters/waitForAcmeEndpointActive";
51
+ import { waitUntilAcmeEndpointDeleted } from "./waiters/waitForAcmeEndpointDeleted";
22
52
  import { waitUntilCertificateValidated } from "./waiters/waitForCertificateValidated";
23
53
  const commands = {
24
54
  AddTagsToCertificateCommand,
55
+ CreateAcmeDomainValidationCommand,
56
+ CreateAcmeEndpointCommand,
57
+ CreateAcmeExternalAccountBindingCommand,
58
+ DeleteAcmeDomainValidationCommand,
59
+ DeleteAcmeEndpointCommand,
60
+ DeleteAcmeExternalAccountBindingCommand,
25
61
  DeleteCertificateCommand,
62
+ DescribeAcmeAccountCommand,
63
+ DescribeAcmeDomainValidationCommand,
64
+ DescribeAcmeEndpointCommand,
65
+ DescribeAcmeExternalAccountBindingCommand,
26
66
  DescribeCertificateCommand,
27
67
  ExportCertificateCommand,
28
68
  GetAccountConfigurationCommand,
69
+ GetAcmeExternalAccountBindingCredentialsCommand,
29
70
  GetCertificateCommand,
30
71
  ImportCertificateCommand,
72
+ ListAcmeAccountsCommand,
73
+ ListAcmeDomainValidationsCommand,
74
+ ListAcmeEndpointsCommand,
75
+ ListAcmeExternalAccountBindingsCommand,
31
76
  ListCertificatesCommand,
32
77
  ListTagsForCertificateCommand,
78
+ ListTagsForResourceCommand,
33
79
  PutAccountConfigurationCommand,
34
80
  RemoveTagsFromCertificateCommand,
35
81
  RenewCertificateCommand,
36
82
  RequestCertificateCommand,
37
83
  ResendValidationEmailCommand,
84
+ RevokeAcmeAccountCommand,
85
+ RevokeAcmeExternalAccountBindingCommand,
38
86
  RevokeCertificateCommand,
39
87
  SearchCertificatesCommand,
88
+ TagResourceCommand,
89
+ UntagResourceCommand,
90
+ UpdateAcmeDomainValidationCommand,
91
+ UpdateAcmeEndpointCommand,
40
92
  UpdateCertificateOptionsCommand,
41
93
  };
42
94
  const paginators = {
95
+ paginateListAcmeAccounts,
96
+ paginateListAcmeDomainValidations,
97
+ paginateListAcmeEndpoints,
98
+ paginateListAcmeExternalAccountBindings,
43
99
  paginateListCertificates,
44
100
  paginateSearchCertificates,
45
101
  };
46
102
  const waiters = {
103
+ waitUntilAcmeDomainValidationValidated,
104
+ waitUntilAcmeDomainValidationDeleted,
105
+ waitUntilAcmeEndpointActive,
106
+ waitUntilAcmeEndpointDeleted,
47
107
  waitUntilCertificateValidated,
48
108
  };
49
109
  export class ACM extends ACMClient {
@@ -0,0 +1,11 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "CertificateManager", "ACMClient", getEndpointPlugin);
5
+ export const _ep0 = {
6
+ ServiceType: { type: "staticContextParams", value: `ACM` },
7
+ };
8
+ export const _ep1 = {
9
+ ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
10
+ };
11
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { AddTagsToCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class AddTagsToCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "AddTagsToCertificate", {})
13
- .n("ACMClient", "AddTagsToCertificateCommand")
14
- .sc(AddTagsToCertificate$)
15
- .build() {
3
+ export class AddTagsToCertificateCommand extends command(_ep0, _mw0, "AddTagsToCertificate", AddTagsToCertificate$) {
16
4
  }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { CreateAcmeDomainValidation$ } from "../schemas/schemas_0";
3
+ export class CreateAcmeDomainValidationCommand extends command(_ep1, _mw0, "CreateAcmeDomainValidation", CreateAcmeDomainValidation$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { CreateAcmeEndpoint$ } from "../schemas/schemas_0";
3
+ export class CreateAcmeEndpointCommand extends command(_ep1, _mw0, "CreateAcmeEndpoint", CreateAcmeEndpoint$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { CreateAcmeExternalAccountBinding$ } from "../schemas/schemas_0";
3
+ export class CreateAcmeExternalAccountBindingCommand extends command(_ep1, _mw0, "CreateAcmeExternalAccountBinding", CreateAcmeExternalAccountBinding$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { DeleteAcmeDomainValidation$ } from "../schemas/schemas_0";
3
+ export class DeleteAcmeDomainValidationCommand extends command(_ep1, _mw0, "DeleteAcmeDomainValidation", DeleteAcmeDomainValidation$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { DeleteAcmeEndpoint$ } from "../schemas/schemas_0";
3
+ export class DeleteAcmeEndpointCommand extends command(_ep1, _mw0, "DeleteAcmeEndpoint", DeleteAcmeEndpoint$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { DeleteAcmeExternalAccountBinding$ } from "../schemas/schemas_0";
3
+ export class DeleteAcmeExternalAccountBindingCommand extends command(_ep1, _mw0, "DeleteAcmeExternalAccountBinding", DeleteAcmeExternalAccountBinding$) {
4
+ }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "DeleteCertificate", {})
13
- .n("ACMClient", "DeleteCertificateCommand")
14
- .sc(DeleteCertificate$)
15
- .build() {
3
+ export class DeleteCertificateCommand extends command(_ep0, _mw0, "DeleteCertificate", DeleteCertificate$) {
16
4
  }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { DescribeAcmeAccount$ } from "../schemas/schemas_0";
3
+ export class DescribeAcmeAccountCommand extends command(_ep1, _mw0, "DescribeAcmeAccount", DescribeAcmeAccount$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { DescribeAcmeDomainValidation$ } from "../schemas/schemas_0";
3
+ export class DescribeAcmeDomainValidationCommand extends command(_ep1, _mw0, "DescribeAcmeDomainValidation", DescribeAcmeDomainValidation$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { DescribeAcmeEndpoint$ } from "../schemas/schemas_0";
3
+ export class DescribeAcmeEndpointCommand extends command(_ep1, _mw0, "DescribeAcmeEndpoint", DescribeAcmeEndpoint$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { DescribeAcmeExternalAccountBinding$ } from "../schemas/schemas_0";
3
+ export class DescribeAcmeExternalAccountBindingCommand extends command(_ep1, _mw0, "DescribeAcmeExternalAccountBinding", DescribeAcmeExternalAccountBinding$) {
4
+ }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DescribeCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DescribeCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "DescribeCertificate", {})
13
- .n("ACMClient", "DescribeCertificateCommand")
14
- .sc(DescribeCertificate$)
15
- .build() {
3
+ export class DescribeCertificateCommand extends command(_ep0, _mw0, "DescribeCertificate", DescribeCertificate$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ExportCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ExportCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "ExportCertificate", {})
13
- .n("ACMClient", "ExportCertificateCommand")
14
- .sc(ExportCertificate$)
15
- .build() {
3
+ export class ExportCertificateCommand extends command(_ep0, _mw0, "ExportCertificate", ExportCertificate$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetAccountConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetAccountConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "GetAccountConfiguration", {})
13
- .n("ACMClient", "GetAccountConfigurationCommand")
14
- .sc(GetAccountConfiguration$)
15
- .build() {
3
+ export class GetAccountConfigurationCommand extends command(_ep0, _mw0, "GetAccountConfiguration", GetAccountConfiguration$) {
16
4
  }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { GetAcmeExternalAccountBindingCredentials$ } from "../schemas/schemas_0";
3
+ export class GetAcmeExternalAccountBindingCredentialsCommand extends command(_ep1, _mw0, "GetAcmeExternalAccountBindingCredentials", GetAcmeExternalAccountBindingCredentials$) {
4
+ }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "GetCertificate", {})
13
- .n("ACMClient", "GetCertificateCommand")
14
- .sc(GetCertificate$)
15
- .build() {
3
+ export class GetCertificateCommand extends command(_ep0, _mw0, "GetCertificate", GetCertificate$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ImportCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ImportCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "ImportCertificate", {})
13
- .n("ACMClient", "ImportCertificateCommand")
14
- .sc(ImportCertificate$)
15
- .build() {
3
+ export class ImportCertificateCommand extends command(_ep0, _mw0, "ImportCertificate", ImportCertificate$) {
16
4
  }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { ListAcmeAccounts$ } from "../schemas/schemas_0";
3
+ export class ListAcmeAccountsCommand extends command(_ep1, _mw0, "ListAcmeAccounts", ListAcmeAccounts$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { ListAcmeDomainValidations$ } from "../schemas/schemas_0";
3
+ export class ListAcmeDomainValidationsCommand extends command(_ep1, _mw0, "ListAcmeDomainValidations", ListAcmeDomainValidations$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { ListAcmeEndpoints$ } from "../schemas/schemas_0";
3
+ export class ListAcmeEndpointsCommand extends command(_ep1, _mw0, "ListAcmeEndpoints", ListAcmeEndpoints$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { ListAcmeExternalAccountBindings$ } from "../schemas/schemas_0";
3
+ export class ListAcmeExternalAccountBindingsCommand extends command(_ep1, _mw0, "ListAcmeExternalAccountBindings", ListAcmeExternalAccountBindings$) {
4
+ }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListCertificates$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListCertificatesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "ListCertificates", {})
13
- .n("ACMClient", "ListCertificatesCommand")
14
- .sc(ListCertificates$)
15
- .build() {
3
+ export class ListCertificatesCommand extends command(_ep0, _mw0, "ListCertificates", ListCertificates$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListTagsForCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListTagsForCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "ListTagsForCertificate", {})
13
- .n("ACMClient", "ListTagsForCertificateCommand")
14
- .sc(ListTagsForCertificate$)
15
- .build() {
3
+ export class ListTagsForCertificateCommand extends command(_ep0, _mw0, "ListTagsForCertificate", ListTagsForCertificate$) {
16
4
  }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
3
+ export class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
4
+ }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { PutAccountConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class PutAccountConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "PutAccountConfiguration", {})
13
- .n("ACMClient", "PutAccountConfigurationCommand")
14
- .sc(PutAccountConfiguration$)
15
- .build() {
3
+ export class PutAccountConfigurationCommand extends command(_ep0, _mw0, "PutAccountConfiguration", PutAccountConfiguration$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { RemoveTagsFromCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class RemoveTagsFromCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "RemoveTagsFromCertificate", {})
13
- .n("ACMClient", "RemoveTagsFromCertificateCommand")
14
- .sc(RemoveTagsFromCertificate$)
15
- .build() {
3
+ export class RemoveTagsFromCertificateCommand extends command(_ep0, _mw0, "RemoveTagsFromCertificate", RemoveTagsFromCertificate$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { RenewCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class RenewCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "RenewCertificate", {})
13
- .n("ACMClient", "RenewCertificateCommand")
14
- .sc(RenewCertificate$)
15
- .build() {
3
+ export class RenewCertificateCommand extends command(_ep0, _mw0, "RenewCertificate", RenewCertificate$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { RequestCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class RequestCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "RequestCertificate", {})
13
- .n("ACMClient", "RequestCertificateCommand")
14
- .sc(RequestCertificate$)
15
- .build() {
3
+ export class RequestCertificateCommand extends command(_ep0, _mw0, "RequestCertificate", RequestCertificate$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ResendValidationEmail$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ResendValidationEmailCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "ResendValidationEmail", {})
13
- .n("ACMClient", "ResendValidationEmailCommand")
14
- .sc(ResendValidationEmail$)
15
- .build() {
3
+ export class ResendValidationEmailCommand extends command(_ep0, _mw0, "ResendValidationEmail", ResendValidationEmail$) {
16
4
  }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { RevokeAcmeAccount$ } from "../schemas/schemas_0";
3
+ export class RevokeAcmeAccountCommand extends command(_ep1, _mw0, "RevokeAcmeAccount", RevokeAcmeAccount$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { RevokeAcmeExternalAccountBinding$ } from "../schemas/schemas_0";
3
+ export class RevokeAcmeExternalAccountBindingCommand extends command(_ep1, _mw0, "RevokeAcmeExternalAccountBinding", RevokeAcmeExternalAccountBinding$) {
4
+ }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { RevokeCertificate$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class RevokeCertificateCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "RevokeCertificate", {})
13
- .n("ACMClient", "RevokeCertificateCommand")
14
- .sc(RevokeCertificate$)
15
- .build() {
3
+ export class RevokeCertificateCommand extends command(_ep0, _mw0, "RevokeCertificate", RevokeCertificate$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { SearchCertificates$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SearchCertificatesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "SearchCertificates", {})
13
- .n("ACMClient", "SearchCertificatesCommand")
14
- .sc(SearchCertificates$)
15
- .build() {
3
+ export class SearchCertificatesCommand extends command(_ep0, _mw0, "SearchCertificates", SearchCertificates$) {
16
4
  }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { TagResource$ } from "../schemas/schemas_0";
3
+ export class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { UntagResource$ } from "../schemas/schemas_0";
3
+ export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { UpdateAcmeDomainValidation$ } from "../schemas/schemas_0";
3
+ export class UpdateAcmeDomainValidationCommand extends command(_ep1, _mw0, "UpdateAcmeDomainValidation", UpdateAcmeDomainValidation$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
2
+ import { UpdateAcmeEndpoint$ } from "../schemas/schemas_0";
3
+ export class UpdateAcmeEndpointCommand extends command(_ep1, _mw0, "UpdateAcmeEndpoint", UpdateAcmeEndpoint$) {
4
+ }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UpdateCertificateOptions$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdateCertificateOptionsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("CertificateManager", "UpdateCertificateOptions", {})
13
- .n("ACMClient", "UpdateCertificateOptionsCommand")
14
- .sc(UpdateCertificateOptions$)
15
- .build() {
3
+ export class UpdateCertificateOptionsCommand extends command(_ep0, _mw0, "UpdateCertificateOptions", UpdateCertificateOptions$) {
16
4
  }