@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,569 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateAddonInstanceCommandInput,
8
+ CreateAddonInstanceCommandOutput,
9
+ } from "../commands/CreateAddonInstanceCommand";
10
+ import {
11
+ CreateAddonSubscriptionCommandInput,
12
+ CreateAddonSubscriptionCommandOutput,
13
+ } from "../commands/CreateAddonSubscriptionCommand";
14
+ import {
15
+ CreateArchiveCommandInput,
16
+ CreateArchiveCommandOutput,
17
+ } from "../commands/CreateArchiveCommand";
18
+ import {
19
+ CreateIngressPointCommandInput,
20
+ CreateIngressPointCommandOutput,
21
+ } from "../commands/CreateIngressPointCommand";
22
+ import {
23
+ CreateRelayCommandInput,
24
+ CreateRelayCommandOutput,
25
+ } from "../commands/CreateRelayCommand";
26
+ import {
27
+ CreateRuleSetCommandInput,
28
+ CreateRuleSetCommandOutput,
29
+ } from "../commands/CreateRuleSetCommand";
30
+ import {
31
+ CreateTrafficPolicyCommandInput,
32
+ CreateTrafficPolicyCommandOutput,
33
+ } from "../commands/CreateTrafficPolicyCommand";
34
+ import {
35
+ DeleteAddonInstanceCommandInput,
36
+ DeleteAddonInstanceCommandOutput,
37
+ } from "../commands/DeleteAddonInstanceCommand";
38
+ import {
39
+ DeleteAddonSubscriptionCommandInput,
40
+ DeleteAddonSubscriptionCommandOutput,
41
+ } from "../commands/DeleteAddonSubscriptionCommand";
42
+ import {
43
+ DeleteArchiveCommandInput,
44
+ DeleteArchiveCommandOutput,
45
+ } from "../commands/DeleteArchiveCommand";
46
+ import {
47
+ DeleteIngressPointCommandInput,
48
+ DeleteIngressPointCommandOutput,
49
+ } from "../commands/DeleteIngressPointCommand";
50
+ import {
51
+ DeleteRelayCommandInput,
52
+ DeleteRelayCommandOutput,
53
+ } from "../commands/DeleteRelayCommand";
54
+ import {
55
+ DeleteRuleSetCommandInput,
56
+ DeleteRuleSetCommandOutput,
57
+ } from "../commands/DeleteRuleSetCommand";
58
+ import {
59
+ DeleteTrafficPolicyCommandInput,
60
+ DeleteTrafficPolicyCommandOutput,
61
+ } from "../commands/DeleteTrafficPolicyCommand";
62
+ import {
63
+ GetAddonInstanceCommandInput,
64
+ GetAddonInstanceCommandOutput,
65
+ } from "../commands/GetAddonInstanceCommand";
66
+ import {
67
+ GetAddonSubscriptionCommandInput,
68
+ GetAddonSubscriptionCommandOutput,
69
+ } from "../commands/GetAddonSubscriptionCommand";
70
+ import {
71
+ GetArchiveCommandInput,
72
+ GetArchiveCommandOutput,
73
+ } from "../commands/GetArchiveCommand";
74
+ import {
75
+ GetArchiveExportCommandInput,
76
+ GetArchiveExportCommandOutput,
77
+ } from "../commands/GetArchiveExportCommand";
78
+ import {
79
+ GetArchiveMessageCommandInput,
80
+ GetArchiveMessageCommandOutput,
81
+ } from "../commands/GetArchiveMessageCommand";
82
+ import {
83
+ GetArchiveMessageContentCommandInput,
84
+ GetArchiveMessageContentCommandOutput,
85
+ } from "../commands/GetArchiveMessageContentCommand";
86
+ import {
87
+ GetArchiveSearchCommandInput,
88
+ GetArchiveSearchCommandOutput,
89
+ } from "../commands/GetArchiveSearchCommand";
90
+ import {
91
+ GetArchiveSearchResultsCommandInput,
92
+ GetArchiveSearchResultsCommandOutput,
93
+ } from "../commands/GetArchiveSearchResultsCommand";
94
+ import {
95
+ GetIngressPointCommandInput,
96
+ GetIngressPointCommandOutput,
97
+ } from "../commands/GetIngressPointCommand";
98
+ import {
99
+ GetRelayCommandInput,
100
+ GetRelayCommandOutput,
101
+ } from "../commands/GetRelayCommand";
102
+ import {
103
+ GetRuleSetCommandInput,
104
+ GetRuleSetCommandOutput,
105
+ } from "../commands/GetRuleSetCommand";
106
+ import {
107
+ GetTrafficPolicyCommandInput,
108
+ GetTrafficPolicyCommandOutput,
109
+ } from "../commands/GetTrafficPolicyCommand";
110
+ import {
111
+ ListAddonInstancesCommandInput,
112
+ ListAddonInstancesCommandOutput,
113
+ } from "../commands/ListAddonInstancesCommand";
114
+ import {
115
+ ListAddonSubscriptionsCommandInput,
116
+ ListAddonSubscriptionsCommandOutput,
117
+ } from "../commands/ListAddonSubscriptionsCommand";
118
+ import {
119
+ ListArchiveExportsCommandInput,
120
+ ListArchiveExportsCommandOutput,
121
+ } from "../commands/ListArchiveExportsCommand";
122
+ import {
123
+ ListArchivesCommandInput,
124
+ ListArchivesCommandOutput,
125
+ } from "../commands/ListArchivesCommand";
126
+ import {
127
+ ListArchiveSearchesCommandInput,
128
+ ListArchiveSearchesCommandOutput,
129
+ } from "../commands/ListArchiveSearchesCommand";
130
+ import {
131
+ ListIngressPointsCommandInput,
132
+ ListIngressPointsCommandOutput,
133
+ } from "../commands/ListIngressPointsCommand";
134
+ import {
135
+ ListRelaysCommandInput,
136
+ ListRelaysCommandOutput,
137
+ } from "../commands/ListRelaysCommand";
138
+ import {
139
+ ListRuleSetsCommandInput,
140
+ ListRuleSetsCommandOutput,
141
+ } from "../commands/ListRuleSetsCommand";
142
+ import {
143
+ ListTagsForResourceCommandInput,
144
+ ListTagsForResourceCommandOutput,
145
+ } from "../commands/ListTagsForResourceCommand";
146
+ import {
147
+ ListTrafficPoliciesCommandInput,
148
+ ListTrafficPoliciesCommandOutput,
149
+ } from "../commands/ListTrafficPoliciesCommand";
150
+ import {
151
+ StartArchiveExportCommandInput,
152
+ StartArchiveExportCommandOutput,
153
+ } from "../commands/StartArchiveExportCommand";
154
+ import {
155
+ StartArchiveSearchCommandInput,
156
+ StartArchiveSearchCommandOutput,
157
+ } from "../commands/StartArchiveSearchCommand";
158
+ import {
159
+ StopArchiveExportCommandInput,
160
+ StopArchiveExportCommandOutput,
161
+ } from "../commands/StopArchiveExportCommand";
162
+ import {
163
+ StopArchiveSearchCommandInput,
164
+ StopArchiveSearchCommandOutput,
165
+ } from "../commands/StopArchiveSearchCommand";
166
+ import {
167
+ TagResourceCommandInput,
168
+ TagResourceCommandOutput,
169
+ } from "../commands/TagResourceCommand";
170
+ import {
171
+ UntagResourceCommandInput,
172
+ UntagResourceCommandOutput,
173
+ } from "../commands/UntagResourceCommand";
174
+ import {
175
+ UpdateArchiveCommandInput,
176
+ UpdateArchiveCommandOutput,
177
+ } from "../commands/UpdateArchiveCommand";
178
+ import {
179
+ UpdateIngressPointCommandInput,
180
+ UpdateIngressPointCommandOutput,
181
+ } from "../commands/UpdateIngressPointCommand";
182
+ import {
183
+ UpdateRelayCommandInput,
184
+ UpdateRelayCommandOutput,
185
+ } from "../commands/UpdateRelayCommand";
186
+ import {
187
+ UpdateRuleSetCommandInput,
188
+ UpdateRuleSetCommandOutput,
189
+ } from "../commands/UpdateRuleSetCommand";
190
+ import {
191
+ UpdateTrafficPolicyCommandInput,
192
+ UpdateTrafficPolicyCommandOutput,
193
+ } from "../commands/UpdateTrafficPolicyCommand";
194
+ export declare const se_CreateAddonInstanceCommand: (
195
+ input: CreateAddonInstanceCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const se_CreateAddonSubscriptionCommand: (
199
+ input: CreateAddonSubscriptionCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const se_CreateArchiveCommand: (
203
+ input: CreateArchiveCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const se_CreateIngressPointCommand: (
207
+ input: CreateIngressPointCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const se_CreateRelayCommand: (
211
+ input: CreateRelayCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const se_CreateRuleSetCommand: (
215
+ input: CreateRuleSetCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const se_CreateTrafficPolicyCommand: (
219
+ input: CreateTrafficPolicyCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const se_DeleteAddonInstanceCommand: (
223
+ input: DeleteAddonInstanceCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const se_DeleteAddonSubscriptionCommand: (
227
+ input: DeleteAddonSubscriptionCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const se_DeleteArchiveCommand: (
231
+ input: DeleteArchiveCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const se_DeleteIngressPointCommand: (
235
+ input: DeleteIngressPointCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
238
+ export declare const se_DeleteRelayCommand: (
239
+ input: DeleteRelayCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
242
+ export declare const se_DeleteRuleSetCommand: (
243
+ input: DeleteRuleSetCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
246
+ export declare const se_DeleteTrafficPolicyCommand: (
247
+ input: DeleteTrafficPolicyCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
250
+ export declare const se_GetAddonInstanceCommand: (
251
+ input: GetAddonInstanceCommandInput,
252
+ context: __SerdeContext
253
+ ) => Promise<__HttpRequest>;
254
+ export declare const se_GetAddonSubscriptionCommand: (
255
+ input: GetAddonSubscriptionCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
258
+ export declare const se_GetArchiveCommand: (
259
+ input: GetArchiveCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
262
+ export declare const se_GetArchiveExportCommand: (
263
+ input: GetArchiveExportCommandInput,
264
+ context: __SerdeContext
265
+ ) => Promise<__HttpRequest>;
266
+ export declare const se_GetArchiveMessageCommand: (
267
+ input: GetArchiveMessageCommandInput,
268
+ context: __SerdeContext
269
+ ) => Promise<__HttpRequest>;
270
+ export declare const se_GetArchiveMessageContentCommand: (
271
+ input: GetArchiveMessageContentCommandInput,
272
+ context: __SerdeContext
273
+ ) => Promise<__HttpRequest>;
274
+ export declare const se_GetArchiveSearchCommand: (
275
+ input: GetArchiveSearchCommandInput,
276
+ context: __SerdeContext
277
+ ) => Promise<__HttpRequest>;
278
+ export declare const se_GetArchiveSearchResultsCommand: (
279
+ input: GetArchiveSearchResultsCommandInput,
280
+ context: __SerdeContext
281
+ ) => Promise<__HttpRequest>;
282
+ export declare const se_GetIngressPointCommand: (
283
+ input: GetIngressPointCommandInput,
284
+ context: __SerdeContext
285
+ ) => Promise<__HttpRequest>;
286
+ export declare const se_GetRelayCommand: (
287
+ input: GetRelayCommandInput,
288
+ context: __SerdeContext
289
+ ) => Promise<__HttpRequest>;
290
+ export declare const se_GetRuleSetCommand: (
291
+ input: GetRuleSetCommandInput,
292
+ context: __SerdeContext
293
+ ) => Promise<__HttpRequest>;
294
+ export declare const se_GetTrafficPolicyCommand: (
295
+ input: GetTrafficPolicyCommandInput,
296
+ context: __SerdeContext
297
+ ) => Promise<__HttpRequest>;
298
+ export declare const se_ListAddonInstancesCommand: (
299
+ input: ListAddonInstancesCommandInput,
300
+ context: __SerdeContext
301
+ ) => Promise<__HttpRequest>;
302
+ export declare const se_ListAddonSubscriptionsCommand: (
303
+ input: ListAddonSubscriptionsCommandInput,
304
+ context: __SerdeContext
305
+ ) => Promise<__HttpRequest>;
306
+ export declare const se_ListArchiveExportsCommand: (
307
+ input: ListArchiveExportsCommandInput,
308
+ context: __SerdeContext
309
+ ) => Promise<__HttpRequest>;
310
+ export declare const se_ListArchivesCommand: (
311
+ input: ListArchivesCommandInput,
312
+ context: __SerdeContext
313
+ ) => Promise<__HttpRequest>;
314
+ export declare const se_ListArchiveSearchesCommand: (
315
+ input: ListArchiveSearchesCommandInput,
316
+ context: __SerdeContext
317
+ ) => Promise<__HttpRequest>;
318
+ export declare const se_ListIngressPointsCommand: (
319
+ input: ListIngressPointsCommandInput,
320
+ context: __SerdeContext
321
+ ) => Promise<__HttpRequest>;
322
+ export declare const se_ListRelaysCommand: (
323
+ input: ListRelaysCommandInput,
324
+ context: __SerdeContext
325
+ ) => Promise<__HttpRequest>;
326
+ export declare const se_ListRuleSetsCommand: (
327
+ input: ListRuleSetsCommandInput,
328
+ context: __SerdeContext
329
+ ) => Promise<__HttpRequest>;
330
+ export declare const se_ListTagsForResourceCommand: (
331
+ input: ListTagsForResourceCommandInput,
332
+ context: __SerdeContext
333
+ ) => Promise<__HttpRequest>;
334
+ export declare const se_ListTrafficPoliciesCommand: (
335
+ input: ListTrafficPoliciesCommandInput,
336
+ context: __SerdeContext
337
+ ) => Promise<__HttpRequest>;
338
+ export declare const se_StartArchiveExportCommand: (
339
+ input: StartArchiveExportCommandInput,
340
+ context: __SerdeContext
341
+ ) => Promise<__HttpRequest>;
342
+ export declare const se_StartArchiveSearchCommand: (
343
+ input: StartArchiveSearchCommandInput,
344
+ context: __SerdeContext
345
+ ) => Promise<__HttpRequest>;
346
+ export declare const se_StopArchiveExportCommand: (
347
+ input: StopArchiveExportCommandInput,
348
+ context: __SerdeContext
349
+ ) => Promise<__HttpRequest>;
350
+ export declare const se_StopArchiveSearchCommand: (
351
+ input: StopArchiveSearchCommandInput,
352
+ context: __SerdeContext
353
+ ) => Promise<__HttpRequest>;
354
+ export declare const se_TagResourceCommand: (
355
+ input: TagResourceCommandInput,
356
+ context: __SerdeContext
357
+ ) => Promise<__HttpRequest>;
358
+ export declare const se_UntagResourceCommand: (
359
+ input: UntagResourceCommandInput,
360
+ context: __SerdeContext
361
+ ) => Promise<__HttpRequest>;
362
+ export declare const se_UpdateArchiveCommand: (
363
+ input: UpdateArchiveCommandInput,
364
+ context: __SerdeContext
365
+ ) => Promise<__HttpRequest>;
366
+ export declare const se_UpdateIngressPointCommand: (
367
+ input: UpdateIngressPointCommandInput,
368
+ context: __SerdeContext
369
+ ) => Promise<__HttpRequest>;
370
+ export declare const se_UpdateRelayCommand: (
371
+ input: UpdateRelayCommandInput,
372
+ context: __SerdeContext
373
+ ) => Promise<__HttpRequest>;
374
+ export declare const se_UpdateRuleSetCommand: (
375
+ input: UpdateRuleSetCommandInput,
376
+ context: __SerdeContext
377
+ ) => Promise<__HttpRequest>;
378
+ export declare const se_UpdateTrafficPolicyCommand: (
379
+ input: UpdateTrafficPolicyCommandInput,
380
+ context: __SerdeContext
381
+ ) => Promise<__HttpRequest>;
382
+ export declare const de_CreateAddonInstanceCommand: (
383
+ output: __HttpResponse,
384
+ context: __SerdeContext
385
+ ) => Promise<CreateAddonInstanceCommandOutput>;
386
+ export declare const de_CreateAddonSubscriptionCommand: (
387
+ output: __HttpResponse,
388
+ context: __SerdeContext
389
+ ) => Promise<CreateAddonSubscriptionCommandOutput>;
390
+ export declare const de_CreateArchiveCommand: (
391
+ output: __HttpResponse,
392
+ context: __SerdeContext
393
+ ) => Promise<CreateArchiveCommandOutput>;
394
+ export declare const de_CreateIngressPointCommand: (
395
+ output: __HttpResponse,
396
+ context: __SerdeContext
397
+ ) => Promise<CreateIngressPointCommandOutput>;
398
+ export declare const de_CreateRelayCommand: (
399
+ output: __HttpResponse,
400
+ context: __SerdeContext
401
+ ) => Promise<CreateRelayCommandOutput>;
402
+ export declare const de_CreateRuleSetCommand: (
403
+ output: __HttpResponse,
404
+ context: __SerdeContext
405
+ ) => Promise<CreateRuleSetCommandOutput>;
406
+ export declare const de_CreateTrafficPolicyCommand: (
407
+ output: __HttpResponse,
408
+ context: __SerdeContext
409
+ ) => Promise<CreateTrafficPolicyCommandOutput>;
410
+ export declare const de_DeleteAddonInstanceCommand: (
411
+ output: __HttpResponse,
412
+ context: __SerdeContext
413
+ ) => Promise<DeleteAddonInstanceCommandOutput>;
414
+ export declare const de_DeleteAddonSubscriptionCommand: (
415
+ output: __HttpResponse,
416
+ context: __SerdeContext
417
+ ) => Promise<DeleteAddonSubscriptionCommandOutput>;
418
+ export declare const de_DeleteArchiveCommand: (
419
+ output: __HttpResponse,
420
+ context: __SerdeContext
421
+ ) => Promise<DeleteArchiveCommandOutput>;
422
+ export declare const de_DeleteIngressPointCommand: (
423
+ output: __HttpResponse,
424
+ context: __SerdeContext
425
+ ) => Promise<DeleteIngressPointCommandOutput>;
426
+ export declare const de_DeleteRelayCommand: (
427
+ output: __HttpResponse,
428
+ context: __SerdeContext
429
+ ) => Promise<DeleteRelayCommandOutput>;
430
+ export declare const de_DeleteRuleSetCommand: (
431
+ output: __HttpResponse,
432
+ context: __SerdeContext
433
+ ) => Promise<DeleteRuleSetCommandOutput>;
434
+ export declare const de_DeleteTrafficPolicyCommand: (
435
+ output: __HttpResponse,
436
+ context: __SerdeContext
437
+ ) => Promise<DeleteTrafficPolicyCommandOutput>;
438
+ export declare const de_GetAddonInstanceCommand: (
439
+ output: __HttpResponse,
440
+ context: __SerdeContext
441
+ ) => Promise<GetAddonInstanceCommandOutput>;
442
+ export declare const de_GetAddonSubscriptionCommand: (
443
+ output: __HttpResponse,
444
+ context: __SerdeContext
445
+ ) => Promise<GetAddonSubscriptionCommandOutput>;
446
+ export declare const de_GetArchiveCommand: (
447
+ output: __HttpResponse,
448
+ context: __SerdeContext
449
+ ) => Promise<GetArchiveCommandOutput>;
450
+ export declare const de_GetArchiveExportCommand: (
451
+ output: __HttpResponse,
452
+ context: __SerdeContext
453
+ ) => Promise<GetArchiveExportCommandOutput>;
454
+ export declare const de_GetArchiveMessageCommand: (
455
+ output: __HttpResponse,
456
+ context: __SerdeContext
457
+ ) => Promise<GetArchiveMessageCommandOutput>;
458
+ export declare const de_GetArchiveMessageContentCommand: (
459
+ output: __HttpResponse,
460
+ context: __SerdeContext
461
+ ) => Promise<GetArchiveMessageContentCommandOutput>;
462
+ export declare const de_GetArchiveSearchCommand: (
463
+ output: __HttpResponse,
464
+ context: __SerdeContext
465
+ ) => Promise<GetArchiveSearchCommandOutput>;
466
+ export declare const de_GetArchiveSearchResultsCommand: (
467
+ output: __HttpResponse,
468
+ context: __SerdeContext
469
+ ) => Promise<GetArchiveSearchResultsCommandOutput>;
470
+ export declare const de_GetIngressPointCommand: (
471
+ output: __HttpResponse,
472
+ context: __SerdeContext
473
+ ) => Promise<GetIngressPointCommandOutput>;
474
+ export declare const de_GetRelayCommand: (
475
+ output: __HttpResponse,
476
+ context: __SerdeContext
477
+ ) => Promise<GetRelayCommandOutput>;
478
+ export declare const de_GetRuleSetCommand: (
479
+ output: __HttpResponse,
480
+ context: __SerdeContext
481
+ ) => Promise<GetRuleSetCommandOutput>;
482
+ export declare const de_GetTrafficPolicyCommand: (
483
+ output: __HttpResponse,
484
+ context: __SerdeContext
485
+ ) => Promise<GetTrafficPolicyCommandOutput>;
486
+ export declare const de_ListAddonInstancesCommand: (
487
+ output: __HttpResponse,
488
+ context: __SerdeContext
489
+ ) => Promise<ListAddonInstancesCommandOutput>;
490
+ export declare const de_ListAddonSubscriptionsCommand: (
491
+ output: __HttpResponse,
492
+ context: __SerdeContext
493
+ ) => Promise<ListAddonSubscriptionsCommandOutput>;
494
+ export declare const de_ListArchiveExportsCommand: (
495
+ output: __HttpResponse,
496
+ context: __SerdeContext
497
+ ) => Promise<ListArchiveExportsCommandOutput>;
498
+ export declare const de_ListArchivesCommand: (
499
+ output: __HttpResponse,
500
+ context: __SerdeContext
501
+ ) => Promise<ListArchivesCommandOutput>;
502
+ export declare const de_ListArchiveSearchesCommand: (
503
+ output: __HttpResponse,
504
+ context: __SerdeContext
505
+ ) => Promise<ListArchiveSearchesCommandOutput>;
506
+ export declare const de_ListIngressPointsCommand: (
507
+ output: __HttpResponse,
508
+ context: __SerdeContext
509
+ ) => Promise<ListIngressPointsCommandOutput>;
510
+ export declare const de_ListRelaysCommand: (
511
+ output: __HttpResponse,
512
+ context: __SerdeContext
513
+ ) => Promise<ListRelaysCommandOutput>;
514
+ export declare const de_ListRuleSetsCommand: (
515
+ output: __HttpResponse,
516
+ context: __SerdeContext
517
+ ) => Promise<ListRuleSetsCommandOutput>;
518
+ export declare const de_ListTagsForResourceCommand: (
519
+ output: __HttpResponse,
520
+ context: __SerdeContext
521
+ ) => Promise<ListTagsForResourceCommandOutput>;
522
+ export declare const de_ListTrafficPoliciesCommand: (
523
+ output: __HttpResponse,
524
+ context: __SerdeContext
525
+ ) => Promise<ListTrafficPoliciesCommandOutput>;
526
+ export declare const de_StartArchiveExportCommand: (
527
+ output: __HttpResponse,
528
+ context: __SerdeContext
529
+ ) => Promise<StartArchiveExportCommandOutput>;
530
+ export declare const de_StartArchiveSearchCommand: (
531
+ output: __HttpResponse,
532
+ context: __SerdeContext
533
+ ) => Promise<StartArchiveSearchCommandOutput>;
534
+ export declare const de_StopArchiveExportCommand: (
535
+ output: __HttpResponse,
536
+ context: __SerdeContext
537
+ ) => Promise<StopArchiveExportCommandOutput>;
538
+ export declare const de_StopArchiveSearchCommand: (
539
+ output: __HttpResponse,
540
+ context: __SerdeContext
541
+ ) => Promise<StopArchiveSearchCommandOutput>;
542
+ export declare const de_TagResourceCommand: (
543
+ output: __HttpResponse,
544
+ context: __SerdeContext
545
+ ) => Promise<TagResourceCommandOutput>;
546
+ export declare const de_UntagResourceCommand: (
547
+ output: __HttpResponse,
548
+ context: __SerdeContext
549
+ ) => Promise<UntagResourceCommandOutput>;
550
+ export declare const de_UpdateArchiveCommand: (
551
+ output: __HttpResponse,
552
+ context: __SerdeContext
553
+ ) => Promise<UpdateArchiveCommandOutput>;
554
+ export declare const de_UpdateIngressPointCommand: (
555
+ output: __HttpResponse,
556
+ context: __SerdeContext
557
+ ) => Promise<UpdateIngressPointCommandOutput>;
558
+ export declare const de_UpdateRelayCommand: (
559
+ output: __HttpResponse,
560
+ context: __SerdeContext
561
+ ) => Promise<UpdateRelayCommandOutput>;
562
+ export declare const de_UpdateRuleSetCommand: (
563
+ output: __HttpResponse,
564
+ context: __SerdeContext
565
+ ) => Promise<UpdateRuleSetCommandOutput>;
566
+ export declare const de_UpdateTrafficPolicyCommand: (
567
+ output: __HttpResponse,
568
+ context: __SerdeContext
569
+ ) => Promise<UpdateTrafficPolicyCommandOutput>;
@@ -0,0 +1,85 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { MailManagerClientConfig } from "./MailManagerClient";
3
+ export declare const getRuntimeConfig: (config: MailManagerClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<any>;
17
+ requestHandler:
18
+ | import("@smithy/protocol-http").HttpHandler<any>
19
+ | RequestHandler;
20
+ retryMode: string | import("@smithy/types").Provider<string>;
21
+ sha256: import("@smithy/types").HashConstructor;
22
+ streamCollector: import("@smithy/types").StreamCollector;
23
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ apiVersion: string;
26
+ urlParser: import("@smithy/types").UrlParser;
27
+ base64Decoder: import("@smithy/types").Decoder;
28
+ base64Encoder: (_input: string | Uint8Array) => string;
29
+ utf8Decoder: import("@smithy/types").Decoder;
30
+ utf8Encoder: (input: string | Uint8Array) => string;
31
+ disableHostPrefix: boolean;
32
+ serviceId: string;
33
+ logger: import("@smithy/types").Logger;
34
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
35
+ endpoint?:
36
+ | ((
37
+ | string
38
+ | import("@smithy/types").Endpoint
39
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
40
+ | import("@smithy/types").EndpointV2
41
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
42
+ ) &
43
+ (
44
+ | string
45
+ | import("@smithy/types").Provider<string>
46
+ | import("@smithy/types").Endpoint
47
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
48
+ | import("@smithy/types").EndpointV2
49
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
50
+ ))
51
+ | undefined;
52
+ endpointProvider: (
53
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
54
+ context?: {
55
+ logger?: import("@smithy/types").Logger | undefined;
56
+ }
57
+ ) => import("@smithy/types").EndpointV2;
58
+ tls?: boolean | undefined;
59
+ retryStrategy?:
60
+ | import("@smithy/types").RetryStrategy
61
+ | import("@smithy/types").RetryStrategyV2
62
+ | undefined;
63
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
64
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
65
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MailManagerHttpAuthSchemeProvider;
66
+ credentials?:
67
+ | import("@smithy/types").AwsCredentialIdentity
68
+ | import("@smithy/types").AwsCredentialIdentityProvider
69
+ | undefined;
70
+ signer?:
71
+ | import("@smithy/types").RequestSigner
72
+ | ((
73
+ authScheme?: import("@smithy/types").AuthScheme | undefined
74
+ ) => Promise<import("@smithy/types").RequestSigner>)
75
+ | undefined;
76
+ signingEscapePath?: boolean | undefined;
77
+ systemClockOffset?: number | undefined;
78
+ signingRegion?: string | undefined;
79
+ signerConstructor?:
80
+ | (new (
81
+ options: import("@smithy/signature-v4").SignatureV4Init &
82
+ import("@smithy/signature-v4").SignatureV4CryptoInit
83
+ ) => import("@smithy/types").RequestSigner)
84
+ | undefined;
85
+ };