@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { MailManagerClient } from "../MailManagerClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface MailManagerPaginationConfiguration extends PaginationConfiguration {
7
+ client: MailManagerClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListAddonInstancesCommandInput, ListAddonInstancesCommandOutput } from "../commands/ListAddonInstancesCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAddonInstances: (config: MailManagerPaginationConfiguration, input: ListAddonInstancesCommandInput, ...rest: any[]) => Paginator<ListAddonInstancesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListAddonSubscriptionsCommandInput, ListAddonSubscriptionsCommandOutput } from "../commands/ListAddonSubscriptionsCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAddonSubscriptions: (config: MailManagerPaginationConfiguration, input: ListAddonSubscriptionsCommandInput, ...rest: any[]) => Paginator<ListAddonSubscriptionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListArchiveExportsCommandInput, ListArchiveExportsCommandOutput } from "../commands/ListArchiveExportsCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListArchiveExports: (config: MailManagerPaginationConfiguration, input: ListArchiveExportsCommandInput, ...rest: any[]) => Paginator<ListArchiveExportsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListArchiveSearchesCommandInput, ListArchiveSearchesCommandOutput } from "../commands/ListArchiveSearchesCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListArchiveSearches: (config: MailManagerPaginationConfiguration, input: ListArchiveSearchesCommandInput, ...rest: any[]) => Paginator<ListArchiveSearchesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListArchivesCommandInput, ListArchivesCommandOutput } from "../commands/ListArchivesCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListArchives: (config: MailManagerPaginationConfiguration, input: ListArchivesCommandInput, ...rest: any[]) => Paginator<ListArchivesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListIngressPointsCommandInput, ListIngressPointsCommandOutput } from "../commands/ListIngressPointsCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListIngressPoints: (config: MailManagerPaginationConfiguration, input: ListIngressPointsCommandInput, ...rest: any[]) => Paginator<ListIngressPointsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListRelaysCommandInput, ListRelaysCommandOutput } from "../commands/ListRelaysCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListRelays: (config: MailManagerPaginationConfiguration, input: ListRelaysCommandInput, ...rest: any[]) => Paginator<ListRelaysCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListRuleSetsCommandInput, ListRuleSetsCommandOutput } from "../commands/ListRuleSetsCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListRuleSets: (config: MailManagerPaginationConfiguration, input: ListRuleSetsCommandInput, ...rest: any[]) => Paginator<ListRuleSetsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListTrafficPoliciesCommandInput, ListTrafficPoliciesCommandOutput } from "../commands/ListTrafficPoliciesCommand";
3
+ import { MailManagerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListTrafficPolicies: (config: MailManagerPaginationConfiguration, input: ListTrafficPoliciesCommandInput, ...rest: any[]) => Paginator<ListTrafficPoliciesCommandOutput>;
@@ -0,0 +1,10 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListAddonInstancesPaginator";
3
+ export * from "./ListAddonSubscriptionsPaginator";
4
+ export * from "./ListArchiveExportsPaginator";
5
+ export * from "./ListArchiveSearchesPaginator";
6
+ export * from "./ListArchivesPaginator";
7
+ export * from "./ListIngressPointsPaginator";
8
+ export * from "./ListRelaysPaginator";
9
+ export * from "./ListRuleSetsPaginator";
10
+ export * from "./ListTrafficPoliciesPaginator";
@@ -0,0 +1,425 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateAddonInstanceCommandInput, CreateAddonInstanceCommandOutput } from "../commands/CreateAddonInstanceCommand";
4
+ import { CreateAddonSubscriptionCommandInput, CreateAddonSubscriptionCommandOutput } from "../commands/CreateAddonSubscriptionCommand";
5
+ import { CreateArchiveCommandInput, CreateArchiveCommandOutput } from "../commands/CreateArchiveCommand";
6
+ import { CreateIngressPointCommandInput, CreateIngressPointCommandOutput } from "../commands/CreateIngressPointCommand";
7
+ import { CreateRelayCommandInput, CreateRelayCommandOutput } from "../commands/CreateRelayCommand";
8
+ import { CreateRuleSetCommandInput, CreateRuleSetCommandOutput } from "../commands/CreateRuleSetCommand";
9
+ import { CreateTrafficPolicyCommandInput, CreateTrafficPolicyCommandOutput } from "../commands/CreateTrafficPolicyCommand";
10
+ import { DeleteAddonInstanceCommandInput, DeleteAddonInstanceCommandOutput } from "../commands/DeleteAddonInstanceCommand";
11
+ import { DeleteAddonSubscriptionCommandInput, DeleteAddonSubscriptionCommandOutput } from "../commands/DeleteAddonSubscriptionCommand";
12
+ import { DeleteArchiveCommandInput, DeleteArchiveCommandOutput } from "../commands/DeleteArchiveCommand";
13
+ import { DeleteIngressPointCommandInput, DeleteIngressPointCommandOutput } from "../commands/DeleteIngressPointCommand";
14
+ import { DeleteRelayCommandInput, DeleteRelayCommandOutput } from "../commands/DeleteRelayCommand";
15
+ import { DeleteRuleSetCommandInput, DeleteRuleSetCommandOutput } from "../commands/DeleteRuleSetCommand";
16
+ import { DeleteTrafficPolicyCommandInput, DeleteTrafficPolicyCommandOutput } from "../commands/DeleteTrafficPolicyCommand";
17
+ import { GetAddonInstanceCommandInput, GetAddonInstanceCommandOutput } from "../commands/GetAddonInstanceCommand";
18
+ import { GetAddonSubscriptionCommandInput, GetAddonSubscriptionCommandOutput } from "../commands/GetAddonSubscriptionCommand";
19
+ import { GetArchiveCommandInput, GetArchiveCommandOutput } from "../commands/GetArchiveCommand";
20
+ import { GetArchiveExportCommandInput, GetArchiveExportCommandOutput } from "../commands/GetArchiveExportCommand";
21
+ import { GetArchiveMessageCommandInput, GetArchiveMessageCommandOutput } from "../commands/GetArchiveMessageCommand";
22
+ import { GetArchiveMessageContentCommandInput, GetArchiveMessageContentCommandOutput } from "../commands/GetArchiveMessageContentCommand";
23
+ import { GetArchiveSearchCommandInput, GetArchiveSearchCommandOutput } from "../commands/GetArchiveSearchCommand";
24
+ import { GetArchiveSearchResultsCommandInput, GetArchiveSearchResultsCommandOutput } from "../commands/GetArchiveSearchResultsCommand";
25
+ import { GetIngressPointCommandInput, GetIngressPointCommandOutput } from "../commands/GetIngressPointCommand";
26
+ import { GetRelayCommandInput, GetRelayCommandOutput } from "../commands/GetRelayCommand";
27
+ import { GetRuleSetCommandInput, GetRuleSetCommandOutput } from "../commands/GetRuleSetCommand";
28
+ import { GetTrafficPolicyCommandInput, GetTrafficPolicyCommandOutput } from "../commands/GetTrafficPolicyCommand";
29
+ import { ListAddonInstancesCommandInput, ListAddonInstancesCommandOutput } from "../commands/ListAddonInstancesCommand";
30
+ import { ListAddonSubscriptionsCommandInput, ListAddonSubscriptionsCommandOutput } from "../commands/ListAddonSubscriptionsCommand";
31
+ import { ListArchiveExportsCommandInput, ListArchiveExportsCommandOutput } from "../commands/ListArchiveExportsCommand";
32
+ import { ListArchivesCommandInput, ListArchivesCommandOutput } from "../commands/ListArchivesCommand";
33
+ import { ListArchiveSearchesCommandInput, ListArchiveSearchesCommandOutput } from "../commands/ListArchiveSearchesCommand";
34
+ import { ListIngressPointsCommandInput, ListIngressPointsCommandOutput } from "../commands/ListIngressPointsCommand";
35
+ import { ListRelaysCommandInput, ListRelaysCommandOutput } from "../commands/ListRelaysCommand";
36
+ import { ListRuleSetsCommandInput, ListRuleSetsCommandOutput } from "../commands/ListRuleSetsCommand";
37
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
38
+ import { ListTrafficPoliciesCommandInput, ListTrafficPoliciesCommandOutput } from "../commands/ListTrafficPoliciesCommand";
39
+ import { StartArchiveExportCommandInput, StartArchiveExportCommandOutput } from "../commands/StartArchiveExportCommand";
40
+ import { StartArchiveSearchCommandInput, StartArchiveSearchCommandOutput } from "../commands/StartArchiveSearchCommand";
41
+ import { StopArchiveExportCommandInput, StopArchiveExportCommandOutput } from "../commands/StopArchiveExportCommand";
42
+ import { StopArchiveSearchCommandInput, StopArchiveSearchCommandOutput } from "../commands/StopArchiveSearchCommand";
43
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
44
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
45
+ import { UpdateArchiveCommandInput, UpdateArchiveCommandOutput } from "../commands/UpdateArchiveCommand";
46
+ import { UpdateIngressPointCommandInput, UpdateIngressPointCommandOutput } from "../commands/UpdateIngressPointCommand";
47
+ import { UpdateRelayCommandInput, UpdateRelayCommandOutput } from "../commands/UpdateRelayCommand";
48
+ import { UpdateRuleSetCommandInput, UpdateRuleSetCommandOutput } from "../commands/UpdateRuleSetCommand";
49
+ import { UpdateTrafficPolicyCommandInput, UpdateTrafficPolicyCommandOutput } from "../commands/UpdateTrafficPolicyCommand";
50
+ /**
51
+ * serializeAws_json1_0CreateAddonInstanceCommand
52
+ */
53
+ export declare const se_CreateAddonInstanceCommand: (input: CreateAddonInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ /**
55
+ * serializeAws_json1_0CreateAddonSubscriptionCommand
56
+ */
57
+ export declare const se_CreateAddonSubscriptionCommand: (input: CreateAddonSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ /**
59
+ * serializeAws_json1_0CreateArchiveCommand
60
+ */
61
+ export declare const se_CreateArchiveCommand: (input: CreateArchiveCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
+ /**
63
+ * serializeAws_json1_0CreateIngressPointCommand
64
+ */
65
+ export declare const se_CreateIngressPointCommand: (input: CreateIngressPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ /**
67
+ * serializeAws_json1_0CreateRelayCommand
68
+ */
69
+ export declare const se_CreateRelayCommand: (input: CreateRelayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
+ /**
71
+ * serializeAws_json1_0CreateRuleSetCommand
72
+ */
73
+ export declare const se_CreateRuleSetCommand: (input: CreateRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
+ /**
75
+ * serializeAws_json1_0CreateTrafficPolicyCommand
76
+ */
77
+ export declare const se_CreateTrafficPolicyCommand: (input: CreateTrafficPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
+ /**
79
+ * serializeAws_json1_0DeleteAddonInstanceCommand
80
+ */
81
+ export declare const se_DeleteAddonInstanceCommand: (input: DeleteAddonInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
+ /**
83
+ * serializeAws_json1_0DeleteAddonSubscriptionCommand
84
+ */
85
+ export declare const se_DeleteAddonSubscriptionCommand: (input: DeleteAddonSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ /**
87
+ * serializeAws_json1_0DeleteArchiveCommand
88
+ */
89
+ export declare const se_DeleteArchiveCommand: (input: DeleteArchiveCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ /**
91
+ * serializeAws_json1_0DeleteIngressPointCommand
92
+ */
93
+ export declare const se_DeleteIngressPointCommand: (input: DeleteIngressPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
+ /**
95
+ * serializeAws_json1_0DeleteRelayCommand
96
+ */
97
+ export declare const se_DeleteRelayCommand: (input: DeleteRelayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ /**
99
+ * serializeAws_json1_0DeleteRuleSetCommand
100
+ */
101
+ export declare const se_DeleteRuleSetCommand: (input: DeleteRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
+ /**
103
+ * serializeAws_json1_0DeleteTrafficPolicyCommand
104
+ */
105
+ export declare const se_DeleteTrafficPolicyCommand: (input: DeleteTrafficPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ /**
107
+ * serializeAws_json1_0GetAddonInstanceCommand
108
+ */
109
+ export declare const se_GetAddonInstanceCommand: (input: GetAddonInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ /**
111
+ * serializeAws_json1_0GetAddonSubscriptionCommand
112
+ */
113
+ export declare const se_GetAddonSubscriptionCommand: (input: GetAddonSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
+ /**
115
+ * serializeAws_json1_0GetArchiveCommand
116
+ */
117
+ export declare const se_GetArchiveCommand: (input: GetArchiveCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
+ /**
119
+ * serializeAws_json1_0GetArchiveExportCommand
120
+ */
121
+ export declare const se_GetArchiveExportCommand: (input: GetArchiveExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
122
+ /**
123
+ * serializeAws_json1_0GetArchiveMessageCommand
124
+ */
125
+ export declare const se_GetArchiveMessageCommand: (input: GetArchiveMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ /**
127
+ * serializeAws_json1_0GetArchiveMessageContentCommand
128
+ */
129
+ export declare const se_GetArchiveMessageContentCommand: (input: GetArchiveMessageContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
130
+ /**
131
+ * serializeAws_json1_0GetArchiveSearchCommand
132
+ */
133
+ export declare const se_GetArchiveSearchCommand: (input: GetArchiveSearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
+ /**
135
+ * serializeAws_json1_0GetArchiveSearchResultsCommand
136
+ */
137
+ export declare const se_GetArchiveSearchResultsCommand: (input: GetArchiveSearchResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
138
+ /**
139
+ * serializeAws_json1_0GetIngressPointCommand
140
+ */
141
+ export declare const se_GetIngressPointCommand: (input: GetIngressPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
142
+ /**
143
+ * serializeAws_json1_0GetRelayCommand
144
+ */
145
+ export declare const se_GetRelayCommand: (input: GetRelayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
146
+ /**
147
+ * serializeAws_json1_0GetRuleSetCommand
148
+ */
149
+ export declare const se_GetRuleSetCommand: (input: GetRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
150
+ /**
151
+ * serializeAws_json1_0GetTrafficPolicyCommand
152
+ */
153
+ export declare const se_GetTrafficPolicyCommand: (input: GetTrafficPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
154
+ /**
155
+ * serializeAws_json1_0ListAddonInstancesCommand
156
+ */
157
+ export declare const se_ListAddonInstancesCommand: (input: ListAddonInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
158
+ /**
159
+ * serializeAws_json1_0ListAddonSubscriptionsCommand
160
+ */
161
+ export declare const se_ListAddonSubscriptionsCommand: (input: ListAddonSubscriptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
162
+ /**
163
+ * serializeAws_json1_0ListArchiveExportsCommand
164
+ */
165
+ export declare const se_ListArchiveExportsCommand: (input: ListArchiveExportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
166
+ /**
167
+ * serializeAws_json1_0ListArchivesCommand
168
+ */
169
+ export declare const se_ListArchivesCommand: (input: ListArchivesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
170
+ /**
171
+ * serializeAws_json1_0ListArchiveSearchesCommand
172
+ */
173
+ export declare const se_ListArchiveSearchesCommand: (input: ListArchiveSearchesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
174
+ /**
175
+ * serializeAws_json1_0ListIngressPointsCommand
176
+ */
177
+ export declare const se_ListIngressPointsCommand: (input: ListIngressPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
178
+ /**
179
+ * serializeAws_json1_0ListRelaysCommand
180
+ */
181
+ export declare const se_ListRelaysCommand: (input: ListRelaysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
182
+ /**
183
+ * serializeAws_json1_0ListRuleSetsCommand
184
+ */
185
+ export declare const se_ListRuleSetsCommand: (input: ListRuleSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
186
+ /**
187
+ * serializeAws_json1_0ListTagsForResourceCommand
188
+ */
189
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
190
+ /**
191
+ * serializeAws_json1_0ListTrafficPoliciesCommand
192
+ */
193
+ export declare const se_ListTrafficPoliciesCommand: (input: ListTrafficPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
194
+ /**
195
+ * serializeAws_json1_0StartArchiveExportCommand
196
+ */
197
+ export declare const se_StartArchiveExportCommand: (input: StartArchiveExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
198
+ /**
199
+ * serializeAws_json1_0StartArchiveSearchCommand
200
+ */
201
+ export declare const se_StartArchiveSearchCommand: (input: StartArchiveSearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
202
+ /**
203
+ * serializeAws_json1_0StopArchiveExportCommand
204
+ */
205
+ export declare const se_StopArchiveExportCommand: (input: StopArchiveExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
206
+ /**
207
+ * serializeAws_json1_0StopArchiveSearchCommand
208
+ */
209
+ export declare const se_StopArchiveSearchCommand: (input: StopArchiveSearchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
210
+ /**
211
+ * serializeAws_json1_0TagResourceCommand
212
+ */
213
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
214
+ /**
215
+ * serializeAws_json1_0UntagResourceCommand
216
+ */
217
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
218
+ /**
219
+ * serializeAws_json1_0UpdateArchiveCommand
220
+ */
221
+ export declare const se_UpdateArchiveCommand: (input: UpdateArchiveCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
222
+ /**
223
+ * serializeAws_json1_0UpdateIngressPointCommand
224
+ */
225
+ export declare const se_UpdateIngressPointCommand: (input: UpdateIngressPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
226
+ /**
227
+ * serializeAws_json1_0UpdateRelayCommand
228
+ */
229
+ export declare const se_UpdateRelayCommand: (input: UpdateRelayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
230
+ /**
231
+ * serializeAws_json1_0UpdateRuleSetCommand
232
+ */
233
+ export declare const se_UpdateRuleSetCommand: (input: UpdateRuleSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
234
+ /**
235
+ * serializeAws_json1_0UpdateTrafficPolicyCommand
236
+ */
237
+ export declare const se_UpdateTrafficPolicyCommand: (input: UpdateTrafficPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
238
+ /**
239
+ * deserializeAws_json1_0CreateAddonInstanceCommand
240
+ */
241
+ export declare const de_CreateAddonInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAddonInstanceCommandOutput>;
242
+ /**
243
+ * deserializeAws_json1_0CreateAddonSubscriptionCommand
244
+ */
245
+ export declare const de_CreateAddonSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAddonSubscriptionCommandOutput>;
246
+ /**
247
+ * deserializeAws_json1_0CreateArchiveCommand
248
+ */
249
+ export declare const de_CreateArchiveCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateArchiveCommandOutput>;
250
+ /**
251
+ * deserializeAws_json1_0CreateIngressPointCommand
252
+ */
253
+ export declare const de_CreateIngressPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIngressPointCommandOutput>;
254
+ /**
255
+ * deserializeAws_json1_0CreateRelayCommand
256
+ */
257
+ export declare const de_CreateRelayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRelayCommandOutput>;
258
+ /**
259
+ * deserializeAws_json1_0CreateRuleSetCommand
260
+ */
261
+ export declare const de_CreateRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRuleSetCommandOutput>;
262
+ /**
263
+ * deserializeAws_json1_0CreateTrafficPolicyCommand
264
+ */
265
+ export declare const de_CreateTrafficPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTrafficPolicyCommandOutput>;
266
+ /**
267
+ * deserializeAws_json1_0DeleteAddonInstanceCommand
268
+ */
269
+ export declare const de_DeleteAddonInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAddonInstanceCommandOutput>;
270
+ /**
271
+ * deserializeAws_json1_0DeleteAddonSubscriptionCommand
272
+ */
273
+ export declare const de_DeleteAddonSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAddonSubscriptionCommandOutput>;
274
+ /**
275
+ * deserializeAws_json1_0DeleteArchiveCommand
276
+ */
277
+ export declare const de_DeleteArchiveCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteArchiveCommandOutput>;
278
+ /**
279
+ * deserializeAws_json1_0DeleteIngressPointCommand
280
+ */
281
+ export declare const de_DeleteIngressPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIngressPointCommandOutput>;
282
+ /**
283
+ * deserializeAws_json1_0DeleteRelayCommand
284
+ */
285
+ export declare const de_DeleteRelayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRelayCommandOutput>;
286
+ /**
287
+ * deserializeAws_json1_0DeleteRuleSetCommand
288
+ */
289
+ export declare const de_DeleteRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRuleSetCommandOutput>;
290
+ /**
291
+ * deserializeAws_json1_0DeleteTrafficPolicyCommand
292
+ */
293
+ export declare const de_DeleteTrafficPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrafficPolicyCommandOutput>;
294
+ /**
295
+ * deserializeAws_json1_0GetAddonInstanceCommand
296
+ */
297
+ export declare const de_GetAddonInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAddonInstanceCommandOutput>;
298
+ /**
299
+ * deserializeAws_json1_0GetAddonSubscriptionCommand
300
+ */
301
+ export declare const de_GetAddonSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAddonSubscriptionCommandOutput>;
302
+ /**
303
+ * deserializeAws_json1_0GetArchiveCommand
304
+ */
305
+ export declare const de_GetArchiveCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetArchiveCommandOutput>;
306
+ /**
307
+ * deserializeAws_json1_0GetArchiveExportCommand
308
+ */
309
+ export declare const de_GetArchiveExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetArchiveExportCommandOutput>;
310
+ /**
311
+ * deserializeAws_json1_0GetArchiveMessageCommand
312
+ */
313
+ export declare const de_GetArchiveMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetArchiveMessageCommandOutput>;
314
+ /**
315
+ * deserializeAws_json1_0GetArchiveMessageContentCommand
316
+ */
317
+ export declare const de_GetArchiveMessageContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetArchiveMessageContentCommandOutput>;
318
+ /**
319
+ * deserializeAws_json1_0GetArchiveSearchCommand
320
+ */
321
+ export declare const de_GetArchiveSearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetArchiveSearchCommandOutput>;
322
+ /**
323
+ * deserializeAws_json1_0GetArchiveSearchResultsCommand
324
+ */
325
+ export declare const de_GetArchiveSearchResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetArchiveSearchResultsCommandOutput>;
326
+ /**
327
+ * deserializeAws_json1_0GetIngressPointCommand
328
+ */
329
+ export declare const de_GetIngressPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIngressPointCommandOutput>;
330
+ /**
331
+ * deserializeAws_json1_0GetRelayCommand
332
+ */
333
+ export declare const de_GetRelayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRelayCommandOutput>;
334
+ /**
335
+ * deserializeAws_json1_0GetRuleSetCommand
336
+ */
337
+ export declare const de_GetRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRuleSetCommandOutput>;
338
+ /**
339
+ * deserializeAws_json1_0GetTrafficPolicyCommand
340
+ */
341
+ export declare const de_GetTrafficPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrafficPolicyCommandOutput>;
342
+ /**
343
+ * deserializeAws_json1_0ListAddonInstancesCommand
344
+ */
345
+ export declare const de_ListAddonInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAddonInstancesCommandOutput>;
346
+ /**
347
+ * deserializeAws_json1_0ListAddonSubscriptionsCommand
348
+ */
349
+ export declare const de_ListAddonSubscriptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAddonSubscriptionsCommandOutput>;
350
+ /**
351
+ * deserializeAws_json1_0ListArchiveExportsCommand
352
+ */
353
+ export declare const de_ListArchiveExportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListArchiveExportsCommandOutput>;
354
+ /**
355
+ * deserializeAws_json1_0ListArchivesCommand
356
+ */
357
+ export declare const de_ListArchivesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListArchivesCommandOutput>;
358
+ /**
359
+ * deserializeAws_json1_0ListArchiveSearchesCommand
360
+ */
361
+ export declare const de_ListArchiveSearchesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListArchiveSearchesCommandOutput>;
362
+ /**
363
+ * deserializeAws_json1_0ListIngressPointsCommand
364
+ */
365
+ export declare const de_ListIngressPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIngressPointsCommandOutput>;
366
+ /**
367
+ * deserializeAws_json1_0ListRelaysCommand
368
+ */
369
+ export declare const de_ListRelaysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRelaysCommandOutput>;
370
+ /**
371
+ * deserializeAws_json1_0ListRuleSetsCommand
372
+ */
373
+ export declare const de_ListRuleSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRuleSetsCommandOutput>;
374
+ /**
375
+ * deserializeAws_json1_0ListTagsForResourceCommand
376
+ */
377
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
378
+ /**
379
+ * deserializeAws_json1_0ListTrafficPoliciesCommand
380
+ */
381
+ export declare const de_ListTrafficPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrafficPoliciesCommandOutput>;
382
+ /**
383
+ * deserializeAws_json1_0StartArchiveExportCommand
384
+ */
385
+ export declare const de_StartArchiveExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartArchiveExportCommandOutput>;
386
+ /**
387
+ * deserializeAws_json1_0StartArchiveSearchCommand
388
+ */
389
+ export declare const de_StartArchiveSearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartArchiveSearchCommandOutput>;
390
+ /**
391
+ * deserializeAws_json1_0StopArchiveExportCommand
392
+ */
393
+ export declare const de_StopArchiveExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopArchiveExportCommandOutput>;
394
+ /**
395
+ * deserializeAws_json1_0StopArchiveSearchCommand
396
+ */
397
+ export declare const de_StopArchiveSearchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopArchiveSearchCommandOutput>;
398
+ /**
399
+ * deserializeAws_json1_0TagResourceCommand
400
+ */
401
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
402
+ /**
403
+ * deserializeAws_json1_0UntagResourceCommand
404
+ */
405
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
406
+ /**
407
+ * deserializeAws_json1_0UpdateArchiveCommand
408
+ */
409
+ export declare const de_UpdateArchiveCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateArchiveCommandOutput>;
410
+ /**
411
+ * deserializeAws_json1_0UpdateIngressPointCommand
412
+ */
413
+ export declare const de_UpdateIngressPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIngressPointCommandOutput>;
414
+ /**
415
+ * deserializeAws_json1_0UpdateRelayCommand
416
+ */
417
+ export declare const de_UpdateRelayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRelayCommandOutput>;
418
+ /**
419
+ * deserializeAws_json1_0UpdateRuleSetCommand
420
+ */
421
+ export declare const de_UpdateRuleSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRuleSetCommandOutput>;
422
+ /**
423
+ * deserializeAws_json1_0UpdateTrafficPolicyCommand
424
+ */
425
+ export declare const de_UpdateTrafficPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTrafficPolicyCommandOutput>;
@@ -0,0 +1,45 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { MailManagerClientConfig } from "./MailManagerClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: MailManagerClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@smithy/types").Logger | undefined;
33
+ }) => import("@smithy/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MailManagerHttpAuthSchemeProvider;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ };
@@ -0,0 +1,45 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { MailManagerClientConfig } from "./MailManagerClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: MailManagerClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@smithy/types").Logger | undefined;
33
+ }) => import("@smithy/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MailManagerHttpAuthSchemeProvider;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ };