@aws-sdk/client-waf 3.32.0 → 3.36.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 (963) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist-cjs/WAF.js +1175 -0
  3. package/dist-cjs/WAFClient.js +53 -0
  4. package/dist-cjs/commands/CreateByteMatchSetCommand.js +91 -0
  5. package/dist-cjs/commands/CreateGeoMatchSetCommand.js +88 -0
  6. package/dist-cjs/commands/CreateIPSetCommand.js +93 -0
  7. package/dist-cjs/commands/CreateRateBasedRuleCommand.js +153 -0
  8. package/dist-cjs/commands/CreateRegexMatchSetCommand.js +91 -0
  9. package/dist-cjs/commands/CreateRegexPatternSetCommand.js +87 -0
  10. package/dist-cjs/commands/CreateRuleCommand.js +111 -0
  11. package/dist-cjs/commands/CreateRuleGroupCommand.js +82 -0
  12. package/dist-cjs/commands/CreateSizeConstraintSetCommand.js +91 -0
  13. package/dist-cjs/commands/CreateSqlInjectionMatchSetCommand.js +89 -0
  14. package/dist-cjs/commands/CreateWebACLCommand.js +99 -0
  15. package/dist-cjs/commands/CreateWebACLMigrationStackCommand.js +67 -0
  16. package/dist-cjs/commands/CreateXssMatchSetCommand.js +89 -0
  17. package/dist-cjs/commands/DeleteByteMatchSetCommand.js +83 -0
  18. package/dist-cjs/commands/DeleteGeoMatchSetCommand.js +83 -0
  19. package/dist-cjs/commands/DeleteIPSetCommand.js +83 -0
  20. package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +69 -0
  21. package/dist-cjs/commands/DeletePermissionPolicyCommand.js +69 -0
  22. package/dist-cjs/commands/DeleteRateBasedRuleCommand.js +87 -0
  23. package/dist-cjs/commands/DeleteRegexMatchSetCommand.js +83 -0
  24. package/dist-cjs/commands/DeleteRegexPatternSetCommand.js +69 -0
  25. package/dist-cjs/commands/DeleteRuleCommand.js +83 -0
  26. package/dist-cjs/commands/DeleteRuleGroupCommand.js +83 -0
  27. package/dist-cjs/commands/DeleteSizeConstraintSetCommand.js +83 -0
  28. package/dist-cjs/commands/DeleteSqlInjectionMatchSetCommand.js +84 -0
  29. package/dist-cjs/commands/DeleteWebACLCommand.js +81 -0
  30. package/dist-cjs/commands/DeleteXssMatchSetCommand.js +84 -0
  31. package/dist-cjs/commands/GetByteMatchSetCommand.js +68 -0
  32. package/dist-cjs/commands/GetChangeTokenCommand.js +74 -0
  33. package/dist-cjs/commands/GetChangeTokenStatusCommand.js +84 -0
  34. package/dist-cjs/commands/GetGeoMatchSetCommand.js +68 -0
  35. package/dist-cjs/commands/GetIPSetCommand.js +68 -0
  36. package/dist-cjs/commands/GetLoggingConfigurationCommand.js +68 -0
  37. package/dist-cjs/commands/GetPermissionPolicyCommand.js +68 -0
  38. package/dist-cjs/commands/GetRateBasedRuleCommand.js +70 -0
  39. package/dist-cjs/commands/GetRateBasedRuleManagedKeysCommand.js +70 -0
  40. package/dist-cjs/commands/GetRegexMatchSetCommand.js +68 -0
  41. package/dist-cjs/commands/GetRegexPatternSetCommand.js +68 -0
  42. package/dist-cjs/commands/GetRuleCommand.js +68 -0
  43. package/dist-cjs/commands/GetRuleGroupCommand.js +69 -0
  44. package/dist-cjs/commands/GetSampledRequestsCommand.js +72 -0
  45. package/dist-cjs/commands/GetSizeConstraintSetCommand.js +68 -0
  46. package/dist-cjs/commands/GetSqlInjectionMatchSetCommand.js +68 -0
  47. package/dist-cjs/commands/GetWebACLCommand.js +68 -0
  48. package/dist-cjs/commands/GetXssMatchSetCommand.js +68 -0
  49. package/dist-cjs/commands/ListActivatedRulesInRuleGroupCommand.js +68 -0
  50. package/dist-cjs/commands/ListByteMatchSetsCommand.js +68 -0
  51. package/dist-cjs/commands/ListGeoMatchSetsCommand.js +68 -0
  52. package/dist-cjs/commands/ListIPSetsCommand.js +68 -0
  53. package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +68 -0
  54. package/dist-cjs/commands/ListRateBasedRulesCommand.js +68 -0
  55. package/dist-cjs/commands/ListRegexMatchSetsCommand.js +68 -0
  56. package/dist-cjs/commands/ListRegexPatternSetsCommand.js +68 -0
  57. package/dist-cjs/commands/ListRuleGroupsCommand.js +68 -0
  58. package/dist-cjs/commands/ListRulesCommand.js +68 -0
  59. package/dist-cjs/commands/ListSizeConstraintSetsCommand.js +68 -0
  60. package/dist-cjs/commands/ListSqlInjectionMatchSetsCommand.js +68 -0
  61. package/dist-cjs/commands/ListSubscribedRuleGroupsCommand.js +68 -0
  62. package/dist-cjs/commands/ListTagsForResourceCommand.js +69 -0
  63. package/dist-cjs/commands/ListWebACLsCommand.js +68 -0
  64. package/dist-cjs/commands/ListXssMatchSetsCommand.js +68 -0
  65. package/dist-cjs/commands/PutLoggingConfigurationCommand.js +85 -0
  66. package/dist-cjs/commands/PutPermissionPolicyCommand.js +100 -0
  67. package/dist-cjs/commands/TagResourceCommand.js +69 -0
  68. package/dist-cjs/commands/UntagResourceCommand.js +68 -0
  69. package/dist-cjs/commands/UpdateByteMatchSetCommand.js +106 -0
  70. package/dist-cjs/commands/UpdateGeoMatchSetCommand.js +98 -0
  71. package/dist-cjs/commands/UpdateIPSetCommand.js +133 -0
  72. package/dist-cjs/commands/UpdateRateBasedRuleCommand.js +114 -0
  73. package/dist-cjs/commands/UpdateRegexMatchSetCommand.js +102 -0
  74. package/dist-cjs/commands/UpdateRegexPatternSetCommand.js +107 -0
  75. package/dist-cjs/commands/UpdateRuleCommand.js +109 -0
  76. package/dist-cjs/commands/UpdateRuleGroupCommand.js +92 -0
  77. package/dist-cjs/commands/UpdateSizeConstraintSetCommand.js +110 -0
  78. package/dist-cjs/commands/UpdateSqlInjectionMatchSetCommand.js +109 -0
  79. package/dist-cjs/commands/UpdateWebACLCommand.js +139 -0
  80. package/dist-cjs/commands/UpdateXssMatchSetCommand.js +111 -0
  81. package/dist-cjs/endpoints.js +67 -0
  82. package/dist-cjs/index.js +83 -0
  83. package/dist-cjs/models/index.js +4 -0
  84. package/dist-cjs/models/models_0.js +2436 -0
  85. package/dist-cjs/protocols/Aws_json1_1.js +9199 -0
  86. package/dist-cjs/runtimeConfig.browser.js +41 -0
  87. package/dist-cjs/runtimeConfig.js +46 -0
  88. package/dist-cjs/runtimeConfig.native.js +19 -0
  89. package/dist-cjs/runtimeConfig.shared.js +20 -0
  90. package/dist-es/WAF.js +1165 -0
  91. package/dist-es/WAFClient.js +37 -0
  92. package/dist-es/commands/CreateByteMatchSetCommand.js +39 -0
  93. package/dist-es/commands/CreateGeoMatchSetCommand.js +39 -0
  94. package/dist-es/commands/CreateIPSetCommand.js +39 -0
  95. package/dist-es/commands/CreateRateBasedRuleCommand.js +39 -0
  96. package/dist-es/commands/CreateRegexMatchSetCommand.js +39 -0
  97. package/dist-es/commands/CreateRegexPatternSetCommand.js +39 -0
  98. package/dist-es/commands/CreateRuleCommand.js +39 -0
  99. package/dist-es/commands/CreateRuleGroupCommand.js +39 -0
  100. package/dist-es/commands/CreateSizeConstraintSetCommand.js +39 -0
  101. package/dist-es/commands/CreateSqlInjectionMatchSetCommand.js +39 -0
  102. package/dist-es/commands/CreateWebACLCommand.js +39 -0
  103. package/dist-es/commands/CreateWebACLMigrationStackCommand.js +39 -0
  104. package/dist-es/commands/CreateXssMatchSetCommand.js +39 -0
  105. package/dist-es/commands/DeleteByteMatchSetCommand.js +39 -0
  106. package/dist-es/commands/DeleteGeoMatchSetCommand.js +39 -0
  107. package/dist-es/commands/DeleteIPSetCommand.js +39 -0
  108. package/dist-es/commands/DeleteLoggingConfigurationCommand.js +39 -0
  109. package/dist-es/commands/DeletePermissionPolicyCommand.js +39 -0
  110. package/dist-es/commands/DeleteRateBasedRuleCommand.js +39 -0
  111. package/dist-es/commands/DeleteRegexMatchSetCommand.js +39 -0
  112. package/dist-es/commands/DeleteRegexPatternSetCommand.js +39 -0
  113. package/dist-es/commands/DeleteRuleCommand.js +39 -0
  114. package/dist-es/commands/DeleteRuleGroupCommand.js +39 -0
  115. package/dist-es/commands/DeleteSizeConstraintSetCommand.js +39 -0
  116. package/dist-es/commands/DeleteSqlInjectionMatchSetCommand.js +39 -0
  117. package/dist-es/commands/DeleteWebACLCommand.js +39 -0
  118. package/dist-es/commands/DeleteXssMatchSetCommand.js +39 -0
  119. package/dist-es/commands/GetByteMatchSetCommand.js +39 -0
  120. package/dist-es/commands/GetChangeTokenCommand.js +39 -0
  121. package/dist-es/commands/GetChangeTokenStatusCommand.js +39 -0
  122. package/dist-es/commands/GetGeoMatchSetCommand.js +39 -0
  123. package/dist-es/commands/GetIPSetCommand.js +39 -0
  124. package/dist-es/commands/GetLoggingConfigurationCommand.js +39 -0
  125. package/dist-es/commands/GetPermissionPolicyCommand.js +39 -0
  126. package/dist-es/commands/GetRateBasedRuleCommand.js +39 -0
  127. package/dist-es/commands/GetRateBasedRuleManagedKeysCommand.js +39 -0
  128. package/dist-es/commands/GetRegexMatchSetCommand.js +39 -0
  129. package/dist-es/commands/GetRegexPatternSetCommand.js +39 -0
  130. package/dist-es/commands/GetRuleCommand.js +39 -0
  131. package/dist-es/commands/GetRuleGroupCommand.js +39 -0
  132. package/dist-es/commands/GetSampledRequestsCommand.js +39 -0
  133. package/dist-es/commands/GetSizeConstraintSetCommand.js +39 -0
  134. package/dist-es/commands/GetSqlInjectionMatchSetCommand.js +39 -0
  135. package/dist-es/commands/GetWebACLCommand.js +39 -0
  136. package/dist-es/commands/GetXssMatchSetCommand.js +39 -0
  137. package/dist-es/commands/ListActivatedRulesInRuleGroupCommand.js +39 -0
  138. package/dist-es/commands/ListByteMatchSetsCommand.js +39 -0
  139. package/dist-es/commands/ListGeoMatchSetsCommand.js +39 -0
  140. package/dist-es/commands/ListIPSetsCommand.js +39 -0
  141. package/dist-es/commands/ListLoggingConfigurationsCommand.js +39 -0
  142. package/dist-es/commands/ListRateBasedRulesCommand.js +39 -0
  143. package/dist-es/commands/ListRegexMatchSetsCommand.js +39 -0
  144. package/dist-es/commands/ListRegexPatternSetsCommand.js +39 -0
  145. package/dist-es/commands/ListRuleGroupsCommand.js +39 -0
  146. package/dist-es/commands/ListRulesCommand.js +39 -0
  147. package/dist-es/commands/ListSizeConstraintSetsCommand.js +39 -0
  148. package/dist-es/commands/ListSqlInjectionMatchSetsCommand.js +39 -0
  149. package/dist-es/commands/ListSubscribedRuleGroupsCommand.js +39 -0
  150. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  151. package/dist-es/commands/ListWebACLsCommand.js +39 -0
  152. package/dist-es/commands/ListXssMatchSetsCommand.js +39 -0
  153. package/dist-es/commands/PutLoggingConfigurationCommand.js +39 -0
  154. package/dist-es/commands/PutPermissionPolicyCommand.js +39 -0
  155. package/dist-es/commands/TagResourceCommand.js +39 -0
  156. package/dist-es/commands/UntagResourceCommand.js +39 -0
  157. package/dist-es/commands/UpdateByteMatchSetCommand.js +39 -0
  158. package/dist-es/commands/UpdateGeoMatchSetCommand.js +39 -0
  159. package/dist-es/commands/UpdateIPSetCommand.js +39 -0
  160. package/dist-es/commands/UpdateRateBasedRuleCommand.js +39 -0
  161. package/dist-es/commands/UpdateRegexMatchSetCommand.js +39 -0
  162. package/dist-es/commands/UpdateRegexPatternSetCommand.js +39 -0
  163. package/dist-es/commands/UpdateRuleCommand.js +39 -0
  164. package/dist-es/commands/UpdateRuleGroupCommand.js +39 -0
  165. package/dist-es/commands/UpdateSizeConstraintSetCommand.js +39 -0
  166. package/dist-es/commands/UpdateSqlInjectionMatchSetCommand.js +39 -0
  167. package/dist-es/commands/UpdateWebACLCommand.js +39 -0
  168. package/dist-es/commands/UpdateXssMatchSetCommand.js +39 -0
  169. package/dist-es/endpoints.js +63 -0
  170. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  171. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  172. package/dist-es/models/models_0.js +1290 -0
  173. package/dist-es/protocols/Aws_json1_1.js +9604 -0
  174. package/dist-es/runtimeConfig.browser.js +16 -0
  175. package/dist-es/runtimeConfig.js +21 -0
  176. package/dist-es/runtimeConfig.native.js +8 -0
  177. package/dist-es/runtimeConfig.shared.js +13 -0
  178. package/dist-types/WAF.d.ts +2287 -0
  179. package/dist-types/WAFClient.d.ts +219 -0
  180. package/dist-types/commands/CreateByteMatchSetCommand.d.ts +66 -0
  181. package/dist-types/commands/CreateGeoMatchSetCommand.d.ts +63 -0
  182. package/dist-types/commands/CreateIPSetCommand.d.ts +68 -0
  183. package/dist-types/commands/CreateRateBasedRuleCommand.d.ts +128 -0
  184. package/dist-types/commands/CreateRegexMatchSetCommand.d.ts +66 -0
  185. package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +62 -0
  186. package/dist-types/commands/CreateRuleCommand.d.ts +86 -0
  187. package/dist-types/commands/CreateRuleGroupCommand.d.ts +57 -0
  188. package/dist-types/commands/CreateSizeConstraintSetCommand.d.ts +66 -0
  189. package/dist-types/commands/CreateSqlInjectionMatchSetCommand.d.ts +64 -0
  190. package/dist-types/commands/CreateWebACLCommand.d.ts +74 -0
  191. package/dist-types/commands/CreateWebACLMigrationStackCommand.d.ts +42 -0
  192. package/dist-types/commands/CreateXssMatchSetCommand.d.ts +64 -0
  193. package/dist-types/commands/DeleteByteMatchSetCommand.d.ts +58 -0
  194. package/dist-types/commands/DeleteGeoMatchSetCommand.d.ts +58 -0
  195. package/dist-types/commands/DeleteIPSetCommand.d.ts +58 -0
  196. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +44 -0
  197. package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +44 -0
  198. package/dist-types/commands/DeleteRateBasedRuleCommand.d.ts +62 -0
  199. package/dist-types/commands/DeleteRegexMatchSetCommand.d.ts +58 -0
  200. package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +44 -0
  201. package/dist-types/commands/DeleteRuleCommand.d.ts +58 -0
  202. package/dist-types/commands/DeleteRuleGroupCommand.d.ts +58 -0
  203. package/dist-types/commands/DeleteSizeConstraintSetCommand.d.ts +58 -0
  204. package/dist-types/commands/DeleteSqlInjectionMatchSetCommand.d.ts +59 -0
  205. package/dist-types/commands/DeleteWebACLCommand.d.ts +56 -0
  206. package/dist-types/commands/DeleteXssMatchSetCommand.d.ts +59 -0
  207. package/dist-types/commands/GetByteMatchSetCommand.d.ts +43 -0
  208. package/dist-types/commands/GetChangeTokenCommand.d.ts +49 -0
  209. package/dist-types/commands/GetChangeTokenStatusCommand.d.ts +59 -0
  210. package/dist-types/commands/GetGeoMatchSetCommand.d.ts +43 -0
  211. package/dist-types/commands/GetIPSetCommand.d.ts +43 -0
  212. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +43 -0
  213. package/dist-types/commands/GetPermissionPolicyCommand.d.ts +43 -0
  214. package/dist-types/commands/GetRateBasedRuleCommand.d.ts +45 -0
  215. package/dist-types/commands/GetRateBasedRuleManagedKeysCommand.d.ts +45 -0
  216. package/dist-types/commands/GetRegexMatchSetCommand.d.ts +43 -0
  217. package/dist-types/commands/GetRegexPatternSetCommand.d.ts +43 -0
  218. package/dist-types/commands/GetRuleCommand.d.ts +43 -0
  219. package/dist-types/commands/GetRuleGroupCommand.d.ts +44 -0
  220. package/dist-types/commands/GetSampledRequestsCommand.d.ts +47 -0
  221. package/dist-types/commands/GetSizeConstraintSetCommand.d.ts +43 -0
  222. package/dist-types/commands/GetSqlInjectionMatchSetCommand.d.ts +43 -0
  223. package/dist-types/commands/GetWebACLCommand.d.ts +43 -0
  224. package/dist-types/commands/GetXssMatchSetCommand.d.ts +43 -0
  225. package/dist-types/commands/ListActivatedRulesInRuleGroupCommand.d.ts +43 -0
  226. package/dist-types/commands/ListByteMatchSetsCommand.d.ts +43 -0
  227. package/dist-types/commands/ListGeoMatchSetsCommand.d.ts +43 -0
  228. package/dist-types/commands/ListIPSetsCommand.d.ts +43 -0
  229. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +43 -0
  230. package/dist-types/commands/ListRateBasedRulesCommand.d.ts +43 -0
  231. package/dist-types/commands/ListRegexMatchSetsCommand.d.ts +43 -0
  232. package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +43 -0
  233. package/dist-types/commands/ListRuleGroupsCommand.d.ts +43 -0
  234. package/dist-types/commands/ListRulesCommand.d.ts +43 -0
  235. package/dist-types/commands/ListSizeConstraintSetsCommand.d.ts +43 -0
  236. package/dist-types/commands/ListSqlInjectionMatchSetsCommand.d.ts +43 -0
  237. package/dist-types/commands/ListSubscribedRuleGroupsCommand.d.ts +43 -0
  238. package/dist-types/commands/ListTagsForResourceCommand.d.ts +44 -0
  239. package/dist-types/commands/ListWebACLsCommand.d.ts +43 -0
  240. package/dist-types/commands/ListXssMatchSetsCommand.d.ts +43 -0
  241. package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +60 -0
  242. package/dist-types/commands/PutPermissionPolicyCommand.d.ts +75 -0
  243. package/dist-types/commands/TagResourceCommand.d.ts +44 -0
  244. package/dist-types/commands/UntagResourceCommand.d.ts +43 -0
  245. package/dist-types/commands/UpdateByteMatchSetCommand.d.ts +81 -0
  246. package/dist-types/commands/UpdateGeoMatchSetCommand.d.ts +73 -0
  247. package/dist-types/commands/UpdateIPSetCommand.d.ts +108 -0
  248. package/dist-types/commands/UpdateRateBasedRuleCommand.d.ts +89 -0
  249. package/dist-types/commands/UpdateRegexMatchSetCommand.d.ts +77 -0
  250. package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +82 -0
  251. package/dist-types/commands/UpdateRuleCommand.d.ts +84 -0
  252. package/dist-types/commands/UpdateRuleGroupCommand.d.ts +67 -0
  253. package/dist-types/commands/UpdateSizeConstraintSetCommand.d.ts +85 -0
  254. package/dist-types/commands/UpdateSqlInjectionMatchSetCommand.d.ts +84 -0
  255. package/dist-types/commands/UpdateWebACLCommand.d.ts +114 -0
  256. package/dist-types/commands/UpdateXssMatchSetCommand.d.ts +86 -0
  257. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  258. package/{index.ts → dist-types/index.d.ts} +0 -0
  259. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  260. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  261. package/dist-types/protocols/Aws_json1_1.d.ts +233 -0
  262. package/dist-types/runtimeConfig.browser.d.ts +37 -0
  263. package/dist-types/runtimeConfig.d.ts +37 -0
  264. package/dist-types/runtimeConfig.native.d.ts +36 -0
  265. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  266. package/dist-types/ts3.4/WAF.d.ts +2287 -0
  267. package/dist-types/ts3.4/WAFClient.d.ts +219 -0
  268. package/dist-types/ts3.4/commands/CreateByteMatchSetCommand.d.ts +66 -0
  269. package/dist-types/ts3.4/commands/CreateGeoMatchSetCommand.d.ts +63 -0
  270. package/dist-types/ts3.4/commands/CreateIPSetCommand.d.ts +68 -0
  271. package/dist-types/ts3.4/commands/CreateRateBasedRuleCommand.d.ts +128 -0
  272. package/dist-types/ts3.4/commands/CreateRegexMatchSetCommand.d.ts +66 -0
  273. package/dist-types/ts3.4/commands/CreateRegexPatternSetCommand.d.ts +62 -0
  274. package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +86 -0
  275. package/dist-types/ts3.4/commands/CreateRuleGroupCommand.d.ts +57 -0
  276. package/dist-types/ts3.4/commands/CreateSizeConstraintSetCommand.d.ts +66 -0
  277. package/dist-types/ts3.4/commands/CreateSqlInjectionMatchSetCommand.d.ts +64 -0
  278. package/dist-types/ts3.4/commands/CreateWebACLCommand.d.ts +74 -0
  279. package/dist-types/ts3.4/commands/CreateWebACLMigrationStackCommand.d.ts +42 -0
  280. package/dist-types/ts3.4/commands/CreateXssMatchSetCommand.d.ts +64 -0
  281. package/dist-types/ts3.4/commands/DeleteByteMatchSetCommand.d.ts +58 -0
  282. package/dist-types/ts3.4/commands/DeleteGeoMatchSetCommand.d.ts +58 -0
  283. package/dist-types/ts3.4/commands/DeleteIPSetCommand.d.ts +58 -0
  284. package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +44 -0
  285. package/dist-types/ts3.4/commands/DeletePermissionPolicyCommand.d.ts +44 -0
  286. package/dist-types/ts3.4/commands/DeleteRateBasedRuleCommand.d.ts +62 -0
  287. package/dist-types/ts3.4/commands/DeleteRegexMatchSetCommand.d.ts +58 -0
  288. package/dist-types/ts3.4/commands/DeleteRegexPatternSetCommand.d.ts +44 -0
  289. package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +58 -0
  290. package/dist-types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +58 -0
  291. package/dist-types/ts3.4/commands/DeleteSizeConstraintSetCommand.d.ts +58 -0
  292. package/dist-types/ts3.4/commands/DeleteSqlInjectionMatchSetCommand.d.ts +59 -0
  293. package/dist-types/ts3.4/commands/DeleteWebACLCommand.d.ts +56 -0
  294. package/dist-types/ts3.4/commands/DeleteXssMatchSetCommand.d.ts +59 -0
  295. package/dist-types/ts3.4/commands/GetByteMatchSetCommand.d.ts +43 -0
  296. package/dist-types/ts3.4/commands/GetChangeTokenCommand.d.ts +49 -0
  297. package/dist-types/ts3.4/commands/GetChangeTokenStatusCommand.d.ts +59 -0
  298. package/dist-types/ts3.4/commands/GetGeoMatchSetCommand.d.ts +43 -0
  299. package/dist-types/ts3.4/commands/GetIPSetCommand.d.ts +43 -0
  300. package/dist-types/ts3.4/commands/GetLoggingConfigurationCommand.d.ts +43 -0
  301. package/dist-types/ts3.4/commands/GetPermissionPolicyCommand.d.ts +43 -0
  302. package/dist-types/ts3.4/commands/GetRateBasedRuleCommand.d.ts +45 -0
  303. package/dist-types/ts3.4/commands/GetRateBasedRuleManagedKeysCommand.d.ts +45 -0
  304. package/dist-types/ts3.4/commands/GetRegexMatchSetCommand.d.ts +43 -0
  305. package/dist-types/ts3.4/commands/GetRegexPatternSetCommand.d.ts +43 -0
  306. package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +43 -0
  307. package/dist-types/ts3.4/commands/GetRuleGroupCommand.d.ts +44 -0
  308. package/dist-types/ts3.4/commands/GetSampledRequestsCommand.d.ts +47 -0
  309. package/dist-types/ts3.4/commands/GetSizeConstraintSetCommand.d.ts +43 -0
  310. package/dist-types/ts3.4/commands/GetSqlInjectionMatchSetCommand.d.ts +43 -0
  311. package/dist-types/ts3.4/commands/GetWebACLCommand.d.ts +43 -0
  312. package/dist-types/ts3.4/commands/GetXssMatchSetCommand.d.ts +43 -0
  313. package/dist-types/ts3.4/commands/ListActivatedRulesInRuleGroupCommand.d.ts +43 -0
  314. package/dist-types/ts3.4/commands/ListByteMatchSetsCommand.d.ts +43 -0
  315. package/dist-types/ts3.4/commands/ListGeoMatchSetsCommand.d.ts +43 -0
  316. package/dist-types/ts3.4/commands/ListIPSetsCommand.d.ts +43 -0
  317. package/dist-types/ts3.4/commands/ListLoggingConfigurationsCommand.d.ts +43 -0
  318. package/dist-types/ts3.4/commands/ListRateBasedRulesCommand.d.ts +43 -0
  319. package/dist-types/ts3.4/commands/ListRegexMatchSetsCommand.d.ts +43 -0
  320. package/dist-types/ts3.4/commands/ListRegexPatternSetsCommand.d.ts +43 -0
  321. package/dist-types/ts3.4/commands/ListRuleGroupsCommand.d.ts +43 -0
  322. package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +43 -0
  323. package/dist-types/ts3.4/commands/ListSizeConstraintSetsCommand.d.ts +43 -0
  324. package/dist-types/ts3.4/commands/ListSqlInjectionMatchSetsCommand.d.ts +43 -0
  325. package/dist-types/ts3.4/commands/ListSubscribedRuleGroupsCommand.d.ts +43 -0
  326. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +44 -0
  327. package/dist-types/ts3.4/commands/ListWebACLsCommand.d.ts +43 -0
  328. package/dist-types/ts3.4/commands/ListXssMatchSetsCommand.d.ts +43 -0
  329. package/dist-types/ts3.4/commands/PutLoggingConfigurationCommand.d.ts +60 -0
  330. package/dist-types/ts3.4/commands/PutPermissionPolicyCommand.d.ts +75 -0
  331. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +44 -0
  332. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +43 -0
  333. package/dist-types/ts3.4/commands/UpdateByteMatchSetCommand.d.ts +81 -0
  334. package/dist-types/ts3.4/commands/UpdateGeoMatchSetCommand.d.ts +73 -0
  335. package/dist-types/ts3.4/commands/UpdateIPSetCommand.d.ts +108 -0
  336. package/dist-types/ts3.4/commands/UpdateRateBasedRuleCommand.d.ts +89 -0
  337. package/dist-types/ts3.4/commands/UpdateRegexMatchSetCommand.d.ts +77 -0
  338. package/dist-types/ts3.4/commands/UpdateRegexPatternSetCommand.d.ts +82 -0
  339. package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +84 -0
  340. package/dist-types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +67 -0
  341. package/dist-types/ts3.4/commands/UpdateSizeConstraintSetCommand.d.ts +85 -0
  342. package/dist-types/ts3.4/commands/UpdateSqlInjectionMatchSetCommand.d.ts +84 -0
  343. package/dist-types/ts3.4/commands/UpdateWebACLCommand.d.ts +114 -0
  344. package/dist-types/ts3.4/commands/UpdateXssMatchSetCommand.d.ts +86 -0
  345. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  346. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  347. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  348. package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
  349. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -0
  350. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  351. package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  352. package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  353. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  354. package/package.json +52 -49
  355. package/WAF.ts +0 -4455
  356. package/WAFClient.ts +0 -575
  357. package/commands/CreateByteMatchSetCommand.ts +0 -125
  358. package/commands/CreateGeoMatchSetCommand.ts +0 -122
  359. package/commands/CreateIPSetCommand.ts +0 -127
  360. package/commands/CreateRateBasedRuleCommand.ts +0 -187
  361. package/commands/CreateRegexMatchSetCommand.ts +0 -125
  362. package/commands/CreateRegexPatternSetCommand.ts +0 -121
  363. package/commands/CreateRuleCommand.ts +0 -145
  364. package/commands/CreateRuleGroupCommand.ts +0 -116
  365. package/commands/CreateSizeConstraintSetCommand.ts +0 -125
  366. package/commands/CreateSqlInjectionMatchSetCommand.ts +0 -126
  367. package/commands/CreateWebACLCommand.ts +0 -133
  368. package/commands/CreateWebACLMigrationStackCommand.ts +0 -104
  369. package/commands/CreateXssMatchSetCommand.ts +0 -123
  370. package/commands/DeleteByteMatchSetCommand.ts +0 -117
  371. package/commands/DeleteGeoMatchSetCommand.ts +0 -117
  372. package/commands/DeleteIPSetCommand.ts +0 -117
  373. package/commands/DeleteLoggingConfigurationCommand.ts +0 -106
  374. package/commands/DeletePermissionPolicyCommand.ts +0 -103
  375. package/commands/DeleteRateBasedRuleCommand.ts +0 -121
  376. package/commands/DeleteRegexMatchSetCommand.ts +0 -117
  377. package/commands/DeleteRegexPatternSetCommand.ts +0 -103
  378. package/commands/DeleteRuleCommand.ts +0 -117
  379. package/commands/DeleteRuleGroupCommand.ts +0 -117
  380. package/commands/DeleteSizeConstraintSetCommand.ts +0 -117
  381. package/commands/DeleteSqlInjectionMatchSetCommand.ts +0 -121
  382. package/commands/DeleteWebACLCommand.ts +0 -115
  383. package/commands/DeleteXssMatchSetCommand.ts +0 -118
  384. package/commands/GetByteMatchSetCommand.ts +0 -102
  385. package/commands/GetChangeTokenCommand.ts +0 -108
  386. package/commands/GetChangeTokenStatusCommand.ts +0 -118
  387. package/commands/GetGeoMatchSetCommand.ts +0 -102
  388. package/commands/GetIPSetCommand.ts +0 -95
  389. package/commands/GetLoggingConfigurationCommand.ts +0 -102
  390. package/commands/GetPermissionPolicyCommand.ts +0 -102
  391. package/commands/GetRateBasedRuleCommand.ts +0 -104
  392. package/commands/GetRateBasedRuleManagedKeysCommand.ts +0 -109
  393. package/commands/GetRegexMatchSetCommand.ts +0 -102
  394. package/commands/GetRegexPatternSetCommand.ts +0 -102
  395. package/commands/GetRuleCommand.ts +0 -95
  396. package/commands/GetRuleGroupCommand.ts +0 -103
  397. package/commands/GetSampledRequestsCommand.ts +0 -106
  398. package/commands/GetSizeConstraintSetCommand.ts +0 -102
  399. package/commands/GetSqlInjectionMatchSetCommand.ts +0 -102
  400. package/commands/GetWebACLCommand.ts +0 -95
  401. package/commands/GetXssMatchSetCommand.ts +0 -102
  402. package/commands/ListActivatedRulesInRuleGroupCommand.ts +0 -107
  403. package/commands/ListByteMatchSetsCommand.ts +0 -102
  404. package/commands/ListGeoMatchSetsCommand.ts +0 -102
  405. package/commands/ListIPSetsCommand.ts +0 -102
  406. package/commands/ListLoggingConfigurationsCommand.ts +0 -105
  407. package/commands/ListRateBasedRulesCommand.ts +0 -102
  408. package/commands/ListRegexMatchSetsCommand.ts +0 -102
  409. package/commands/ListRegexPatternSetsCommand.ts +0 -102
  410. package/commands/ListRuleGroupsCommand.ts +0 -102
  411. package/commands/ListRulesCommand.ts +0 -95
  412. package/commands/ListSizeConstraintSetsCommand.ts +0 -102
  413. package/commands/ListSqlInjectionMatchSetsCommand.ts +0 -105
  414. package/commands/ListSubscribedRuleGroupsCommand.ts +0 -102
  415. package/commands/ListTagsForResourceCommand.ts +0 -103
  416. package/commands/ListWebACLsCommand.ts +0 -102
  417. package/commands/ListXssMatchSetsCommand.ts +0 -102
  418. package/commands/PutLoggingConfigurationCommand.ts +0 -119
  419. package/commands/PutPermissionPolicyCommand.ts +0 -134
  420. package/commands/TagResourceCommand.ts +0 -103
  421. package/commands/UntagResourceCommand.ts +0 -102
  422. package/commands/UpdateByteMatchSetCommand.ts +0 -140
  423. package/commands/UpdateGeoMatchSetCommand.ts +0 -132
  424. package/commands/UpdateIPSetCommand.ts +0 -167
  425. package/commands/UpdateRateBasedRuleCommand.ts +0 -148
  426. package/commands/UpdateRegexMatchSetCommand.ts +0 -136
  427. package/commands/UpdateRegexPatternSetCommand.ts +0 -141
  428. package/commands/UpdateRuleCommand.ts +0 -143
  429. package/commands/UpdateRuleGroupCommand.ts +0 -126
  430. package/commands/UpdateSizeConstraintSetCommand.ts +0 -144
  431. package/commands/UpdateSqlInjectionMatchSetCommand.ts +0 -146
  432. package/commands/UpdateWebACLCommand.ts +0 -173
  433. package/commands/UpdateXssMatchSetCommand.ts +0 -145
  434. package/dist/cjs/WAF.js +0 -1176
  435. package/dist/cjs/WAF.js.map +0 -1
  436. package/dist/cjs/WAFClient.js +0 -54
  437. package/dist/cjs/WAFClient.js.map +0 -1
  438. package/dist/cjs/commands/CreateByteMatchSetCommand.js +0 -92
  439. package/dist/cjs/commands/CreateByteMatchSetCommand.js.map +0 -1
  440. package/dist/cjs/commands/CreateGeoMatchSetCommand.js +0 -89
  441. package/dist/cjs/commands/CreateGeoMatchSetCommand.js.map +0 -1
  442. package/dist/cjs/commands/CreateIPSetCommand.js +0 -94
  443. package/dist/cjs/commands/CreateIPSetCommand.js.map +0 -1
  444. package/dist/cjs/commands/CreateRateBasedRuleCommand.js +0 -154
  445. package/dist/cjs/commands/CreateRateBasedRuleCommand.js.map +0 -1
  446. package/dist/cjs/commands/CreateRegexMatchSetCommand.js +0 -92
  447. package/dist/cjs/commands/CreateRegexMatchSetCommand.js.map +0 -1
  448. package/dist/cjs/commands/CreateRegexPatternSetCommand.js +0 -88
  449. package/dist/cjs/commands/CreateRegexPatternSetCommand.js.map +0 -1
  450. package/dist/cjs/commands/CreateRuleCommand.js +0 -112
  451. package/dist/cjs/commands/CreateRuleCommand.js.map +0 -1
  452. package/dist/cjs/commands/CreateRuleGroupCommand.js +0 -83
  453. package/dist/cjs/commands/CreateRuleGroupCommand.js.map +0 -1
  454. package/dist/cjs/commands/CreateSizeConstraintSetCommand.js +0 -92
  455. package/dist/cjs/commands/CreateSizeConstraintSetCommand.js.map +0 -1
  456. package/dist/cjs/commands/CreateSqlInjectionMatchSetCommand.js +0 -90
  457. package/dist/cjs/commands/CreateSqlInjectionMatchSetCommand.js.map +0 -1
  458. package/dist/cjs/commands/CreateWebACLCommand.js +0 -100
  459. package/dist/cjs/commands/CreateWebACLCommand.js.map +0 -1
  460. package/dist/cjs/commands/CreateWebACLMigrationStackCommand.js +0 -68
  461. package/dist/cjs/commands/CreateWebACLMigrationStackCommand.js.map +0 -1
  462. package/dist/cjs/commands/CreateXssMatchSetCommand.js +0 -90
  463. package/dist/cjs/commands/CreateXssMatchSetCommand.js.map +0 -1
  464. package/dist/cjs/commands/DeleteByteMatchSetCommand.js +0 -84
  465. package/dist/cjs/commands/DeleteByteMatchSetCommand.js.map +0 -1
  466. package/dist/cjs/commands/DeleteGeoMatchSetCommand.js +0 -84
  467. package/dist/cjs/commands/DeleteGeoMatchSetCommand.js.map +0 -1
  468. package/dist/cjs/commands/DeleteIPSetCommand.js +0 -84
  469. package/dist/cjs/commands/DeleteIPSetCommand.js.map +0 -1
  470. package/dist/cjs/commands/DeleteLoggingConfigurationCommand.js +0 -70
  471. package/dist/cjs/commands/DeleteLoggingConfigurationCommand.js.map +0 -1
  472. package/dist/cjs/commands/DeletePermissionPolicyCommand.js +0 -70
  473. package/dist/cjs/commands/DeletePermissionPolicyCommand.js.map +0 -1
  474. package/dist/cjs/commands/DeleteRateBasedRuleCommand.js +0 -88
  475. package/dist/cjs/commands/DeleteRateBasedRuleCommand.js.map +0 -1
  476. package/dist/cjs/commands/DeleteRegexMatchSetCommand.js +0 -84
  477. package/dist/cjs/commands/DeleteRegexMatchSetCommand.js.map +0 -1
  478. package/dist/cjs/commands/DeleteRegexPatternSetCommand.js +0 -70
  479. package/dist/cjs/commands/DeleteRegexPatternSetCommand.js.map +0 -1
  480. package/dist/cjs/commands/DeleteRuleCommand.js +0 -84
  481. package/dist/cjs/commands/DeleteRuleCommand.js.map +0 -1
  482. package/dist/cjs/commands/DeleteRuleGroupCommand.js +0 -84
  483. package/dist/cjs/commands/DeleteRuleGroupCommand.js.map +0 -1
  484. package/dist/cjs/commands/DeleteSizeConstraintSetCommand.js +0 -84
  485. package/dist/cjs/commands/DeleteSizeConstraintSetCommand.js.map +0 -1
  486. package/dist/cjs/commands/DeleteSqlInjectionMatchSetCommand.js +0 -85
  487. package/dist/cjs/commands/DeleteSqlInjectionMatchSetCommand.js.map +0 -1
  488. package/dist/cjs/commands/DeleteWebACLCommand.js +0 -82
  489. package/dist/cjs/commands/DeleteWebACLCommand.js.map +0 -1
  490. package/dist/cjs/commands/DeleteXssMatchSetCommand.js +0 -85
  491. package/dist/cjs/commands/DeleteXssMatchSetCommand.js.map +0 -1
  492. package/dist/cjs/commands/GetByteMatchSetCommand.js +0 -69
  493. package/dist/cjs/commands/GetByteMatchSetCommand.js.map +0 -1
  494. package/dist/cjs/commands/GetChangeTokenCommand.js +0 -75
  495. package/dist/cjs/commands/GetChangeTokenCommand.js.map +0 -1
  496. package/dist/cjs/commands/GetChangeTokenStatusCommand.js +0 -85
  497. package/dist/cjs/commands/GetChangeTokenStatusCommand.js.map +0 -1
  498. package/dist/cjs/commands/GetGeoMatchSetCommand.js +0 -69
  499. package/dist/cjs/commands/GetGeoMatchSetCommand.js.map +0 -1
  500. package/dist/cjs/commands/GetIPSetCommand.js +0 -69
  501. package/dist/cjs/commands/GetIPSetCommand.js.map +0 -1
  502. package/dist/cjs/commands/GetLoggingConfigurationCommand.js +0 -69
  503. package/dist/cjs/commands/GetLoggingConfigurationCommand.js.map +0 -1
  504. package/dist/cjs/commands/GetPermissionPolicyCommand.js +0 -69
  505. package/dist/cjs/commands/GetPermissionPolicyCommand.js.map +0 -1
  506. package/dist/cjs/commands/GetRateBasedRuleCommand.js +0 -71
  507. package/dist/cjs/commands/GetRateBasedRuleCommand.js.map +0 -1
  508. package/dist/cjs/commands/GetRateBasedRuleManagedKeysCommand.js +0 -71
  509. package/dist/cjs/commands/GetRateBasedRuleManagedKeysCommand.js.map +0 -1
  510. package/dist/cjs/commands/GetRegexMatchSetCommand.js +0 -69
  511. package/dist/cjs/commands/GetRegexMatchSetCommand.js.map +0 -1
  512. package/dist/cjs/commands/GetRegexPatternSetCommand.js +0 -69
  513. package/dist/cjs/commands/GetRegexPatternSetCommand.js.map +0 -1
  514. package/dist/cjs/commands/GetRuleCommand.js +0 -69
  515. package/dist/cjs/commands/GetRuleCommand.js.map +0 -1
  516. package/dist/cjs/commands/GetRuleGroupCommand.js +0 -70
  517. package/dist/cjs/commands/GetRuleGroupCommand.js.map +0 -1
  518. package/dist/cjs/commands/GetSampledRequestsCommand.js +0 -73
  519. package/dist/cjs/commands/GetSampledRequestsCommand.js.map +0 -1
  520. package/dist/cjs/commands/GetSizeConstraintSetCommand.js +0 -69
  521. package/dist/cjs/commands/GetSizeConstraintSetCommand.js.map +0 -1
  522. package/dist/cjs/commands/GetSqlInjectionMatchSetCommand.js +0 -69
  523. package/dist/cjs/commands/GetSqlInjectionMatchSetCommand.js.map +0 -1
  524. package/dist/cjs/commands/GetWebACLCommand.js +0 -69
  525. package/dist/cjs/commands/GetWebACLCommand.js.map +0 -1
  526. package/dist/cjs/commands/GetXssMatchSetCommand.js +0 -69
  527. package/dist/cjs/commands/GetXssMatchSetCommand.js.map +0 -1
  528. package/dist/cjs/commands/ListActivatedRulesInRuleGroupCommand.js +0 -69
  529. package/dist/cjs/commands/ListActivatedRulesInRuleGroupCommand.js.map +0 -1
  530. package/dist/cjs/commands/ListByteMatchSetsCommand.js +0 -69
  531. package/dist/cjs/commands/ListByteMatchSetsCommand.js.map +0 -1
  532. package/dist/cjs/commands/ListGeoMatchSetsCommand.js +0 -69
  533. package/dist/cjs/commands/ListGeoMatchSetsCommand.js.map +0 -1
  534. package/dist/cjs/commands/ListIPSetsCommand.js +0 -69
  535. package/dist/cjs/commands/ListIPSetsCommand.js.map +0 -1
  536. package/dist/cjs/commands/ListLoggingConfigurationsCommand.js +0 -69
  537. package/dist/cjs/commands/ListLoggingConfigurationsCommand.js.map +0 -1
  538. package/dist/cjs/commands/ListRateBasedRulesCommand.js +0 -69
  539. package/dist/cjs/commands/ListRateBasedRulesCommand.js.map +0 -1
  540. package/dist/cjs/commands/ListRegexMatchSetsCommand.js +0 -69
  541. package/dist/cjs/commands/ListRegexMatchSetsCommand.js.map +0 -1
  542. package/dist/cjs/commands/ListRegexPatternSetsCommand.js +0 -69
  543. package/dist/cjs/commands/ListRegexPatternSetsCommand.js.map +0 -1
  544. package/dist/cjs/commands/ListRuleGroupsCommand.js +0 -69
  545. package/dist/cjs/commands/ListRuleGroupsCommand.js.map +0 -1
  546. package/dist/cjs/commands/ListRulesCommand.js +0 -69
  547. package/dist/cjs/commands/ListRulesCommand.js.map +0 -1
  548. package/dist/cjs/commands/ListSizeConstraintSetsCommand.js +0 -69
  549. package/dist/cjs/commands/ListSizeConstraintSetsCommand.js.map +0 -1
  550. package/dist/cjs/commands/ListSqlInjectionMatchSetsCommand.js +0 -69
  551. package/dist/cjs/commands/ListSqlInjectionMatchSetsCommand.js.map +0 -1
  552. package/dist/cjs/commands/ListSubscribedRuleGroupsCommand.js +0 -69
  553. package/dist/cjs/commands/ListSubscribedRuleGroupsCommand.js.map +0 -1
  554. package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -70
  555. package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
  556. package/dist/cjs/commands/ListWebACLsCommand.js +0 -69
  557. package/dist/cjs/commands/ListWebACLsCommand.js.map +0 -1
  558. package/dist/cjs/commands/ListXssMatchSetsCommand.js +0 -69
  559. package/dist/cjs/commands/ListXssMatchSetsCommand.js.map +0 -1
  560. package/dist/cjs/commands/PutLoggingConfigurationCommand.js +0 -86
  561. package/dist/cjs/commands/PutLoggingConfigurationCommand.js.map +0 -1
  562. package/dist/cjs/commands/PutPermissionPolicyCommand.js +0 -101
  563. package/dist/cjs/commands/PutPermissionPolicyCommand.js.map +0 -1
  564. package/dist/cjs/commands/TagResourceCommand.js +0 -70
  565. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  566. package/dist/cjs/commands/UntagResourceCommand.js +0 -69
  567. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  568. package/dist/cjs/commands/UpdateByteMatchSetCommand.js +0 -107
  569. package/dist/cjs/commands/UpdateByteMatchSetCommand.js.map +0 -1
  570. package/dist/cjs/commands/UpdateGeoMatchSetCommand.js +0 -99
  571. package/dist/cjs/commands/UpdateGeoMatchSetCommand.js.map +0 -1
  572. package/dist/cjs/commands/UpdateIPSetCommand.js +0 -134
  573. package/dist/cjs/commands/UpdateIPSetCommand.js.map +0 -1
  574. package/dist/cjs/commands/UpdateRateBasedRuleCommand.js +0 -115
  575. package/dist/cjs/commands/UpdateRateBasedRuleCommand.js.map +0 -1
  576. package/dist/cjs/commands/UpdateRegexMatchSetCommand.js +0 -103
  577. package/dist/cjs/commands/UpdateRegexMatchSetCommand.js.map +0 -1
  578. package/dist/cjs/commands/UpdateRegexPatternSetCommand.js +0 -108
  579. package/dist/cjs/commands/UpdateRegexPatternSetCommand.js.map +0 -1
  580. package/dist/cjs/commands/UpdateRuleCommand.js +0 -110
  581. package/dist/cjs/commands/UpdateRuleCommand.js.map +0 -1
  582. package/dist/cjs/commands/UpdateRuleGroupCommand.js +0 -93
  583. package/dist/cjs/commands/UpdateRuleGroupCommand.js.map +0 -1
  584. package/dist/cjs/commands/UpdateSizeConstraintSetCommand.js +0 -111
  585. package/dist/cjs/commands/UpdateSizeConstraintSetCommand.js.map +0 -1
  586. package/dist/cjs/commands/UpdateSqlInjectionMatchSetCommand.js +0 -110
  587. package/dist/cjs/commands/UpdateSqlInjectionMatchSetCommand.js.map +0 -1
  588. package/dist/cjs/commands/UpdateWebACLCommand.js +0 -140
  589. package/dist/cjs/commands/UpdateWebACLCommand.js.map +0 -1
  590. package/dist/cjs/commands/UpdateXssMatchSetCommand.js +0 -112
  591. package/dist/cjs/commands/UpdateXssMatchSetCommand.js.map +0 -1
  592. package/dist/cjs/endpoints.js +0 -68
  593. package/dist/cjs/endpoints.js.map +0 -1
  594. package/dist/cjs/index.js +0 -84
  595. package/dist/cjs/index.js.map +0 -1
  596. package/dist/cjs/models/index.js +0 -5
  597. package/dist/cjs/models/index.js.map +0 -1
  598. package/dist/cjs/models/models_0.js +0 -2437
  599. package/dist/cjs/models/models_0.js.map +0 -1
  600. package/dist/cjs/package.json +0 -91
  601. package/dist/cjs/protocols/Aws_json1_1.js +0 -9200
  602. package/dist/cjs/protocols/Aws_json1_1.js.map +0 -1
  603. package/dist/cjs/runtimeConfig.browser.js +0 -41
  604. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  605. package/dist/cjs/runtimeConfig.js +0 -46
  606. package/dist/cjs/runtimeConfig.js.map +0 -1
  607. package/dist/cjs/runtimeConfig.native.js +0 -20
  608. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  609. package/dist/cjs/runtimeConfig.shared.js +0 -21
  610. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  611. package/dist/es/WAF.js +0 -1179
  612. package/dist/es/WAF.js.map +0 -1
  613. package/dist/es/WAFClient.js +0 -56
  614. package/dist/es/WAFClient.js.map +0 -1
  615. package/dist/es/commands/CreateByteMatchSetCommand.js +0 -96
  616. package/dist/es/commands/CreateByteMatchSetCommand.js.map +0 -1
  617. package/dist/es/commands/CreateGeoMatchSetCommand.js +0 -93
  618. package/dist/es/commands/CreateGeoMatchSetCommand.js.map +0 -1
  619. package/dist/es/commands/CreateIPSetCommand.js +0 -98
  620. package/dist/es/commands/CreateIPSetCommand.js.map +0 -1
  621. package/dist/es/commands/CreateRateBasedRuleCommand.js +0 -158
  622. package/dist/es/commands/CreateRateBasedRuleCommand.js.map +0 -1
  623. package/dist/es/commands/CreateRegexMatchSetCommand.js +0 -96
  624. package/dist/es/commands/CreateRegexMatchSetCommand.js.map +0 -1
  625. package/dist/es/commands/CreateRegexPatternSetCommand.js +0 -92
  626. package/dist/es/commands/CreateRegexPatternSetCommand.js.map +0 -1
  627. package/dist/es/commands/CreateRuleCommand.js +0 -116
  628. package/dist/es/commands/CreateRuleCommand.js.map +0 -1
  629. package/dist/es/commands/CreateRuleGroupCommand.js +0 -87
  630. package/dist/es/commands/CreateRuleGroupCommand.js.map +0 -1
  631. package/dist/es/commands/CreateSizeConstraintSetCommand.js +0 -96
  632. package/dist/es/commands/CreateSizeConstraintSetCommand.js.map +0 -1
  633. package/dist/es/commands/CreateSqlInjectionMatchSetCommand.js +0 -94
  634. package/dist/es/commands/CreateSqlInjectionMatchSetCommand.js.map +0 -1
  635. package/dist/es/commands/CreateWebACLCommand.js +0 -104
  636. package/dist/es/commands/CreateWebACLCommand.js.map +0 -1
  637. package/dist/es/commands/CreateWebACLMigrationStackCommand.js +0 -72
  638. package/dist/es/commands/CreateWebACLMigrationStackCommand.js.map +0 -1
  639. package/dist/es/commands/CreateXssMatchSetCommand.js +0 -94
  640. package/dist/es/commands/CreateXssMatchSetCommand.js.map +0 -1
  641. package/dist/es/commands/DeleteByteMatchSetCommand.js +0 -88
  642. package/dist/es/commands/DeleteByteMatchSetCommand.js.map +0 -1
  643. package/dist/es/commands/DeleteGeoMatchSetCommand.js +0 -88
  644. package/dist/es/commands/DeleteGeoMatchSetCommand.js.map +0 -1
  645. package/dist/es/commands/DeleteIPSetCommand.js +0 -88
  646. package/dist/es/commands/DeleteIPSetCommand.js.map +0 -1
  647. package/dist/es/commands/DeleteLoggingConfigurationCommand.js +0 -74
  648. package/dist/es/commands/DeleteLoggingConfigurationCommand.js.map +0 -1
  649. package/dist/es/commands/DeletePermissionPolicyCommand.js +0 -74
  650. package/dist/es/commands/DeletePermissionPolicyCommand.js.map +0 -1
  651. package/dist/es/commands/DeleteRateBasedRuleCommand.js +0 -92
  652. package/dist/es/commands/DeleteRateBasedRuleCommand.js.map +0 -1
  653. package/dist/es/commands/DeleteRegexMatchSetCommand.js +0 -88
  654. package/dist/es/commands/DeleteRegexMatchSetCommand.js.map +0 -1
  655. package/dist/es/commands/DeleteRegexPatternSetCommand.js +0 -74
  656. package/dist/es/commands/DeleteRegexPatternSetCommand.js.map +0 -1
  657. package/dist/es/commands/DeleteRuleCommand.js +0 -88
  658. package/dist/es/commands/DeleteRuleCommand.js.map +0 -1
  659. package/dist/es/commands/DeleteRuleGroupCommand.js +0 -88
  660. package/dist/es/commands/DeleteRuleGroupCommand.js.map +0 -1
  661. package/dist/es/commands/DeleteSizeConstraintSetCommand.js +0 -88
  662. package/dist/es/commands/DeleteSizeConstraintSetCommand.js.map +0 -1
  663. package/dist/es/commands/DeleteSqlInjectionMatchSetCommand.js +0 -89
  664. package/dist/es/commands/DeleteSqlInjectionMatchSetCommand.js.map +0 -1
  665. package/dist/es/commands/DeleteWebACLCommand.js +0 -86
  666. package/dist/es/commands/DeleteWebACLCommand.js.map +0 -1
  667. package/dist/es/commands/DeleteXssMatchSetCommand.js +0 -89
  668. package/dist/es/commands/DeleteXssMatchSetCommand.js.map +0 -1
  669. package/dist/es/commands/GetByteMatchSetCommand.js +0 -73
  670. package/dist/es/commands/GetByteMatchSetCommand.js.map +0 -1
  671. package/dist/es/commands/GetChangeTokenCommand.js +0 -79
  672. package/dist/es/commands/GetChangeTokenCommand.js.map +0 -1
  673. package/dist/es/commands/GetChangeTokenStatusCommand.js +0 -89
  674. package/dist/es/commands/GetChangeTokenStatusCommand.js.map +0 -1
  675. package/dist/es/commands/GetGeoMatchSetCommand.js +0 -73
  676. package/dist/es/commands/GetGeoMatchSetCommand.js.map +0 -1
  677. package/dist/es/commands/GetIPSetCommand.js +0 -73
  678. package/dist/es/commands/GetIPSetCommand.js.map +0 -1
  679. package/dist/es/commands/GetLoggingConfigurationCommand.js +0 -73
  680. package/dist/es/commands/GetLoggingConfigurationCommand.js.map +0 -1
  681. package/dist/es/commands/GetPermissionPolicyCommand.js +0 -73
  682. package/dist/es/commands/GetPermissionPolicyCommand.js.map +0 -1
  683. package/dist/es/commands/GetRateBasedRuleCommand.js +0 -75
  684. package/dist/es/commands/GetRateBasedRuleCommand.js.map +0 -1
  685. package/dist/es/commands/GetRateBasedRuleManagedKeysCommand.js +0 -75
  686. package/dist/es/commands/GetRateBasedRuleManagedKeysCommand.js.map +0 -1
  687. package/dist/es/commands/GetRegexMatchSetCommand.js +0 -73
  688. package/dist/es/commands/GetRegexMatchSetCommand.js.map +0 -1
  689. package/dist/es/commands/GetRegexPatternSetCommand.js +0 -73
  690. package/dist/es/commands/GetRegexPatternSetCommand.js.map +0 -1
  691. package/dist/es/commands/GetRuleCommand.js +0 -73
  692. package/dist/es/commands/GetRuleCommand.js.map +0 -1
  693. package/dist/es/commands/GetRuleGroupCommand.js +0 -74
  694. package/dist/es/commands/GetRuleGroupCommand.js.map +0 -1
  695. package/dist/es/commands/GetSampledRequestsCommand.js +0 -77
  696. package/dist/es/commands/GetSampledRequestsCommand.js.map +0 -1
  697. package/dist/es/commands/GetSizeConstraintSetCommand.js +0 -73
  698. package/dist/es/commands/GetSizeConstraintSetCommand.js.map +0 -1
  699. package/dist/es/commands/GetSqlInjectionMatchSetCommand.js +0 -73
  700. package/dist/es/commands/GetSqlInjectionMatchSetCommand.js.map +0 -1
  701. package/dist/es/commands/GetWebACLCommand.js +0 -73
  702. package/dist/es/commands/GetWebACLCommand.js.map +0 -1
  703. package/dist/es/commands/GetXssMatchSetCommand.js +0 -73
  704. package/dist/es/commands/GetXssMatchSetCommand.js.map +0 -1
  705. package/dist/es/commands/ListActivatedRulesInRuleGroupCommand.js +0 -73
  706. package/dist/es/commands/ListActivatedRulesInRuleGroupCommand.js.map +0 -1
  707. package/dist/es/commands/ListByteMatchSetsCommand.js +0 -73
  708. package/dist/es/commands/ListByteMatchSetsCommand.js.map +0 -1
  709. package/dist/es/commands/ListGeoMatchSetsCommand.js +0 -73
  710. package/dist/es/commands/ListGeoMatchSetsCommand.js.map +0 -1
  711. package/dist/es/commands/ListIPSetsCommand.js +0 -73
  712. package/dist/es/commands/ListIPSetsCommand.js.map +0 -1
  713. package/dist/es/commands/ListLoggingConfigurationsCommand.js +0 -73
  714. package/dist/es/commands/ListLoggingConfigurationsCommand.js.map +0 -1
  715. package/dist/es/commands/ListRateBasedRulesCommand.js +0 -73
  716. package/dist/es/commands/ListRateBasedRulesCommand.js.map +0 -1
  717. package/dist/es/commands/ListRegexMatchSetsCommand.js +0 -73
  718. package/dist/es/commands/ListRegexMatchSetsCommand.js.map +0 -1
  719. package/dist/es/commands/ListRegexPatternSetsCommand.js +0 -73
  720. package/dist/es/commands/ListRegexPatternSetsCommand.js.map +0 -1
  721. package/dist/es/commands/ListRuleGroupsCommand.js +0 -73
  722. package/dist/es/commands/ListRuleGroupsCommand.js.map +0 -1
  723. package/dist/es/commands/ListRulesCommand.js +0 -73
  724. package/dist/es/commands/ListRulesCommand.js.map +0 -1
  725. package/dist/es/commands/ListSizeConstraintSetsCommand.js +0 -73
  726. package/dist/es/commands/ListSizeConstraintSetsCommand.js.map +0 -1
  727. package/dist/es/commands/ListSqlInjectionMatchSetsCommand.js +0 -73
  728. package/dist/es/commands/ListSqlInjectionMatchSetsCommand.js.map +0 -1
  729. package/dist/es/commands/ListSubscribedRuleGroupsCommand.js +0 -73
  730. package/dist/es/commands/ListSubscribedRuleGroupsCommand.js.map +0 -1
  731. package/dist/es/commands/ListTagsForResourceCommand.js +0 -74
  732. package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
  733. package/dist/es/commands/ListWebACLsCommand.js +0 -73
  734. package/dist/es/commands/ListWebACLsCommand.js.map +0 -1
  735. package/dist/es/commands/ListXssMatchSetsCommand.js +0 -73
  736. package/dist/es/commands/ListXssMatchSetsCommand.js.map +0 -1
  737. package/dist/es/commands/PutLoggingConfigurationCommand.js +0 -90
  738. package/dist/es/commands/PutLoggingConfigurationCommand.js.map +0 -1
  739. package/dist/es/commands/PutPermissionPolicyCommand.js +0 -105
  740. package/dist/es/commands/PutPermissionPolicyCommand.js.map +0 -1
  741. package/dist/es/commands/TagResourceCommand.js +0 -74
  742. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  743. package/dist/es/commands/UntagResourceCommand.js +0 -73
  744. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  745. package/dist/es/commands/UpdateByteMatchSetCommand.js +0 -111
  746. package/dist/es/commands/UpdateByteMatchSetCommand.js.map +0 -1
  747. package/dist/es/commands/UpdateGeoMatchSetCommand.js +0 -103
  748. package/dist/es/commands/UpdateGeoMatchSetCommand.js.map +0 -1
  749. package/dist/es/commands/UpdateIPSetCommand.js +0 -138
  750. package/dist/es/commands/UpdateIPSetCommand.js.map +0 -1
  751. package/dist/es/commands/UpdateRateBasedRuleCommand.js +0 -119
  752. package/dist/es/commands/UpdateRateBasedRuleCommand.js.map +0 -1
  753. package/dist/es/commands/UpdateRegexMatchSetCommand.js +0 -107
  754. package/dist/es/commands/UpdateRegexMatchSetCommand.js.map +0 -1
  755. package/dist/es/commands/UpdateRegexPatternSetCommand.js +0 -112
  756. package/dist/es/commands/UpdateRegexPatternSetCommand.js.map +0 -1
  757. package/dist/es/commands/UpdateRuleCommand.js +0 -114
  758. package/dist/es/commands/UpdateRuleCommand.js.map +0 -1
  759. package/dist/es/commands/UpdateRuleGroupCommand.js +0 -97
  760. package/dist/es/commands/UpdateRuleGroupCommand.js.map +0 -1
  761. package/dist/es/commands/UpdateSizeConstraintSetCommand.js +0 -115
  762. package/dist/es/commands/UpdateSizeConstraintSetCommand.js.map +0 -1
  763. package/dist/es/commands/UpdateSqlInjectionMatchSetCommand.js +0 -114
  764. package/dist/es/commands/UpdateSqlInjectionMatchSetCommand.js.map +0 -1
  765. package/dist/es/commands/UpdateWebACLCommand.js +0 -144
  766. package/dist/es/commands/UpdateWebACLCommand.js.map +0 -1
  767. package/dist/es/commands/UpdateXssMatchSetCommand.js +0 -116
  768. package/dist/es/commands/UpdateXssMatchSetCommand.js.map +0 -1
  769. package/dist/es/endpoints.js +0 -64
  770. package/dist/es/endpoints.js.map +0 -1
  771. package/dist/es/index.js +0 -81
  772. package/dist/es/index.js.map +0 -1
  773. package/dist/es/models/index.js +0 -2
  774. package/dist/es/models/index.js.map +0 -1
  775. package/dist/es/models/models_0.js +0 -1975
  776. package/dist/es/models/models_0.js.map +0 -1
  777. package/dist/es/package.json +0 -91
  778. package/dist/es/protocols/Aws_json1_1.js +0 -9610
  779. package/dist/es/protocols/Aws_json1_1.js.map +0 -1
  780. package/dist/es/runtimeConfig.browser.js +0 -20
  781. package/dist/es/runtimeConfig.browser.js.map +0 -1
  782. package/dist/es/runtimeConfig.js +0 -25
  783. package/dist/es/runtimeConfig.js.map +0 -1
  784. package/dist/es/runtimeConfig.native.js +0 -12
  785. package/dist/es/runtimeConfig.native.js.map +0 -1
  786. package/dist/es/runtimeConfig.shared.js +0 -17
  787. package/dist/es/runtimeConfig.shared.js.map +0 -1
  788. package/dist/types/WAF.d.ts +0 -2287
  789. package/dist/types/WAFClient.d.ts +0 -219
  790. package/dist/types/commands/CreateByteMatchSetCommand.d.ts +0 -66
  791. package/dist/types/commands/CreateGeoMatchSetCommand.d.ts +0 -63
  792. package/dist/types/commands/CreateIPSetCommand.d.ts +0 -68
  793. package/dist/types/commands/CreateRateBasedRuleCommand.d.ts +0 -128
  794. package/dist/types/commands/CreateRegexMatchSetCommand.d.ts +0 -66
  795. package/dist/types/commands/CreateRegexPatternSetCommand.d.ts +0 -62
  796. package/dist/types/commands/CreateRuleCommand.d.ts +0 -86
  797. package/dist/types/commands/CreateRuleGroupCommand.d.ts +0 -57
  798. package/dist/types/commands/CreateSizeConstraintSetCommand.d.ts +0 -66
  799. package/dist/types/commands/CreateSqlInjectionMatchSetCommand.d.ts +0 -64
  800. package/dist/types/commands/CreateWebACLCommand.d.ts +0 -74
  801. package/dist/types/commands/CreateWebACLMigrationStackCommand.d.ts +0 -42
  802. package/dist/types/commands/CreateXssMatchSetCommand.d.ts +0 -64
  803. package/dist/types/commands/DeleteByteMatchSetCommand.d.ts +0 -58
  804. package/dist/types/commands/DeleteGeoMatchSetCommand.d.ts +0 -58
  805. package/dist/types/commands/DeleteIPSetCommand.d.ts +0 -58
  806. package/dist/types/commands/DeleteLoggingConfigurationCommand.d.ts +0 -44
  807. package/dist/types/commands/DeletePermissionPolicyCommand.d.ts +0 -44
  808. package/dist/types/commands/DeleteRateBasedRuleCommand.d.ts +0 -62
  809. package/dist/types/commands/DeleteRegexMatchSetCommand.d.ts +0 -58
  810. package/dist/types/commands/DeleteRegexPatternSetCommand.d.ts +0 -44
  811. package/dist/types/commands/DeleteRuleCommand.d.ts +0 -58
  812. package/dist/types/commands/DeleteRuleGroupCommand.d.ts +0 -58
  813. package/dist/types/commands/DeleteSizeConstraintSetCommand.d.ts +0 -58
  814. package/dist/types/commands/DeleteSqlInjectionMatchSetCommand.d.ts +0 -59
  815. package/dist/types/commands/DeleteWebACLCommand.d.ts +0 -56
  816. package/dist/types/commands/DeleteXssMatchSetCommand.d.ts +0 -59
  817. package/dist/types/commands/GetByteMatchSetCommand.d.ts +0 -43
  818. package/dist/types/commands/GetChangeTokenCommand.d.ts +0 -49
  819. package/dist/types/commands/GetChangeTokenStatusCommand.d.ts +0 -59
  820. package/dist/types/commands/GetGeoMatchSetCommand.d.ts +0 -43
  821. package/dist/types/commands/GetIPSetCommand.d.ts +0 -43
  822. package/dist/types/commands/GetLoggingConfigurationCommand.d.ts +0 -43
  823. package/dist/types/commands/GetPermissionPolicyCommand.d.ts +0 -43
  824. package/dist/types/commands/GetRateBasedRuleCommand.d.ts +0 -45
  825. package/dist/types/commands/GetRateBasedRuleManagedKeysCommand.d.ts +0 -45
  826. package/dist/types/commands/GetRegexMatchSetCommand.d.ts +0 -43
  827. package/dist/types/commands/GetRegexPatternSetCommand.d.ts +0 -43
  828. package/dist/types/commands/GetRuleCommand.d.ts +0 -43
  829. package/dist/types/commands/GetRuleGroupCommand.d.ts +0 -44
  830. package/dist/types/commands/GetSampledRequestsCommand.d.ts +0 -47
  831. package/dist/types/commands/GetSizeConstraintSetCommand.d.ts +0 -43
  832. package/dist/types/commands/GetSqlInjectionMatchSetCommand.d.ts +0 -43
  833. package/dist/types/commands/GetWebACLCommand.d.ts +0 -43
  834. package/dist/types/commands/GetXssMatchSetCommand.d.ts +0 -43
  835. package/dist/types/commands/ListActivatedRulesInRuleGroupCommand.d.ts +0 -43
  836. package/dist/types/commands/ListByteMatchSetsCommand.d.ts +0 -43
  837. package/dist/types/commands/ListGeoMatchSetsCommand.d.ts +0 -43
  838. package/dist/types/commands/ListIPSetsCommand.d.ts +0 -43
  839. package/dist/types/commands/ListLoggingConfigurationsCommand.d.ts +0 -43
  840. package/dist/types/commands/ListRateBasedRulesCommand.d.ts +0 -43
  841. package/dist/types/commands/ListRegexMatchSetsCommand.d.ts +0 -43
  842. package/dist/types/commands/ListRegexPatternSetsCommand.d.ts +0 -43
  843. package/dist/types/commands/ListRuleGroupsCommand.d.ts +0 -43
  844. package/dist/types/commands/ListRulesCommand.d.ts +0 -43
  845. package/dist/types/commands/ListSizeConstraintSetsCommand.d.ts +0 -43
  846. package/dist/types/commands/ListSqlInjectionMatchSetsCommand.d.ts +0 -43
  847. package/dist/types/commands/ListSubscribedRuleGroupsCommand.d.ts +0 -43
  848. package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -44
  849. package/dist/types/commands/ListWebACLsCommand.d.ts +0 -43
  850. package/dist/types/commands/ListXssMatchSetsCommand.d.ts +0 -43
  851. package/dist/types/commands/PutLoggingConfigurationCommand.d.ts +0 -60
  852. package/dist/types/commands/PutPermissionPolicyCommand.d.ts +0 -75
  853. package/dist/types/commands/TagResourceCommand.d.ts +0 -44
  854. package/dist/types/commands/UntagResourceCommand.d.ts +0 -43
  855. package/dist/types/commands/UpdateByteMatchSetCommand.d.ts +0 -81
  856. package/dist/types/commands/UpdateGeoMatchSetCommand.d.ts +0 -73
  857. package/dist/types/commands/UpdateIPSetCommand.d.ts +0 -108
  858. package/dist/types/commands/UpdateRateBasedRuleCommand.d.ts +0 -89
  859. package/dist/types/commands/UpdateRegexMatchSetCommand.d.ts +0 -77
  860. package/dist/types/commands/UpdateRegexPatternSetCommand.d.ts +0 -82
  861. package/dist/types/commands/UpdateRuleCommand.d.ts +0 -84
  862. package/dist/types/commands/UpdateRuleGroupCommand.d.ts +0 -67
  863. package/dist/types/commands/UpdateSizeConstraintSetCommand.d.ts +0 -85
  864. package/dist/types/commands/UpdateSqlInjectionMatchSetCommand.d.ts +0 -84
  865. package/dist/types/commands/UpdateWebACLCommand.d.ts +0 -114
  866. package/dist/types/commands/UpdateXssMatchSetCommand.d.ts +0 -86
  867. package/dist/types/protocols/Aws_json1_1.d.ts +0 -233
  868. package/dist/types/runtimeConfig.browser.d.ts +0 -36
  869. package/dist/types/runtimeConfig.d.ts +0 -36
  870. package/dist/types/runtimeConfig.native.d.ts +0 -35
  871. package/dist/types/ts3.4/WAF.d.ts +0 -2287
  872. package/dist/types/ts3.4/WAFClient.d.ts +0 -219
  873. package/dist/types/ts3.4/commands/CreateByteMatchSetCommand.d.ts +0 -66
  874. package/dist/types/ts3.4/commands/CreateGeoMatchSetCommand.d.ts +0 -63
  875. package/dist/types/ts3.4/commands/CreateIPSetCommand.d.ts +0 -68
  876. package/dist/types/ts3.4/commands/CreateRateBasedRuleCommand.d.ts +0 -128
  877. package/dist/types/ts3.4/commands/CreateRegexMatchSetCommand.d.ts +0 -66
  878. package/dist/types/ts3.4/commands/CreateRegexPatternSetCommand.d.ts +0 -62
  879. package/dist/types/ts3.4/commands/CreateRuleCommand.d.ts +0 -86
  880. package/dist/types/ts3.4/commands/CreateRuleGroupCommand.d.ts +0 -57
  881. package/dist/types/ts3.4/commands/CreateSizeConstraintSetCommand.d.ts +0 -66
  882. package/dist/types/ts3.4/commands/CreateSqlInjectionMatchSetCommand.d.ts +0 -64
  883. package/dist/types/ts3.4/commands/CreateWebACLCommand.d.ts +0 -74
  884. package/dist/types/ts3.4/commands/CreateWebACLMigrationStackCommand.d.ts +0 -42
  885. package/dist/types/ts3.4/commands/CreateXssMatchSetCommand.d.ts +0 -64
  886. package/dist/types/ts3.4/commands/DeleteByteMatchSetCommand.d.ts +0 -58
  887. package/dist/types/ts3.4/commands/DeleteGeoMatchSetCommand.d.ts +0 -58
  888. package/dist/types/ts3.4/commands/DeleteIPSetCommand.d.ts +0 -58
  889. package/dist/types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +0 -44
  890. package/dist/types/ts3.4/commands/DeletePermissionPolicyCommand.d.ts +0 -44
  891. package/dist/types/ts3.4/commands/DeleteRateBasedRuleCommand.d.ts +0 -62
  892. package/dist/types/ts3.4/commands/DeleteRegexMatchSetCommand.d.ts +0 -58
  893. package/dist/types/ts3.4/commands/DeleteRegexPatternSetCommand.d.ts +0 -44
  894. package/dist/types/ts3.4/commands/DeleteRuleCommand.d.ts +0 -58
  895. package/dist/types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +0 -58
  896. package/dist/types/ts3.4/commands/DeleteSizeConstraintSetCommand.d.ts +0 -58
  897. package/dist/types/ts3.4/commands/DeleteSqlInjectionMatchSetCommand.d.ts +0 -59
  898. package/dist/types/ts3.4/commands/DeleteWebACLCommand.d.ts +0 -56
  899. package/dist/types/ts3.4/commands/DeleteXssMatchSetCommand.d.ts +0 -59
  900. package/dist/types/ts3.4/commands/GetByteMatchSetCommand.d.ts +0 -43
  901. package/dist/types/ts3.4/commands/GetChangeTokenCommand.d.ts +0 -49
  902. package/dist/types/ts3.4/commands/GetChangeTokenStatusCommand.d.ts +0 -59
  903. package/dist/types/ts3.4/commands/GetGeoMatchSetCommand.d.ts +0 -43
  904. package/dist/types/ts3.4/commands/GetIPSetCommand.d.ts +0 -43
  905. package/dist/types/ts3.4/commands/GetLoggingConfigurationCommand.d.ts +0 -43
  906. package/dist/types/ts3.4/commands/GetPermissionPolicyCommand.d.ts +0 -43
  907. package/dist/types/ts3.4/commands/GetRateBasedRuleCommand.d.ts +0 -45
  908. package/dist/types/ts3.4/commands/GetRateBasedRuleManagedKeysCommand.d.ts +0 -45
  909. package/dist/types/ts3.4/commands/GetRegexMatchSetCommand.d.ts +0 -43
  910. package/dist/types/ts3.4/commands/GetRegexPatternSetCommand.d.ts +0 -43
  911. package/dist/types/ts3.4/commands/GetRuleCommand.d.ts +0 -43
  912. package/dist/types/ts3.4/commands/GetRuleGroupCommand.d.ts +0 -44
  913. package/dist/types/ts3.4/commands/GetSampledRequestsCommand.d.ts +0 -47
  914. package/dist/types/ts3.4/commands/GetSizeConstraintSetCommand.d.ts +0 -43
  915. package/dist/types/ts3.4/commands/GetSqlInjectionMatchSetCommand.d.ts +0 -43
  916. package/dist/types/ts3.4/commands/GetWebACLCommand.d.ts +0 -43
  917. package/dist/types/ts3.4/commands/GetXssMatchSetCommand.d.ts +0 -43
  918. package/dist/types/ts3.4/commands/ListActivatedRulesInRuleGroupCommand.d.ts +0 -43
  919. package/dist/types/ts3.4/commands/ListByteMatchSetsCommand.d.ts +0 -43
  920. package/dist/types/ts3.4/commands/ListGeoMatchSetsCommand.d.ts +0 -43
  921. package/dist/types/ts3.4/commands/ListIPSetsCommand.d.ts +0 -43
  922. package/dist/types/ts3.4/commands/ListLoggingConfigurationsCommand.d.ts +0 -43
  923. package/dist/types/ts3.4/commands/ListRateBasedRulesCommand.d.ts +0 -43
  924. package/dist/types/ts3.4/commands/ListRegexMatchSetsCommand.d.ts +0 -43
  925. package/dist/types/ts3.4/commands/ListRegexPatternSetsCommand.d.ts +0 -43
  926. package/dist/types/ts3.4/commands/ListRuleGroupsCommand.d.ts +0 -43
  927. package/dist/types/ts3.4/commands/ListRulesCommand.d.ts +0 -43
  928. package/dist/types/ts3.4/commands/ListSizeConstraintSetsCommand.d.ts +0 -43
  929. package/dist/types/ts3.4/commands/ListSqlInjectionMatchSetsCommand.d.ts +0 -43
  930. package/dist/types/ts3.4/commands/ListSubscribedRuleGroupsCommand.d.ts +0 -43
  931. package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -44
  932. package/dist/types/ts3.4/commands/ListWebACLsCommand.d.ts +0 -43
  933. package/dist/types/ts3.4/commands/ListXssMatchSetsCommand.d.ts +0 -43
  934. package/dist/types/ts3.4/commands/PutLoggingConfigurationCommand.d.ts +0 -60
  935. package/dist/types/ts3.4/commands/PutPermissionPolicyCommand.d.ts +0 -75
  936. package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -44
  937. package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -43
  938. package/dist/types/ts3.4/commands/UpdateByteMatchSetCommand.d.ts +0 -81
  939. package/dist/types/ts3.4/commands/UpdateGeoMatchSetCommand.d.ts +0 -73
  940. package/dist/types/ts3.4/commands/UpdateIPSetCommand.d.ts +0 -108
  941. package/dist/types/ts3.4/commands/UpdateRateBasedRuleCommand.d.ts +0 -89
  942. package/dist/types/ts3.4/commands/UpdateRegexMatchSetCommand.d.ts +0 -77
  943. package/dist/types/ts3.4/commands/UpdateRegexPatternSetCommand.d.ts +0 -82
  944. package/dist/types/ts3.4/commands/UpdateRuleCommand.d.ts +0 -84
  945. package/dist/types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +0 -67
  946. package/dist/types/ts3.4/commands/UpdateSizeConstraintSetCommand.d.ts +0 -85
  947. package/dist/types/ts3.4/commands/UpdateSqlInjectionMatchSetCommand.d.ts +0 -84
  948. package/dist/types/ts3.4/commands/UpdateWebACLCommand.d.ts +0 -114
  949. package/dist/types/ts3.4/commands/UpdateXssMatchSetCommand.d.ts +0 -86
  950. package/dist/types/ts3.4/protocols/Aws_json1_1.d.ts +0 -233
  951. package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
  952. package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
  953. package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
  954. package/endpoints.ts +0 -68
  955. package/jest.config.js +0 -4
  956. package/models/models_0.ts +0 -7494
  957. package/protocols/Aws_json1_1.ts +0 -11231
  958. package/runtimeConfig.browser.ts +0 -40
  959. package/runtimeConfig.native.ts +0 -16
  960. package/runtimeConfig.shared.ts +0 -16
  961. package/runtimeConfig.ts +0 -45
  962. package/tsconfig.es.json +0 -12
  963. package/tsconfig.json +0 -32
@@ -1,144 +0,0 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
2
- import { UpdateSizeConstraintSetRequest, UpdateSizeConstraintSetResponse } from "../models/models_0";
3
- import {
4
- deserializeAws_json1_1UpdateSizeConstraintSetCommand,
5
- serializeAws_json1_1UpdateSizeConstraintSetCommand,
6
- } from "../protocols/Aws_json1_1";
7
- import { getSerdePlugin } from "@aws-sdk/middleware-serde";
8
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
9
- import { Command as $Command } from "@aws-sdk/smithy-client";
10
- import {
11
- FinalizeHandlerArguments,
12
- Handler,
13
- HandlerExecutionContext,
14
- MiddlewareStack,
15
- HttpHandlerOptions as __HttpHandlerOptions,
16
- MetadataBearer as __MetadataBearer,
17
- SerdeContext as __SerdeContext,
18
- } from "@aws-sdk/types";
19
-
20
- export interface UpdateSizeConstraintSetCommandInput extends UpdateSizeConstraintSetRequest {}
21
- export interface UpdateSizeConstraintSetCommandOutput extends UpdateSizeConstraintSetResponse, __MetadataBearer {}
22
-
23
- /**
24
- * <note>
25
- * <p>This is <b>AWS WAF Classic</b> documentation. For
26
- * more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
27
- * WAF Classic</a> in the developer guide.</p>
28
- * <p>
29
- * <b>For the latest version of AWS
30
- * WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p>
31
- * </note>
32
- * <p>Inserts or deletes <a>SizeConstraint</a> objects (filters) in a <a>SizeConstraintSet</a>. For each <code>SizeConstraint</code> object,
33
- * you specify the following values: </p>
34
- * <ul>
35
- * <li>
36
- * <p>Whether to insert or delete the object from the array. If you want to change a <code>SizeConstraintSetUpdate</code> object,
37
- * you delete the existing object and add a new one.</p>
38
- * </li>
39
- * <li>
40
- * <p>The part of a web request that you want AWS WAF to evaluate, such as the length of a query string or the length of the
41
- * <code>User-Agent</code> header.</p>
42
- * </li>
43
- * <li>
44
- * <p>Whether to perform any transformations on the request, such as converting it to lowercase, before checking its length.
45
- * Note that transformations of the request body are not supported because the AWS resource forwards only the first <code>8192</code> bytes
46
- * of your request to AWS WAF.</p>
47
- * <p>You can only specify a single type of TextTransformation.</p>
48
- * </li>
49
- * <li>
50
- * <p>A <code>ComparisonOperator</code> used for evaluating the selected part of the request against the specified <code>Size</code>, such as
51
- * equals, greater than, less than, and so on.</p>
52
- * </li>
53
- * <li>
54
- * <p>The length, in bytes, that you want AWS WAF to watch for in selected part of the request. The length is computed after applying the transformation.</p>
55
- * </li>
56
- * </ul>
57
- * <p>For example, you can add a <code>SizeConstraintSetUpdate</code> object that matches web requests in which the length of the
58
- * <code>User-Agent</code> header is greater than 100 bytes. You can then configure AWS WAF to block those requests.</p>
59
- * <p>To create and configure a <code>SizeConstraintSet</code>, perform the following steps:</p>
60
- * <ol>
61
- * <li>
62
- * <p>Create a <code>SizeConstraintSet.</code> For more information, see <a>CreateSizeConstraintSet</a>.</p>
63
- * </li>
64
- * <li>
65
- * <p>Use <a>GetChangeToken</a> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
66
- * <code>UpdateSizeConstraintSet</code> request.</p>
67
- * </li>
68
- * <li>
69
- * <p>Submit an <code>UpdateSizeConstraintSet</code> request to specify the part of the request that you want AWS WAF to inspect
70
- * (for example, the header or the URI) and the value that you want AWS WAF to watch for.</p>
71
- * </li>
72
- * </ol>
73
- * <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the
74
- * <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
75
- * @example
76
- * Use a bare-bones client and the command you need to make an API call.
77
- * ```javascript
78
- * import { WAFClient, UpdateSizeConstraintSetCommand } from "@aws-sdk/client-waf"; // ES Modules import
79
- * // const { WAFClient, UpdateSizeConstraintSetCommand } = require("@aws-sdk/client-waf"); // CommonJS import
80
- * const client = new WAFClient(config);
81
- * const command = new UpdateSizeConstraintSetCommand(input);
82
- * const response = await client.send(command);
83
- * ```
84
- *
85
- * @see {@link UpdateSizeConstraintSetCommandInput} for command's `input` shape.
86
- * @see {@link UpdateSizeConstraintSetCommandOutput} for command's `response` shape.
87
- * @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
88
- *
89
- */
90
- export class UpdateSizeConstraintSetCommand extends $Command<
91
- UpdateSizeConstraintSetCommandInput,
92
- UpdateSizeConstraintSetCommandOutput,
93
- WAFClientResolvedConfig
94
- > {
95
- // Start section: command_properties
96
- // End section: command_properties
97
-
98
- constructor(readonly input: UpdateSizeConstraintSetCommandInput) {
99
- // Start section: command_constructor
100
- super();
101
- // End section: command_constructor
102
- }
103
-
104
- /**
105
- * @internal
106
- */
107
- resolveMiddleware(
108
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
109
- configuration: WAFClientResolvedConfig,
110
- options?: __HttpHandlerOptions
111
- ): Handler<UpdateSizeConstraintSetCommandInput, UpdateSizeConstraintSetCommandOutput> {
112
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
113
-
114
- const stack = clientStack.concat(this.middlewareStack);
115
-
116
- const { logger } = configuration;
117
- const clientName = "WAFClient";
118
- const commandName = "UpdateSizeConstraintSetCommand";
119
- const handlerExecutionContext: HandlerExecutionContext = {
120
- logger,
121
- clientName,
122
- commandName,
123
- inputFilterSensitiveLog: UpdateSizeConstraintSetRequest.filterSensitiveLog,
124
- outputFilterSensitiveLog: UpdateSizeConstraintSetResponse.filterSensitiveLog,
125
- };
126
- const { requestHandler } = configuration;
127
- return stack.resolve(
128
- (request: FinalizeHandlerArguments<any>) =>
129
- requestHandler.handle(request.request as __HttpRequest, options || {}),
130
- handlerExecutionContext
131
- );
132
- }
133
-
134
- private serialize(input: UpdateSizeConstraintSetCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
135
- return serializeAws_json1_1UpdateSizeConstraintSetCommand(input, context);
136
- }
137
-
138
- private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<UpdateSizeConstraintSetCommandOutput> {
139
- return deserializeAws_json1_1UpdateSizeConstraintSetCommand(output, context);
140
- }
141
-
142
- // Start section: command_body_extra
143
- // End section: command_body_extra
144
- }
@@ -1,146 +0,0 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
2
- import { UpdateSqlInjectionMatchSetRequest, UpdateSqlInjectionMatchSetResponse } from "../models/models_0";
3
- import {
4
- deserializeAws_json1_1UpdateSqlInjectionMatchSetCommand,
5
- serializeAws_json1_1UpdateSqlInjectionMatchSetCommand,
6
- } from "../protocols/Aws_json1_1";
7
- import { getSerdePlugin } from "@aws-sdk/middleware-serde";
8
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
9
- import { Command as $Command } from "@aws-sdk/smithy-client";
10
- import {
11
- FinalizeHandlerArguments,
12
- Handler,
13
- HandlerExecutionContext,
14
- MiddlewareStack,
15
- HttpHandlerOptions as __HttpHandlerOptions,
16
- MetadataBearer as __MetadataBearer,
17
- SerdeContext as __SerdeContext,
18
- } from "@aws-sdk/types";
19
-
20
- export interface UpdateSqlInjectionMatchSetCommandInput extends UpdateSqlInjectionMatchSetRequest {}
21
- export interface UpdateSqlInjectionMatchSetCommandOutput extends UpdateSqlInjectionMatchSetResponse, __MetadataBearer {}
22
-
23
- /**
24
- * <note>
25
- * <p>This is <b>AWS WAF Classic</b> documentation. For
26
- * more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
27
- * WAF Classic</a> in the developer guide.</p>
28
- * <p>
29
- * <b>For the latest version of AWS
30
- * WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p>
31
- * </note>
32
- * <p>Inserts or deletes <a>SqlInjectionMatchTuple</a> objects (filters) in a <a>SqlInjectionMatchSet</a>.
33
- * For each <code>SqlInjectionMatchTuple</code> object, you specify the following values:</p>
34
- * <ul>
35
- * <li>
36
- * <p>
37
- * <code>Action</code>: Whether to insert the object into or delete the object from the array. To change a
38
- * <code>SqlInjectionMatchTuple</code>, you delete the existing object and add a new one.</p>
39
- * </li>
40
- * <li>
41
- * <p>
42
- * <code>FieldToMatch</code>: The part of web requests that you want AWS WAF to inspect and, if you want AWS WAF to inspect a header or custom query parameter,
43
- * the name of the header or parameter.</p>
44
- * </li>
45
- * <li>
46
- * <p>
47
- * <code>TextTransformation</code>: Which text transformation, if any, to perform on the web request before
48
- * inspecting the request for snippets of malicious SQL code.</p>
49
- * <p>You can only specify a single type of TextTransformation.</p>
50
- * </li>
51
- * </ul>
52
- * <p>You use <code>SqlInjectionMatchSet</code> objects to specify which CloudFront
53
- * requests that
54
- * you want to allow, block, or count. For example, if you're receiving
55
- * requests that contain snippets of SQL code in the query string and you want to block the
56
- * requests, you can create a <code>SqlInjectionMatchSet</code> with the applicable settings,
57
- * and then configure AWS WAF to block the requests. </p>
58
- * <p>To create and configure a <code>SqlInjectionMatchSet</code>, perform the following steps:</p>
59
- * <ol>
60
- * <li>
61
- * <p>Submit a <a>CreateSqlInjectionMatchSet</a> request.</p>
62
- * </li>
63
- * <li>
64
- * <p>Use <a>GetChangeToken</a> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
65
- * <a>UpdateIPSet</a> request.</p>
66
- * </li>
67
- * <li>
68
- * <p>Submit an <code>UpdateSqlInjectionMatchSet</code> request to specify the parts of web requests that you want AWS WAF to
69
- * inspect for snippets of SQL code.</p>
70
- * </li>
71
- * </ol>
72
- * <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the
73
- * <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
74
- * @example
75
- * Use a bare-bones client and the command you need to make an API call.
76
- * ```javascript
77
- * import { WAFClient, UpdateSqlInjectionMatchSetCommand } from "@aws-sdk/client-waf"; // ES Modules import
78
- * // const { WAFClient, UpdateSqlInjectionMatchSetCommand } = require("@aws-sdk/client-waf"); // CommonJS import
79
- * const client = new WAFClient(config);
80
- * const command = new UpdateSqlInjectionMatchSetCommand(input);
81
- * const response = await client.send(command);
82
- * ```
83
- *
84
- * @see {@link UpdateSqlInjectionMatchSetCommandInput} for command's `input` shape.
85
- * @see {@link UpdateSqlInjectionMatchSetCommandOutput} for command's `response` shape.
86
- * @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
87
- *
88
- */
89
- export class UpdateSqlInjectionMatchSetCommand extends $Command<
90
- UpdateSqlInjectionMatchSetCommandInput,
91
- UpdateSqlInjectionMatchSetCommandOutput,
92
- WAFClientResolvedConfig
93
- > {
94
- // Start section: command_properties
95
- // End section: command_properties
96
-
97
- constructor(readonly input: UpdateSqlInjectionMatchSetCommandInput) {
98
- // Start section: command_constructor
99
- super();
100
- // End section: command_constructor
101
- }
102
-
103
- /**
104
- * @internal
105
- */
106
- resolveMiddleware(
107
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
108
- configuration: WAFClientResolvedConfig,
109
- options?: __HttpHandlerOptions
110
- ): Handler<UpdateSqlInjectionMatchSetCommandInput, UpdateSqlInjectionMatchSetCommandOutput> {
111
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
112
-
113
- const stack = clientStack.concat(this.middlewareStack);
114
-
115
- const { logger } = configuration;
116
- const clientName = "WAFClient";
117
- const commandName = "UpdateSqlInjectionMatchSetCommand";
118
- const handlerExecutionContext: HandlerExecutionContext = {
119
- logger,
120
- clientName,
121
- commandName,
122
- inputFilterSensitiveLog: UpdateSqlInjectionMatchSetRequest.filterSensitiveLog,
123
- outputFilterSensitiveLog: UpdateSqlInjectionMatchSetResponse.filterSensitiveLog,
124
- };
125
- const { requestHandler } = configuration;
126
- return stack.resolve(
127
- (request: FinalizeHandlerArguments<any>) =>
128
- requestHandler.handle(request.request as __HttpRequest, options || {}),
129
- handlerExecutionContext
130
- );
131
- }
132
-
133
- private serialize(input: UpdateSqlInjectionMatchSetCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
134
- return serializeAws_json1_1UpdateSqlInjectionMatchSetCommand(input, context);
135
- }
136
-
137
- private deserialize(
138
- output: __HttpResponse,
139
- context: __SerdeContext
140
- ): Promise<UpdateSqlInjectionMatchSetCommandOutput> {
141
- return deserializeAws_json1_1UpdateSqlInjectionMatchSetCommand(output, context);
142
- }
143
-
144
- // Start section: command_body_extra
145
- // End section: command_body_extra
146
- }
@@ -1,173 +0,0 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
2
- import { UpdateWebACLRequest, UpdateWebACLResponse } from "../models/models_0";
3
- import {
4
- deserializeAws_json1_1UpdateWebACLCommand,
5
- serializeAws_json1_1UpdateWebACLCommand,
6
- } from "../protocols/Aws_json1_1";
7
- import { getSerdePlugin } from "@aws-sdk/middleware-serde";
8
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
9
- import { Command as $Command } from "@aws-sdk/smithy-client";
10
- import {
11
- FinalizeHandlerArguments,
12
- Handler,
13
- HandlerExecutionContext,
14
- MiddlewareStack,
15
- HttpHandlerOptions as __HttpHandlerOptions,
16
- MetadataBearer as __MetadataBearer,
17
- SerdeContext as __SerdeContext,
18
- } from "@aws-sdk/types";
19
-
20
- export interface UpdateWebACLCommandInput extends UpdateWebACLRequest {}
21
- export interface UpdateWebACLCommandOutput extends UpdateWebACLResponse, __MetadataBearer {}
22
-
23
- /**
24
- * <note>
25
- * <p>This is <b>AWS WAF Classic</b> documentation. For
26
- * more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
27
- * WAF Classic</a> in the developer guide.</p>
28
- * <p>
29
- * <b>For the latest version of AWS
30
- * WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p>
31
- * </note>
32
- * <p>Inserts or deletes <a>ActivatedRule</a> objects in a <code>WebACL</code>. Each <code>Rule</code> identifies
33
- * web requests that you want to allow, block, or count. When you update a <code>WebACL</code>, you specify the following values:</p>
34
- * <ul>
35
- * <li>
36
- * <p>A default action for the <code>WebACL</code>, either <code>ALLOW</code> or <code>BLOCK</code>.
37
- * AWS WAF performs the default action if a request doesn't match the criteria in any of the <code>Rules</code> in a <code>WebACL</code>.</p>
38
- * </li>
39
- * <li>
40
- * <p>The <code>Rules</code> that you want to add
41
- * or
42
- * delete. If you want to replace one <code>Rule</code> with another, you delete the
43
- * existing <code>Rule</code> and add the new one.</p>
44
- * </li>
45
- * <li>
46
- * <p>For each <code>Rule</code>, whether you want AWS WAF to allow requests, block requests, or count requests that match
47
- * the conditions in the <code>Rule</code>.</p>
48
- * </li>
49
- * <li>
50
- * <p>The order in which you want AWS WAF to evaluate the <code>Rules</code> in a
51
- * <code>WebACL</code>. If you add more than one <code>Rule</code> to a
52
- * <code>WebACL</code>, AWS WAF evaluates each request against the <code>Rules</code>
53
- * in order based on the value of <code>Priority</code>. (The <code>Rule</code> that has
54
- * the lowest value for <code>Priority</code> is evaluated first.) When a web request
55
- * matches all
56
- * the
57
- * predicates (such as <code>ByteMatchSets</code> and <code>IPSets</code>) in a
58
- * <code>Rule</code>, AWS WAF immediately takes the corresponding action, allow or
59
- * block, and doesn't evaluate the request against the remaining <code>Rules</code> in
60
- * the <code>WebACL</code>, if any. </p>
61
- * </li>
62
- * </ul>
63
- *
64
- * <p>To create and configure a <code>WebACL</code>, perform the following steps:</p>
65
- * <ol>
66
- * <li>
67
- * <p>Create and update the predicates that you want to include in <code>Rules</code>.
68
- * For more information, see <a>CreateByteMatchSet</a>, <a>UpdateByteMatchSet</a>, <a>CreateIPSet</a>, <a>UpdateIPSet</a>,
69
- * <a>CreateSqlInjectionMatchSet</a>, and <a>UpdateSqlInjectionMatchSet</a>.</p>
70
- * </li>
71
- * <li>
72
- * <p>Create and update the <code>Rules</code> that you want to include in the <code>WebACL</code>. For more information, see
73
- * <a>CreateRule</a> and <a>UpdateRule</a>.</p>
74
- * </li>
75
- * <li>
76
- * <p>Create a <code>WebACL</code>. See <a>CreateWebACL</a>.</p>
77
- * </li>
78
- * <li>
79
- * <p>Use <code>GetChangeToken</code> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
80
- * <a>UpdateWebACL</a> request.</p>
81
- * </li>
82
- * <li>
83
- * <p>Submit an <code>UpdateWebACL</code> request to specify the <code>Rules</code>
84
- * that you want to include in the <code>WebACL</code>, to specify the default action,
85
- * and to associate the <code>WebACL</code> with a CloudFront distribution. </p>
86
- * <p>The <code>ActivatedRule</code> can be a rule group. If you specify a rule group
87
- * as your
88
- * <code>ActivatedRule</code>
89
- * ,
90
- * you can exclude specific rules from that rule group.</p>
91
- * <p>If you already have a rule group associated with a web ACL and want to submit
92
- * an <code>UpdateWebACL</code> request to exclude certain rules from that rule group,
93
- * you must first remove the rule group from the web ACL, the re-insert it again,
94
- * specifying the excluded rules.
95
- * For details,
96
- * see
97
- * <a>ActivatedRule$ExcludedRules</a>
98
- * .
99
- * </p>
100
- * </li>
101
- * </ol>
102
- * <p>Be aware that if you try to add a RATE_BASED rule to a web ACL without setting the rule type when first creating the rule, the <a>UpdateWebACL</a> request will fail because the request tries to add a REGULAR rule (the default rule type) with the specified ID, which does not exist. </p>
103
- * <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
104
- * @example
105
- * Use a bare-bones client and the command you need to make an API call.
106
- * ```javascript
107
- * import { WAFClient, UpdateWebACLCommand } from "@aws-sdk/client-waf"; // ES Modules import
108
- * // const { WAFClient, UpdateWebACLCommand } = require("@aws-sdk/client-waf"); // CommonJS import
109
- * const client = new WAFClient(config);
110
- * const command = new UpdateWebACLCommand(input);
111
- * const response = await client.send(command);
112
- * ```
113
- *
114
- * @see {@link UpdateWebACLCommandInput} for command's `input` shape.
115
- * @see {@link UpdateWebACLCommandOutput} for command's `response` shape.
116
- * @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
117
- *
118
- */
119
- export class UpdateWebACLCommand extends $Command<
120
- UpdateWebACLCommandInput,
121
- UpdateWebACLCommandOutput,
122
- WAFClientResolvedConfig
123
- > {
124
- // Start section: command_properties
125
- // End section: command_properties
126
-
127
- constructor(readonly input: UpdateWebACLCommandInput) {
128
- // Start section: command_constructor
129
- super();
130
- // End section: command_constructor
131
- }
132
-
133
- /**
134
- * @internal
135
- */
136
- resolveMiddleware(
137
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
138
- configuration: WAFClientResolvedConfig,
139
- options?: __HttpHandlerOptions
140
- ): Handler<UpdateWebACLCommandInput, UpdateWebACLCommandOutput> {
141
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
142
-
143
- const stack = clientStack.concat(this.middlewareStack);
144
-
145
- const { logger } = configuration;
146
- const clientName = "WAFClient";
147
- const commandName = "UpdateWebACLCommand";
148
- const handlerExecutionContext: HandlerExecutionContext = {
149
- logger,
150
- clientName,
151
- commandName,
152
- inputFilterSensitiveLog: UpdateWebACLRequest.filterSensitiveLog,
153
- outputFilterSensitiveLog: UpdateWebACLResponse.filterSensitiveLog,
154
- };
155
- const { requestHandler } = configuration;
156
- return stack.resolve(
157
- (request: FinalizeHandlerArguments<any>) =>
158
- requestHandler.handle(request.request as __HttpRequest, options || {}),
159
- handlerExecutionContext
160
- );
161
- }
162
-
163
- private serialize(input: UpdateWebACLCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
164
- return serializeAws_json1_1UpdateWebACLCommand(input, context);
165
- }
166
-
167
- private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<UpdateWebACLCommandOutput> {
168
- return deserializeAws_json1_1UpdateWebACLCommand(output, context);
169
- }
170
-
171
- // Start section: command_body_extra
172
- // End section: command_body_extra
173
- }
@@ -1,145 +0,0 @@
1
- import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
2
- import { UpdateXssMatchSetRequest, UpdateXssMatchSetResponse } from "../models/models_0";
3
- import {
4
- deserializeAws_json1_1UpdateXssMatchSetCommand,
5
- serializeAws_json1_1UpdateXssMatchSetCommand,
6
- } from "../protocols/Aws_json1_1";
7
- import { getSerdePlugin } from "@aws-sdk/middleware-serde";
8
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
9
- import { Command as $Command } from "@aws-sdk/smithy-client";
10
- import {
11
- FinalizeHandlerArguments,
12
- Handler,
13
- HandlerExecutionContext,
14
- MiddlewareStack,
15
- HttpHandlerOptions as __HttpHandlerOptions,
16
- MetadataBearer as __MetadataBearer,
17
- SerdeContext as __SerdeContext,
18
- } from "@aws-sdk/types";
19
-
20
- export interface UpdateXssMatchSetCommandInput extends UpdateXssMatchSetRequest {}
21
- export interface UpdateXssMatchSetCommandOutput extends UpdateXssMatchSetResponse, __MetadataBearer {}
22
-
23
- /**
24
- * <note>
25
- * <p>This is <b>AWS WAF Classic</b> documentation. For
26
- * more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
27
- * WAF Classic</a> in the developer guide.</p>
28
- * <p>
29
- * <b>For the latest version of AWS
30
- * WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p>
31
- * </note>
32
- * <p>Inserts or deletes <a>XssMatchTuple</a> objects (filters) in an <a>XssMatchSet</a>.
33
- * For each <code>XssMatchTuple</code> object, you specify the following values:</p>
34
- * <ul>
35
- * <li>
36
- * <p>
37
- * <code>Action</code>: Whether to insert the object into or delete the object from the
38
- * array. To change an
39
- * <code>XssMatchTuple</code>, you delete the existing object and add a new
40
- * one.</p>
41
- * </li>
42
- * <li>
43
- * <p>
44
- * <code>FieldToMatch</code>: The part of web requests that you want AWS WAF to inspect and, if you want AWS WAF to inspect a header or custom query parameter,
45
- * the name of the header or parameter.</p>
46
- * </li>
47
- * <li>
48
- * <p>
49
- * <code>TextTransformation</code>: Which text transformation, if any, to perform on the web request before
50
- * inspecting the request for cross-site scripting attacks.</p>
51
- * <p>You can only specify a single type of TextTransformation.</p>
52
- * </li>
53
- * </ul>
54
- * <p>You use <code>XssMatchSet</code> objects to specify which CloudFront requests
55
- * that
56
- * you want to allow, block, or count. For example, if you're receiving
57
- * requests that contain cross-site scripting attacks in the request body and you want to
58
- * block the requests, you can create an <code>XssMatchSet</code> with the applicable
59
- * settings, and then configure AWS WAF to block the requests. </p>
60
- * <p>To create and configure an <code>XssMatchSet</code>, perform the following steps:</p>
61
- * <ol>
62
- * <li>
63
- * <p>Submit a <a>CreateXssMatchSet</a> request.</p>
64
- * </li>
65
- * <li>
66
- * <p>Use <a>GetChangeToken</a> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
67
- * <a>UpdateIPSet</a> request.</p>
68
- * </li>
69
- * <li>
70
- * <p>Submit an <code>UpdateXssMatchSet</code> request to specify the parts of web requests that you want AWS WAF to
71
- * inspect for cross-site scripting attacks.</p>
72
- * </li>
73
- * </ol>
74
- * <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the
75
- * <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
76
- * @example
77
- * Use a bare-bones client and the command you need to make an API call.
78
- * ```javascript
79
- * import { WAFClient, UpdateXssMatchSetCommand } from "@aws-sdk/client-waf"; // ES Modules import
80
- * // const { WAFClient, UpdateXssMatchSetCommand } = require("@aws-sdk/client-waf"); // CommonJS import
81
- * const client = new WAFClient(config);
82
- * const command = new UpdateXssMatchSetCommand(input);
83
- * const response = await client.send(command);
84
- * ```
85
- *
86
- * @see {@link UpdateXssMatchSetCommandInput} for command's `input` shape.
87
- * @see {@link UpdateXssMatchSetCommandOutput} for command's `response` shape.
88
- * @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
89
- *
90
- */
91
- export class UpdateXssMatchSetCommand extends $Command<
92
- UpdateXssMatchSetCommandInput,
93
- UpdateXssMatchSetCommandOutput,
94
- WAFClientResolvedConfig
95
- > {
96
- // Start section: command_properties
97
- // End section: command_properties
98
-
99
- constructor(readonly input: UpdateXssMatchSetCommandInput) {
100
- // Start section: command_constructor
101
- super();
102
- // End section: command_constructor
103
- }
104
-
105
- /**
106
- * @internal
107
- */
108
- resolveMiddleware(
109
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
110
- configuration: WAFClientResolvedConfig,
111
- options?: __HttpHandlerOptions
112
- ): Handler<UpdateXssMatchSetCommandInput, UpdateXssMatchSetCommandOutput> {
113
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
114
-
115
- const stack = clientStack.concat(this.middlewareStack);
116
-
117
- const { logger } = configuration;
118
- const clientName = "WAFClient";
119
- const commandName = "UpdateXssMatchSetCommand";
120
- const handlerExecutionContext: HandlerExecutionContext = {
121
- logger,
122
- clientName,
123
- commandName,
124
- inputFilterSensitiveLog: UpdateXssMatchSetRequest.filterSensitiveLog,
125
- outputFilterSensitiveLog: UpdateXssMatchSetResponse.filterSensitiveLog,
126
- };
127
- const { requestHandler } = configuration;
128
- return stack.resolve(
129
- (request: FinalizeHandlerArguments<any>) =>
130
- requestHandler.handle(request.request as __HttpRequest, options || {}),
131
- handlerExecutionContext
132
- );
133
- }
134
-
135
- private serialize(input: UpdateXssMatchSetCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
136
- return serializeAws_json1_1UpdateXssMatchSetCommand(input, context);
137
- }
138
-
139
- private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<UpdateXssMatchSetCommandOutput> {
140
- return deserializeAws_json1_1UpdateXssMatchSetCommand(output, context);
141
- }
142
-
143
- // Start section: command_body_extra
144
- // End section: command_body_extra
145
- }