@aws-sdk/client-mailmanager 3.581.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 (311) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +589 -0
  3. package/dist-cjs/MailManager.js +105 -0
  4. package/dist-cjs/MailManagerClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateAddonInstanceCommand.js +29 -0
  8. package/dist-cjs/commands/CreateAddonSubscriptionCommand.js +29 -0
  9. package/dist-cjs/commands/CreateArchiveCommand.js +29 -0
  10. package/dist-cjs/commands/CreateIngressPointCommand.js +29 -0
  11. package/dist-cjs/commands/CreateRelayCommand.js +29 -0
  12. package/dist-cjs/commands/CreateRuleSetCommand.js +29 -0
  13. package/dist-cjs/commands/CreateTrafficPolicyCommand.js +29 -0
  14. package/dist-cjs/commands/DeleteAddonInstanceCommand.js +28 -0
  15. package/dist-cjs/commands/DeleteAddonSubscriptionCommand.js +28 -0
  16. package/dist-cjs/commands/DeleteArchiveCommand.js +28 -0
  17. package/dist-cjs/commands/DeleteIngressPointCommand.js +28 -0
  18. package/dist-cjs/commands/DeleteRelayCommand.js +28 -0
  19. package/dist-cjs/commands/DeleteRuleSetCommand.js +28 -0
  20. package/dist-cjs/commands/DeleteTrafficPolicyCommand.js +28 -0
  21. package/dist-cjs/commands/GetAddonInstanceCommand.js +28 -0
  22. package/dist-cjs/commands/GetAddonSubscriptionCommand.js +28 -0
  23. package/dist-cjs/commands/GetArchiveCommand.js +28 -0
  24. package/dist-cjs/commands/GetArchiveExportCommand.js +28 -0
  25. package/dist-cjs/commands/GetArchiveMessageCommand.js +28 -0
  26. package/dist-cjs/commands/GetArchiveMessageContentCommand.js +28 -0
  27. package/dist-cjs/commands/GetArchiveSearchCommand.js +28 -0
  28. package/dist-cjs/commands/GetArchiveSearchResultsCommand.js +28 -0
  29. package/dist-cjs/commands/GetIngressPointCommand.js +28 -0
  30. package/dist-cjs/commands/GetRelayCommand.js +28 -0
  31. package/dist-cjs/commands/GetRuleSetCommand.js +29 -0
  32. package/dist-cjs/commands/GetTrafficPolicyCommand.js +28 -0
  33. package/dist-cjs/commands/ListAddonInstancesCommand.js +28 -0
  34. package/dist-cjs/commands/ListAddonSubscriptionsCommand.js +28 -0
  35. package/dist-cjs/commands/ListArchiveExportsCommand.js +28 -0
  36. package/dist-cjs/commands/ListArchiveSearchesCommand.js +28 -0
  37. package/dist-cjs/commands/ListArchivesCommand.js +28 -0
  38. package/dist-cjs/commands/ListIngressPointsCommand.js +28 -0
  39. package/dist-cjs/commands/ListRelaysCommand.js +28 -0
  40. package/dist-cjs/commands/ListRuleSetsCommand.js +28 -0
  41. package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
  42. package/dist-cjs/commands/ListTrafficPoliciesCommand.js +28 -0
  43. package/dist-cjs/commands/StartArchiveExportCommand.js +28 -0
  44. package/dist-cjs/commands/StartArchiveSearchCommand.js +28 -0
  45. package/dist-cjs/commands/StopArchiveExportCommand.js +28 -0
  46. package/dist-cjs/commands/StopArchiveSearchCommand.js +28 -0
  47. package/dist-cjs/commands/TagResourceCommand.js +29 -0
  48. package/dist-cjs/commands/UntagResourceCommand.js +29 -0
  49. package/dist-cjs/commands/UpdateArchiveCommand.js +28 -0
  50. package/dist-cjs/commands/UpdateIngressPointCommand.js +29 -0
  51. package/dist-cjs/commands/UpdateRelayCommand.js +28 -0
  52. package/dist-cjs/commands/UpdateRuleSetCommand.js +29 -0
  53. package/dist-cjs/commands/UpdateTrafficPolicyCommand.js +28 -0
  54. package/dist-cjs/commands/index.js +50 -0
  55. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  56. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  57. package/dist-cjs/endpoint/ruleset.js +7 -0
  58. package/dist-cjs/extensionConfiguration.js +2 -0
  59. package/dist-cjs/index.js +11 -0
  60. package/dist-cjs/models/MailManagerServiceException.js +12 -0
  61. package/dist-cjs/models/index.js +4 -0
  62. package/dist-cjs/models/models_0.js +582 -0
  63. package/dist-cjs/pagination/Interfaces.js +2 -0
  64. package/dist-cjs/pagination/ListAddonInstancesPaginator.js +7 -0
  65. package/dist-cjs/pagination/ListAddonSubscriptionsPaginator.js +7 -0
  66. package/dist-cjs/pagination/ListArchiveExportsPaginator.js +7 -0
  67. package/dist-cjs/pagination/ListArchiveSearchesPaginator.js +7 -0
  68. package/dist-cjs/pagination/ListArchivesPaginator.js +7 -0
  69. package/dist-cjs/pagination/ListIngressPointsPaginator.js +7 -0
  70. package/dist-cjs/pagination/ListRelaysPaginator.js +7 -0
  71. package/dist-cjs/pagination/ListRuleSetsPaginator.js +7 -0
  72. package/dist-cjs/pagination/ListTrafficPoliciesPaginator.js +7 -0
  73. package/dist-cjs/pagination/index.js +13 -0
  74. package/dist-cjs/protocols/Aws_json1_0.js +1615 -0
  75. package/dist-cjs/runtimeConfig.browser.js +39 -0
  76. package/dist-cjs/runtimeConfig.js +49 -0
  77. package/dist-cjs/runtimeConfig.native.js +15 -0
  78. package/dist-cjs/runtimeConfig.shared.js +34 -0
  79. package/dist-cjs/runtimeExtensions.js +25 -0
  80. package/dist-es/MailManager.js +101 -0
  81. package/dist-es/MailManagerClient.js +52 -0
  82. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  83. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  84. package/dist-es/commands/CreateAddonInstanceCommand.js +25 -0
  85. package/dist-es/commands/CreateAddonSubscriptionCommand.js +25 -0
  86. package/dist-es/commands/CreateArchiveCommand.js +25 -0
  87. package/dist-es/commands/CreateIngressPointCommand.js +25 -0
  88. package/dist-es/commands/CreateRelayCommand.js +25 -0
  89. package/dist-es/commands/CreateRuleSetCommand.js +25 -0
  90. package/dist-es/commands/CreateTrafficPolicyCommand.js +25 -0
  91. package/dist-es/commands/DeleteAddonInstanceCommand.js +24 -0
  92. package/dist-es/commands/DeleteAddonSubscriptionCommand.js +24 -0
  93. package/dist-es/commands/DeleteArchiveCommand.js +24 -0
  94. package/dist-es/commands/DeleteIngressPointCommand.js +24 -0
  95. package/dist-es/commands/DeleteRelayCommand.js +24 -0
  96. package/dist-es/commands/DeleteRuleSetCommand.js +24 -0
  97. package/dist-es/commands/DeleteTrafficPolicyCommand.js +24 -0
  98. package/dist-es/commands/GetAddonInstanceCommand.js +24 -0
  99. package/dist-es/commands/GetAddonSubscriptionCommand.js +24 -0
  100. package/dist-es/commands/GetArchiveCommand.js +24 -0
  101. package/dist-es/commands/GetArchiveExportCommand.js +24 -0
  102. package/dist-es/commands/GetArchiveMessageCommand.js +24 -0
  103. package/dist-es/commands/GetArchiveMessageContentCommand.js +24 -0
  104. package/dist-es/commands/GetArchiveSearchCommand.js +24 -0
  105. package/dist-es/commands/GetArchiveSearchResultsCommand.js +24 -0
  106. package/dist-es/commands/GetIngressPointCommand.js +24 -0
  107. package/dist-es/commands/GetRelayCommand.js +24 -0
  108. package/dist-es/commands/GetRuleSetCommand.js +25 -0
  109. package/dist-es/commands/GetTrafficPolicyCommand.js +24 -0
  110. package/dist-es/commands/ListAddonInstancesCommand.js +24 -0
  111. package/dist-es/commands/ListAddonSubscriptionsCommand.js +24 -0
  112. package/dist-es/commands/ListArchiveExportsCommand.js +24 -0
  113. package/dist-es/commands/ListArchiveSearchesCommand.js +24 -0
  114. package/dist-es/commands/ListArchivesCommand.js +24 -0
  115. package/dist-es/commands/ListIngressPointsCommand.js +24 -0
  116. package/dist-es/commands/ListRelaysCommand.js +24 -0
  117. package/dist-es/commands/ListRuleSetsCommand.js +24 -0
  118. package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
  119. package/dist-es/commands/ListTrafficPoliciesCommand.js +24 -0
  120. package/dist-es/commands/StartArchiveExportCommand.js +24 -0
  121. package/dist-es/commands/StartArchiveSearchCommand.js +24 -0
  122. package/dist-es/commands/StopArchiveExportCommand.js +24 -0
  123. package/dist-es/commands/StopArchiveSearchCommand.js +24 -0
  124. package/dist-es/commands/TagResourceCommand.js +25 -0
  125. package/dist-es/commands/UntagResourceCommand.js +25 -0
  126. package/dist-es/commands/UpdateArchiveCommand.js +24 -0
  127. package/dist-es/commands/UpdateIngressPointCommand.js +25 -0
  128. package/dist-es/commands/UpdateRelayCommand.js +24 -0
  129. package/dist-es/commands/UpdateRuleSetCommand.js +25 -0
  130. package/dist-es/commands/UpdateTrafficPolicyCommand.js +24 -0
  131. package/dist-es/commands/index.js +47 -0
  132. package/dist-es/endpoint/EndpointParameters.js +14 -0
  133. package/dist-es/endpoint/endpointResolver.js +10 -0
  134. package/dist-es/endpoint/ruleset.js +4 -0
  135. package/dist-es/extensionConfiguration.js +1 -0
  136. package/dist-es/index.js +6 -0
  137. package/dist-es/models/MailManagerServiceException.js +8 -0
  138. package/dist-es/models/index.js +1 -0
  139. package/dist-es/models/models_0.js +554 -0
  140. package/dist-es/pagination/Interfaces.js +1 -0
  141. package/dist-es/pagination/ListAddonInstancesPaginator.js +4 -0
  142. package/dist-es/pagination/ListAddonSubscriptionsPaginator.js +4 -0
  143. package/dist-es/pagination/ListArchiveExportsPaginator.js +4 -0
  144. package/dist-es/pagination/ListArchiveSearchesPaginator.js +4 -0
  145. package/dist-es/pagination/ListArchivesPaginator.js +4 -0
  146. package/dist-es/pagination/ListIngressPointsPaginator.js +4 -0
  147. package/dist-es/pagination/ListRelaysPaginator.js +4 -0
  148. package/dist-es/pagination/ListRuleSetsPaginator.js +4 -0
  149. package/dist-es/pagination/ListTrafficPoliciesPaginator.js +4 -0
  150. package/dist-es/pagination/index.js +10 -0
  151. package/dist-es/protocols/Aws_json1_0.js +1517 -0
  152. package/dist-es/runtimeConfig.browser.js +34 -0
  153. package/dist-es/runtimeConfig.js +44 -0
  154. package/dist-es/runtimeConfig.native.js +11 -0
  155. package/dist-es/runtimeConfig.shared.js +30 -0
  156. package/dist-es/runtimeExtensions.js +21 -0
  157. package/dist-types/MailManager.d.ts +353 -0
  158. package/dist-types/MailManagerClient.d.ts +225 -0
  159. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  160. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  161. package/dist-types/commands/CreateAddonInstanceCommand.d.ts +80 -0
  162. package/dist-types/commands/CreateAddonSubscriptionCommand.d.ts +77 -0
  163. package/dist-types/commands/CreateArchiveCommand.d.ts +85 -0
  164. package/dist-types/commands/CreateIngressPointCommand.d.ts +82 -0
  165. package/dist-types/commands/CreateRelayCommand.d.ts +82 -0
  166. package/dist-types/commands/CreateRuleSetCommand.d.ts +227 -0
  167. package/dist-types/commands/CreateTrafficPolicyCommand.d.ts +120 -0
  168. package/dist-types/commands/DeleteAddonInstanceCommand.d.ts +63 -0
  169. package/dist-types/commands/DeleteAddonSubscriptionCommand.d.ts +63 -0
  170. package/dist-types/commands/DeleteArchiveCommand.d.ts +73 -0
  171. package/dist-types/commands/DeleteIngressPointCommand.d.ts +66 -0
  172. package/dist-types/commands/DeleteRelayCommand.d.ts +66 -0
  173. package/dist-types/commands/DeleteRuleSetCommand.d.ts +63 -0
  174. package/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +66 -0
  175. package/dist-types/commands/GetAddonInstanceCommand.d.ts +68 -0
  176. package/dist-types/commands/GetAddonSubscriptionCommand.d.ts +67 -0
  177. package/dist-types/commands/GetArchiveCommand.d.ts +80 -0
  178. package/dist-types/commands/GetArchiveExportCommand.d.ts +122 -0
  179. package/dist-types/commands/GetArchiveMessageCommand.d.ts +70 -0
  180. package/dist-types/commands/GetArchiveMessageContentCommand.d.ts +74 -0
  181. package/dist-types/commands/GetArchiveSearchCommand.d.ts +117 -0
  182. package/dist-types/commands/GetArchiveSearchResultsCommand.d.ts +90 -0
  183. package/dist-types/commands/GetIngressPointCommand.d.ts +82 -0
  184. package/dist-types/commands/GetRelayCommand.d.ts +75 -0
  185. package/dist-types/commands/GetRuleSetCommand.d.ts +221 -0
  186. package/dist-types/commands/GetTrafficPolicyCommand.d.ts +114 -0
  187. package/dist-types/commands/ListAddonInstancesCommand.d.ts +72 -0
  188. package/dist-types/commands/ListAddonSubscriptionsCommand.d.ts +71 -0
  189. package/dist-types/commands/ListArchiveExportsCommand.d.ts +84 -0
  190. package/dist-types/commands/ListArchiveSearchesCommand.d.ts +84 -0
  191. package/dist-types/commands/ListArchivesCommand.d.ts +77 -0
  192. package/dist-types/commands/ListIngressPointsCommand.d.ts +72 -0
  193. package/dist-types/commands/ListRelaysCommand.d.ts +70 -0
  194. package/dist-types/commands/ListRuleSetsCommand.d.ts +70 -0
  195. package/dist-types/commands/ListTagsForResourceCommand.d.ts +70 -0
  196. package/dist-types/commands/ListTrafficPoliciesCommand.d.ts +70 -0
  197. package/dist-types/commands/StartArchiveExportCommand.d.ts +122 -0
  198. package/dist-types/commands/StartArchiveSearchCommand.d.ts +120 -0
  199. package/dist-types/commands/StopArchiveExportCommand.d.ts +66 -0
  200. package/dist-types/commands/StopArchiveSearchCommand.d.ts +66 -0
  201. package/dist-types/commands/TagResourceCommand.d.ts +75 -0
  202. package/dist-types/commands/UntagResourceCommand.d.ts +69 -0
  203. package/dist-types/commands/UpdateArchiveCommand.d.ts +79 -0
  204. package/dist-types/commands/UpdateIngressPointCommand.d.ts +74 -0
  205. package/dist-types/commands/UpdateRelayCommand.d.ts +73 -0
  206. package/dist-types/commands/UpdateRuleSetCommand.d.ts +219 -0
  207. package/dist-types/commands/UpdateTrafficPolicyCommand.d.ts +112 -0
  208. package/dist-types/commands/index.d.ts +47 -0
  209. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  210. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  211. package/dist-types/endpoint/ruleset.d.ts +2 -0
  212. package/dist-types/extensionConfiguration.d.ts +9 -0
  213. package/dist-types/index.d.ts +21 -0
  214. package/dist-types/models/MailManagerServiceException.d.ts +13 -0
  215. package/dist-types/models/index.d.ts +1 -0
  216. package/dist-types/models/models_0.d.ts +4046 -0
  217. package/dist-types/pagination/Interfaces.d.ts +8 -0
  218. package/dist-types/pagination/ListAddonInstancesPaginator.d.ts +7 -0
  219. package/dist-types/pagination/ListAddonSubscriptionsPaginator.d.ts +7 -0
  220. package/dist-types/pagination/ListArchiveExportsPaginator.d.ts +7 -0
  221. package/dist-types/pagination/ListArchiveSearchesPaginator.d.ts +7 -0
  222. package/dist-types/pagination/ListArchivesPaginator.d.ts +7 -0
  223. package/dist-types/pagination/ListIngressPointsPaginator.d.ts +7 -0
  224. package/dist-types/pagination/ListRelaysPaginator.d.ts +7 -0
  225. package/dist-types/pagination/ListRuleSetsPaginator.d.ts +7 -0
  226. package/dist-types/pagination/ListTrafficPoliciesPaginator.d.ts +7 -0
  227. package/dist-types/pagination/index.d.ts +10 -0
  228. package/dist-types/protocols/Aws_json1_0.d.ts +425 -0
  229. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  230. package/dist-types/runtimeConfig.d.ts +45 -0
  231. package/dist-types/runtimeConfig.native.d.ts +44 -0
  232. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  233. package/dist-types/runtimeExtensions.d.ts +17 -0
  234. package/dist-types/ts3.4/MailManager.d.ts +813 -0
  235. package/dist-types/ts3.4/MailManagerClient.d.ts +402 -0
  236. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  237. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  238. package/dist-types/ts3.4/commands/CreateAddonInstanceCommand.d.ts +39 -0
  239. package/dist-types/ts3.4/commands/CreateAddonSubscriptionCommand.d.ts +39 -0
  240. package/dist-types/ts3.4/commands/CreateArchiveCommand.d.ts +38 -0
  241. package/dist-types/ts3.4/commands/CreateIngressPointCommand.d.ts +39 -0
  242. package/dist-types/ts3.4/commands/CreateRelayCommand.d.ts +35 -0
  243. package/dist-types/ts3.4/commands/CreateRuleSetCommand.d.ts +38 -0
  244. package/dist-types/ts3.4/commands/CreateTrafficPolicyCommand.d.ts +39 -0
  245. package/dist-types/ts3.4/commands/DeleteAddonInstanceCommand.d.ts +39 -0
  246. package/dist-types/ts3.4/commands/DeleteAddonSubscriptionCommand.d.ts +39 -0
  247. package/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +38 -0
  248. package/dist-types/ts3.4/commands/DeleteIngressPointCommand.d.ts +39 -0
  249. package/dist-types/ts3.4/commands/DeleteRelayCommand.d.ts +35 -0
  250. package/dist-types/ts3.4/commands/DeleteRuleSetCommand.d.ts +38 -0
  251. package/dist-types/ts3.4/commands/DeleteTrafficPolicyCommand.d.ts +39 -0
  252. package/dist-types/ts3.4/commands/GetAddonInstanceCommand.d.ts +38 -0
  253. package/dist-types/ts3.4/commands/GetAddonSubscriptionCommand.d.ts +39 -0
  254. package/dist-types/ts3.4/commands/GetArchiveCommand.d.ts +35 -0
  255. package/dist-types/ts3.4/commands/GetArchiveExportCommand.d.ts +38 -0
  256. package/dist-types/ts3.4/commands/GetArchiveMessageCommand.d.ts +39 -0
  257. package/dist-types/ts3.4/commands/GetArchiveMessageContentCommand.d.ts +39 -0
  258. package/dist-types/ts3.4/commands/GetArchiveSearchCommand.d.ts +38 -0
  259. package/dist-types/ts3.4/commands/GetArchiveSearchResultsCommand.d.ts +39 -0
  260. package/dist-types/ts3.4/commands/GetIngressPointCommand.d.ts +38 -0
  261. package/dist-types/ts3.4/commands/GetRelayCommand.d.ts +35 -0
  262. package/dist-types/ts3.4/commands/GetRuleSetCommand.d.ts +35 -0
  263. package/dist-types/ts3.4/commands/GetTrafficPolicyCommand.d.ts +38 -0
  264. package/dist-types/ts3.4/commands/ListAddonInstancesCommand.d.ts +39 -0
  265. package/dist-types/ts3.4/commands/ListAddonSubscriptionsCommand.d.ts +39 -0
  266. package/dist-types/ts3.4/commands/ListArchiveExportsCommand.d.ts +39 -0
  267. package/dist-types/ts3.4/commands/ListArchiveSearchesCommand.d.ts +39 -0
  268. package/dist-types/ts3.4/commands/ListArchivesCommand.d.ts +35 -0
  269. package/dist-types/ts3.4/commands/ListIngressPointsCommand.d.ts +39 -0
  270. package/dist-types/ts3.4/commands/ListRelaysCommand.d.ts +35 -0
  271. package/dist-types/ts3.4/commands/ListRuleSetsCommand.d.ts +35 -0
  272. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  273. package/dist-types/ts3.4/commands/ListTrafficPoliciesCommand.d.ts +39 -0
  274. package/dist-types/ts3.4/commands/StartArchiveExportCommand.d.ts +39 -0
  275. package/dist-types/ts3.4/commands/StartArchiveSearchCommand.d.ts +39 -0
  276. package/dist-types/ts3.4/commands/StopArchiveExportCommand.d.ts +39 -0
  277. package/dist-types/ts3.4/commands/StopArchiveSearchCommand.d.ts +39 -0
  278. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  279. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  280. package/dist-types/ts3.4/commands/UpdateArchiveCommand.d.ts +38 -0
  281. package/dist-types/ts3.4/commands/UpdateIngressPointCommand.d.ts +39 -0
  282. package/dist-types/ts3.4/commands/UpdateRelayCommand.d.ts +35 -0
  283. package/dist-types/ts3.4/commands/UpdateRuleSetCommand.d.ts +38 -0
  284. package/dist-types/ts3.4/commands/UpdateTrafficPolicyCommand.d.ts +39 -0
  285. package/dist-types/ts3.4/commands/index.d.ts +47 -0
  286. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  287. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  288. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  289. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  290. package/dist-types/ts3.4/index.d.ts +9 -0
  291. package/dist-types/ts3.4/models/MailManagerServiceException.d.ts +8 -0
  292. package/dist-types/ts3.4/models/index.d.ts +1 -0
  293. package/dist-types/ts3.4/models/models_0.d.ts +1514 -0
  294. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  295. package/dist-types/ts3.4/pagination/ListAddonInstancesPaginator.d.ts +11 -0
  296. package/dist-types/ts3.4/pagination/ListAddonSubscriptionsPaginator.d.ts +11 -0
  297. package/dist-types/ts3.4/pagination/ListArchiveExportsPaginator.d.ts +11 -0
  298. package/dist-types/ts3.4/pagination/ListArchiveSearchesPaginator.d.ts +11 -0
  299. package/dist-types/ts3.4/pagination/ListArchivesPaginator.d.ts +11 -0
  300. package/dist-types/ts3.4/pagination/ListIngressPointsPaginator.d.ts +11 -0
  301. package/dist-types/ts3.4/pagination/ListRelaysPaginator.d.ts +11 -0
  302. package/dist-types/ts3.4/pagination/ListRuleSetsPaginator.d.ts +11 -0
  303. package/dist-types/ts3.4/pagination/ListTrafficPoliciesPaginator.d.ts +11 -0
  304. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  305. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +569 -0
  306. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
  307. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  308. package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
  309. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  310. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  311. package/package.json +103 -0
@@ -0,0 +1,402 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ CreateAddonInstanceCommandInput,
50
+ CreateAddonInstanceCommandOutput,
51
+ } from "./commands/CreateAddonInstanceCommand";
52
+ import {
53
+ CreateAddonSubscriptionCommandInput,
54
+ CreateAddonSubscriptionCommandOutput,
55
+ } from "./commands/CreateAddonSubscriptionCommand";
56
+ import {
57
+ CreateArchiveCommandInput,
58
+ CreateArchiveCommandOutput,
59
+ } from "./commands/CreateArchiveCommand";
60
+ import {
61
+ CreateIngressPointCommandInput,
62
+ CreateIngressPointCommandOutput,
63
+ } from "./commands/CreateIngressPointCommand";
64
+ import {
65
+ CreateRelayCommandInput,
66
+ CreateRelayCommandOutput,
67
+ } from "./commands/CreateRelayCommand";
68
+ import {
69
+ CreateRuleSetCommandInput,
70
+ CreateRuleSetCommandOutput,
71
+ } from "./commands/CreateRuleSetCommand";
72
+ import {
73
+ CreateTrafficPolicyCommandInput,
74
+ CreateTrafficPolicyCommandOutput,
75
+ } from "./commands/CreateTrafficPolicyCommand";
76
+ import {
77
+ DeleteAddonInstanceCommandInput,
78
+ DeleteAddonInstanceCommandOutput,
79
+ } from "./commands/DeleteAddonInstanceCommand";
80
+ import {
81
+ DeleteAddonSubscriptionCommandInput,
82
+ DeleteAddonSubscriptionCommandOutput,
83
+ } from "./commands/DeleteAddonSubscriptionCommand";
84
+ import {
85
+ DeleteArchiveCommandInput,
86
+ DeleteArchiveCommandOutput,
87
+ } from "./commands/DeleteArchiveCommand";
88
+ import {
89
+ DeleteIngressPointCommandInput,
90
+ DeleteIngressPointCommandOutput,
91
+ } from "./commands/DeleteIngressPointCommand";
92
+ import {
93
+ DeleteRelayCommandInput,
94
+ DeleteRelayCommandOutput,
95
+ } from "./commands/DeleteRelayCommand";
96
+ import {
97
+ DeleteRuleSetCommandInput,
98
+ DeleteRuleSetCommandOutput,
99
+ } from "./commands/DeleteRuleSetCommand";
100
+ import {
101
+ DeleteTrafficPolicyCommandInput,
102
+ DeleteTrafficPolicyCommandOutput,
103
+ } from "./commands/DeleteTrafficPolicyCommand";
104
+ import {
105
+ GetAddonInstanceCommandInput,
106
+ GetAddonInstanceCommandOutput,
107
+ } from "./commands/GetAddonInstanceCommand";
108
+ import {
109
+ GetAddonSubscriptionCommandInput,
110
+ GetAddonSubscriptionCommandOutput,
111
+ } from "./commands/GetAddonSubscriptionCommand";
112
+ import {
113
+ GetArchiveCommandInput,
114
+ GetArchiveCommandOutput,
115
+ } from "./commands/GetArchiveCommand";
116
+ import {
117
+ GetArchiveExportCommandInput,
118
+ GetArchiveExportCommandOutput,
119
+ } from "./commands/GetArchiveExportCommand";
120
+ import {
121
+ GetArchiveMessageCommandInput,
122
+ GetArchiveMessageCommandOutput,
123
+ } from "./commands/GetArchiveMessageCommand";
124
+ import {
125
+ GetArchiveMessageContentCommandInput,
126
+ GetArchiveMessageContentCommandOutput,
127
+ } from "./commands/GetArchiveMessageContentCommand";
128
+ import {
129
+ GetArchiveSearchCommandInput,
130
+ GetArchiveSearchCommandOutput,
131
+ } from "./commands/GetArchiveSearchCommand";
132
+ import {
133
+ GetArchiveSearchResultsCommandInput,
134
+ GetArchiveSearchResultsCommandOutput,
135
+ } from "./commands/GetArchiveSearchResultsCommand";
136
+ import {
137
+ GetIngressPointCommandInput,
138
+ GetIngressPointCommandOutput,
139
+ } from "./commands/GetIngressPointCommand";
140
+ import {
141
+ GetRelayCommandInput,
142
+ GetRelayCommandOutput,
143
+ } from "./commands/GetRelayCommand";
144
+ import {
145
+ GetRuleSetCommandInput,
146
+ GetRuleSetCommandOutput,
147
+ } from "./commands/GetRuleSetCommand";
148
+ import {
149
+ GetTrafficPolicyCommandInput,
150
+ GetTrafficPolicyCommandOutput,
151
+ } from "./commands/GetTrafficPolicyCommand";
152
+ import {
153
+ ListAddonInstancesCommandInput,
154
+ ListAddonInstancesCommandOutput,
155
+ } from "./commands/ListAddonInstancesCommand";
156
+ import {
157
+ ListAddonSubscriptionsCommandInput,
158
+ ListAddonSubscriptionsCommandOutput,
159
+ } from "./commands/ListAddonSubscriptionsCommand";
160
+ import {
161
+ ListArchiveExportsCommandInput,
162
+ ListArchiveExportsCommandOutput,
163
+ } from "./commands/ListArchiveExportsCommand";
164
+ import {
165
+ ListArchivesCommandInput,
166
+ ListArchivesCommandOutput,
167
+ } from "./commands/ListArchivesCommand";
168
+ import {
169
+ ListArchiveSearchesCommandInput,
170
+ ListArchiveSearchesCommandOutput,
171
+ } from "./commands/ListArchiveSearchesCommand";
172
+ import {
173
+ ListIngressPointsCommandInput,
174
+ ListIngressPointsCommandOutput,
175
+ } from "./commands/ListIngressPointsCommand";
176
+ import {
177
+ ListRelaysCommandInput,
178
+ ListRelaysCommandOutput,
179
+ } from "./commands/ListRelaysCommand";
180
+ import {
181
+ ListRuleSetsCommandInput,
182
+ ListRuleSetsCommandOutput,
183
+ } from "./commands/ListRuleSetsCommand";
184
+ import {
185
+ ListTagsForResourceCommandInput,
186
+ ListTagsForResourceCommandOutput,
187
+ } from "./commands/ListTagsForResourceCommand";
188
+ import {
189
+ ListTrafficPoliciesCommandInput,
190
+ ListTrafficPoliciesCommandOutput,
191
+ } from "./commands/ListTrafficPoliciesCommand";
192
+ import {
193
+ StartArchiveExportCommandInput,
194
+ StartArchiveExportCommandOutput,
195
+ } from "./commands/StartArchiveExportCommand";
196
+ import {
197
+ StartArchiveSearchCommandInput,
198
+ StartArchiveSearchCommandOutput,
199
+ } from "./commands/StartArchiveSearchCommand";
200
+ import {
201
+ StopArchiveExportCommandInput,
202
+ StopArchiveExportCommandOutput,
203
+ } from "./commands/StopArchiveExportCommand";
204
+ import {
205
+ StopArchiveSearchCommandInput,
206
+ StopArchiveSearchCommandOutput,
207
+ } from "./commands/StopArchiveSearchCommand";
208
+ import {
209
+ TagResourceCommandInput,
210
+ TagResourceCommandOutput,
211
+ } from "./commands/TagResourceCommand";
212
+ import {
213
+ UntagResourceCommandInput,
214
+ UntagResourceCommandOutput,
215
+ } from "./commands/UntagResourceCommand";
216
+ import {
217
+ UpdateArchiveCommandInput,
218
+ UpdateArchiveCommandOutput,
219
+ } from "./commands/UpdateArchiveCommand";
220
+ import {
221
+ UpdateIngressPointCommandInput,
222
+ UpdateIngressPointCommandOutput,
223
+ } from "./commands/UpdateIngressPointCommand";
224
+ import {
225
+ UpdateRelayCommandInput,
226
+ UpdateRelayCommandOutput,
227
+ } from "./commands/UpdateRelayCommand";
228
+ import {
229
+ UpdateRuleSetCommandInput,
230
+ UpdateRuleSetCommandOutput,
231
+ } from "./commands/UpdateRuleSetCommand";
232
+ import {
233
+ UpdateTrafficPolicyCommandInput,
234
+ UpdateTrafficPolicyCommandOutput,
235
+ } from "./commands/UpdateTrafficPolicyCommand";
236
+ import {
237
+ ClientInputEndpointParameters,
238
+ ClientResolvedEndpointParameters,
239
+ EndpointParameters,
240
+ } from "./endpoint/EndpointParameters";
241
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
242
+ export { __Client };
243
+ export type ServiceInputTypes =
244
+ | CreateAddonInstanceCommandInput
245
+ | CreateAddonSubscriptionCommandInput
246
+ | CreateArchiveCommandInput
247
+ | CreateIngressPointCommandInput
248
+ | CreateRelayCommandInput
249
+ | CreateRuleSetCommandInput
250
+ | CreateTrafficPolicyCommandInput
251
+ | DeleteAddonInstanceCommandInput
252
+ | DeleteAddonSubscriptionCommandInput
253
+ | DeleteArchiveCommandInput
254
+ | DeleteIngressPointCommandInput
255
+ | DeleteRelayCommandInput
256
+ | DeleteRuleSetCommandInput
257
+ | DeleteTrafficPolicyCommandInput
258
+ | GetAddonInstanceCommandInput
259
+ | GetAddonSubscriptionCommandInput
260
+ | GetArchiveCommandInput
261
+ | GetArchiveExportCommandInput
262
+ | GetArchiveMessageCommandInput
263
+ | GetArchiveMessageContentCommandInput
264
+ | GetArchiveSearchCommandInput
265
+ | GetArchiveSearchResultsCommandInput
266
+ | GetIngressPointCommandInput
267
+ | GetRelayCommandInput
268
+ | GetRuleSetCommandInput
269
+ | GetTrafficPolicyCommandInput
270
+ | ListAddonInstancesCommandInput
271
+ | ListAddonSubscriptionsCommandInput
272
+ | ListArchiveExportsCommandInput
273
+ | ListArchiveSearchesCommandInput
274
+ | ListArchivesCommandInput
275
+ | ListIngressPointsCommandInput
276
+ | ListRelaysCommandInput
277
+ | ListRuleSetsCommandInput
278
+ | ListTagsForResourceCommandInput
279
+ | ListTrafficPoliciesCommandInput
280
+ | StartArchiveExportCommandInput
281
+ | StartArchiveSearchCommandInput
282
+ | StopArchiveExportCommandInput
283
+ | StopArchiveSearchCommandInput
284
+ | TagResourceCommandInput
285
+ | UntagResourceCommandInput
286
+ | UpdateArchiveCommandInput
287
+ | UpdateIngressPointCommandInput
288
+ | UpdateRelayCommandInput
289
+ | UpdateRuleSetCommandInput
290
+ | UpdateTrafficPolicyCommandInput;
291
+ export type ServiceOutputTypes =
292
+ | CreateAddonInstanceCommandOutput
293
+ | CreateAddonSubscriptionCommandOutput
294
+ | CreateArchiveCommandOutput
295
+ | CreateIngressPointCommandOutput
296
+ | CreateRelayCommandOutput
297
+ | CreateRuleSetCommandOutput
298
+ | CreateTrafficPolicyCommandOutput
299
+ | DeleteAddonInstanceCommandOutput
300
+ | DeleteAddonSubscriptionCommandOutput
301
+ | DeleteArchiveCommandOutput
302
+ | DeleteIngressPointCommandOutput
303
+ | DeleteRelayCommandOutput
304
+ | DeleteRuleSetCommandOutput
305
+ | DeleteTrafficPolicyCommandOutput
306
+ | GetAddonInstanceCommandOutput
307
+ | GetAddonSubscriptionCommandOutput
308
+ | GetArchiveCommandOutput
309
+ | GetArchiveExportCommandOutput
310
+ | GetArchiveMessageCommandOutput
311
+ | GetArchiveMessageContentCommandOutput
312
+ | GetArchiveSearchCommandOutput
313
+ | GetArchiveSearchResultsCommandOutput
314
+ | GetIngressPointCommandOutput
315
+ | GetRelayCommandOutput
316
+ | GetRuleSetCommandOutput
317
+ | GetTrafficPolicyCommandOutput
318
+ | ListAddonInstancesCommandOutput
319
+ | ListAddonSubscriptionsCommandOutput
320
+ | ListArchiveExportsCommandOutput
321
+ | ListArchiveSearchesCommandOutput
322
+ | ListArchivesCommandOutput
323
+ | ListIngressPointsCommandOutput
324
+ | ListRelaysCommandOutput
325
+ | ListRuleSetsCommandOutput
326
+ | ListTagsForResourceCommandOutput
327
+ | ListTrafficPoliciesCommandOutput
328
+ | StartArchiveExportCommandOutput
329
+ | StartArchiveSearchCommandOutput
330
+ | StopArchiveExportCommandOutput
331
+ | StopArchiveSearchCommandOutput
332
+ | TagResourceCommandOutput
333
+ | UntagResourceCommandOutput
334
+ | UpdateArchiveCommandOutput
335
+ | UpdateIngressPointCommandOutput
336
+ | UpdateRelayCommandOutput
337
+ | UpdateRuleSetCommandOutput
338
+ | UpdateTrafficPolicyCommandOutput;
339
+ export interface ClientDefaults
340
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
341
+ requestHandler?: __HttpHandlerUserInput;
342
+ sha256?: __ChecksumConstructor | __HashConstructor;
343
+ urlParser?: __UrlParser;
344
+ bodyLengthChecker?: __BodyLengthCalculator;
345
+ streamCollector?: __StreamCollector;
346
+ base64Decoder?: __Decoder;
347
+ base64Encoder?: __Encoder;
348
+ utf8Decoder?: __Decoder;
349
+ utf8Encoder?: __Encoder;
350
+ runtime?: string;
351
+ disableHostPrefix?: boolean;
352
+ serviceId?: string;
353
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
354
+ useFipsEndpoint?: boolean | __Provider<boolean>;
355
+ defaultUserAgentProvider?: Provider<__UserAgent>;
356
+ region?: string | __Provider<string>;
357
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
358
+ maxAttempts?: number | __Provider<number>;
359
+ retryMode?: string | __Provider<string>;
360
+ logger?: __Logger;
361
+ extensions?: RuntimeExtension[];
362
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
363
+ }
364
+ export type MailManagerClientConfigType = Partial<
365
+ __SmithyConfiguration<__HttpHandlerOptions>
366
+ > &
367
+ ClientDefaults &
368
+ RegionInputConfig &
369
+ EndpointInputConfig<EndpointParameters> &
370
+ RetryInputConfig &
371
+ HostHeaderInputConfig &
372
+ UserAgentInputConfig &
373
+ HttpAuthSchemeInputConfig &
374
+ ClientInputEndpointParameters;
375
+ export interface MailManagerClientConfig extends MailManagerClientConfigType {}
376
+ export type MailManagerClientResolvedConfigType =
377
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
378
+ Required<ClientDefaults> &
379
+ RuntimeExtensionsConfig &
380
+ RegionResolvedConfig &
381
+ EndpointResolvedConfig<EndpointParameters> &
382
+ RetryResolvedConfig &
383
+ HostHeaderResolvedConfig &
384
+ UserAgentResolvedConfig &
385
+ HttpAuthSchemeResolvedConfig &
386
+ ClientResolvedEndpointParameters;
387
+ export interface MailManagerClientResolvedConfig
388
+ extends MailManagerClientResolvedConfigType {}
389
+ export declare class MailManagerClient extends __Client<
390
+ __HttpHandlerOptions,
391
+ ServiceInputTypes,
392
+ ServiceOutputTypes,
393
+ MailManagerClientResolvedConfig
394
+ > {
395
+ readonly config: MailManagerClientResolvedConfig;
396
+ constructor(
397
+ ...[configuration]: __CheckOptionalClientConfig<MailManagerClientConfig>
398
+ );
399
+ destroy(): void;
400
+ private getDefaultHttpAuthSchemeParametersProvider;
401
+ private getIdentityProviderConfigProvider;
402
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { MailManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: MailManagerHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): MailManagerHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: MailManagerHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,44 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ } from "@smithy/types";
13
+ import { MailManagerClientResolvedConfig } from "../MailManagerClient";
14
+ export interface MailManagerHttpAuthSchemeParameters
15
+ extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface MailManagerHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ MailManagerClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ MailManagerHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultMailManagerHttpAuthSchemeParametersProvider: (
26
+ config: MailManagerClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<MailManagerHttpAuthSchemeParameters>;
30
+ export interface MailManagerHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<MailManagerHttpAuthSchemeParameters> {}
32
+ export declare const defaultMailManagerHttpAuthSchemeProvider: MailManagerHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ httpAuthSchemes?: HttpAuthScheme[];
35
+ httpAuthSchemeProvider?: MailManagerHttpAuthSchemeProvider;
36
+ }
37
+ export interface HttpAuthSchemeResolvedConfig
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
+ readonly httpAuthSchemes: HttpAuthScheme[];
40
+ readonly httpAuthSchemeProvider: MailManagerHttpAuthSchemeProvider;
41
+ }
42
+ export declare const resolveHttpAuthSchemeConfig: <T>(
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MailManagerClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MailManagerClient";
8
+ import {
9
+ CreateAddonInstanceRequest,
10
+ CreateAddonInstanceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateAddonInstanceCommandInput
14
+ extends CreateAddonInstanceRequest {}
15
+ export interface CreateAddonInstanceCommandOutput
16
+ extends CreateAddonInstanceResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateAddonInstanceCommand_base: {
19
+ new (
20
+ input: CreateAddonInstanceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateAddonInstanceCommandInput,
23
+ CreateAddonInstanceCommandOutput,
24
+ MailManagerClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateAddonInstanceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateAddonInstanceCommandInput,
32
+ CreateAddonInstanceCommandOutput,
33
+ MailManagerClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateAddonInstanceCommand extends CreateAddonInstanceCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MailManagerClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MailManagerClient";
8
+ import {
9
+ CreateAddonSubscriptionRequest,
10
+ CreateAddonSubscriptionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateAddonSubscriptionCommandInput
14
+ extends CreateAddonSubscriptionRequest {}
15
+ export interface CreateAddonSubscriptionCommandOutput
16
+ extends CreateAddonSubscriptionResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateAddonSubscriptionCommand_base: {
19
+ new (
20
+ input: CreateAddonSubscriptionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateAddonSubscriptionCommandInput,
23
+ CreateAddonSubscriptionCommandOutput,
24
+ MailManagerClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateAddonSubscriptionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateAddonSubscriptionCommandInput,
32
+ CreateAddonSubscriptionCommandOutput,
33
+ MailManagerClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateAddonSubscriptionCommand extends CreateAddonSubscriptionCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MailManagerClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MailManagerClient";
8
+ import {
9
+ CreateArchiveRequest,
10
+ CreateArchiveResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateArchiveCommandInput extends CreateArchiveRequest {}
14
+ export interface CreateArchiveCommandOutput
15
+ extends CreateArchiveResponse,
16
+ __MetadataBearer {}
17
+ declare const CreateArchiveCommand_base: {
18
+ new (
19
+ input: CreateArchiveCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ CreateArchiveCommandInput,
22
+ CreateArchiveCommandOutput,
23
+ MailManagerClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: CreateArchiveCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ CreateArchiveCommandInput,
31
+ CreateArchiveCommandOutput,
32
+ MailManagerClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class CreateArchiveCommand extends CreateArchiveCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MailManagerClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MailManagerClient";
8
+ import {
9
+ CreateIngressPointRequest,
10
+ CreateIngressPointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateIngressPointCommandInput
14
+ extends CreateIngressPointRequest {}
15
+ export interface CreateIngressPointCommandOutput
16
+ extends CreateIngressPointResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateIngressPointCommand_base: {
19
+ new (
20
+ input: CreateIngressPointCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateIngressPointCommandInput,
23
+ CreateIngressPointCommandOutput,
24
+ MailManagerClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateIngressPointCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateIngressPointCommandInput,
32
+ CreateIngressPointCommandOutput,
33
+ MailManagerClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateIngressPointCommand extends CreateIngressPointCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MailManagerClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MailManagerClient";
8
+ import { CreateRelayRequest, CreateRelayResponse } from "../models/models_0";
9
+ export { __MetadataBearer, $Command };
10
+ export interface CreateRelayCommandInput extends CreateRelayRequest {}
11
+ export interface CreateRelayCommandOutput
12
+ extends CreateRelayResponse,
13
+ __MetadataBearer {}
14
+ declare const CreateRelayCommand_base: {
15
+ new (
16
+ input: CreateRelayCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CreateRelayCommandInput,
19
+ CreateRelayCommandOutput,
20
+ MailManagerClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: CreateRelayCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreateRelayCommandInput,
28
+ CreateRelayCommandOutput,
29
+ MailManagerClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class CreateRelayCommand extends CreateRelayCommand_base {}