@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.
- package/CHANGELOG.md +44 -0
- package/dist-cjs/WAF.js +1175 -0
- package/dist-cjs/WAFClient.js +53 -0
- package/dist-cjs/commands/CreateByteMatchSetCommand.js +91 -0
- package/dist-cjs/commands/CreateGeoMatchSetCommand.js +88 -0
- package/dist-cjs/commands/CreateIPSetCommand.js +93 -0
- package/dist-cjs/commands/CreateRateBasedRuleCommand.js +153 -0
- package/dist-cjs/commands/CreateRegexMatchSetCommand.js +91 -0
- package/dist-cjs/commands/CreateRegexPatternSetCommand.js +87 -0
- package/dist-cjs/commands/CreateRuleCommand.js +111 -0
- package/dist-cjs/commands/CreateRuleGroupCommand.js +82 -0
- package/dist-cjs/commands/CreateSizeConstraintSetCommand.js +91 -0
- package/dist-cjs/commands/CreateSqlInjectionMatchSetCommand.js +89 -0
- package/dist-cjs/commands/CreateWebACLCommand.js +99 -0
- package/dist-cjs/commands/CreateWebACLMigrationStackCommand.js +67 -0
- package/dist-cjs/commands/CreateXssMatchSetCommand.js +89 -0
- package/dist-cjs/commands/DeleteByteMatchSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteGeoMatchSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteIPSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +69 -0
- package/dist-cjs/commands/DeletePermissionPolicyCommand.js +69 -0
- package/dist-cjs/commands/DeleteRateBasedRuleCommand.js +87 -0
- package/dist-cjs/commands/DeleteRegexMatchSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteRegexPatternSetCommand.js +69 -0
- package/dist-cjs/commands/DeleteRuleCommand.js +83 -0
- package/dist-cjs/commands/DeleteRuleGroupCommand.js +83 -0
- package/dist-cjs/commands/DeleteSizeConstraintSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteSqlInjectionMatchSetCommand.js +84 -0
- package/dist-cjs/commands/DeleteWebACLCommand.js +81 -0
- package/dist-cjs/commands/DeleteXssMatchSetCommand.js +84 -0
- package/dist-cjs/commands/GetByteMatchSetCommand.js +68 -0
- package/dist-cjs/commands/GetChangeTokenCommand.js +74 -0
- package/dist-cjs/commands/GetChangeTokenStatusCommand.js +84 -0
- package/dist-cjs/commands/GetGeoMatchSetCommand.js +68 -0
- package/dist-cjs/commands/GetIPSetCommand.js +68 -0
- package/dist-cjs/commands/GetLoggingConfigurationCommand.js +68 -0
- package/dist-cjs/commands/GetPermissionPolicyCommand.js +68 -0
- package/dist-cjs/commands/GetRateBasedRuleCommand.js +70 -0
- package/dist-cjs/commands/GetRateBasedRuleManagedKeysCommand.js +70 -0
- package/dist-cjs/commands/GetRegexMatchSetCommand.js +68 -0
- package/dist-cjs/commands/GetRegexPatternSetCommand.js +68 -0
- package/dist-cjs/commands/GetRuleCommand.js +68 -0
- package/dist-cjs/commands/GetRuleGroupCommand.js +69 -0
- package/dist-cjs/commands/GetSampledRequestsCommand.js +72 -0
- package/dist-cjs/commands/GetSizeConstraintSetCommand.js +68 -0
- package/dist-cjs/commands/GetSqlInjectionMatchSetCommand.js +68 -0
- package/dist-cjs/commands/GetWebACLCommand.js +68 -0
- package/dist-cjs/commands/GetXssMatchSetCommand.js +68 -0
- package/dist-cjs/commands/ListActivatedRulesInRuleGroupCommand.js +68 -0
- package/dist-cjs/commands/ListByteMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/ListGeoMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/ListIPSetsCommand.js +68 -0
- package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +68 -0
- package/dist-cjs/commands/ListRateBasedRulesCommand.js +68 -0
- package/dist-cjs/commands/ListRegexMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/ListRegexPatternSetsCommand.js +68 -0
- package/dist-cjs/commands/ListRuleGroupsCommand.js +68 -0
- package/dist-cjs/commands/ListRulesCommand.js +68 -0
- package/dist-cjs/commands/ListSizeConstraintSetsCommand.js +68 -0
- package/dist-cjs/commands/ListSqlInjectionMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/ListSubscribedRuleGroupsCommand.js +68 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +69 -0
- package/dist-cjs/commands/ListWebACLsCommand.js +68 -0
- package/dist-cjs/commands/ListXssMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/PutLoggingConfigurationCommand.js +85 -0
- package/dist-cjs/commands/PutPermissionPolicyCommand.js +100 -0
- package/dist-cjs/commands/TagResourceCommand.js +69 -0
- package/dist-cjs/commands/UntagResourceCommand.js +68 -0
- package/dist-cjs/commands/UpdateByteMatchSetCommand.js +106 -0
- package/dist-cjs/commands/UpdateGeoMatchSetCommand.js +98 -0
- package/dist-cjs/commands/UpdateIPSetCommand.js +133 -0
- package/dist-cjs/commands/UpdateRateBasedRuleCommand.js +114 -0
- package/dist-cjs/commands/UpdateRegexMatchSetCommand.js +102 -0
- package/dist-cjs/commands/UpdateRegexPatternSetCommand.js +107 -0
- package/dist-cjs/commands/UpdateRuleCommand.js +109 -0
- package/dist-cjs/commands/UpdateRuleGroupCommand.js +92 -0
- package/dist-cjs/commands/UpdateSizeConstraintSetCommand.js +110 -0
- package/dist-cjs/commands/UpdateSqlInjectionMatchSetCommand.js +109 -0
- package/dist-cjs/commands/UpdateWebACLCommand.js +139 -0
- package/dist-cjs/commands/UpdateXssMatchSetCommand.js +111 -0
- package/dist-cjs/endpoints.js +67 -0
- package/dist-cjs/index.js +83 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +2436 -0
- package/dist-cjs/protocols/Aws_json1_1.js +9199 -0
- package/dist-cjs/runtimeConfig.browser.js +41 -0
- package/dist-cjs/runtimeConfig.js +46 -0
- package/dist-cjs/runtimeConfig.native.js +19 -0
- package/dist-cjs/runtimeConfig.shared.js +20 -0
- package/dist-es/WAF.js +1165 -0
- package/dist-es/WAFClient.js +37 -0
- package/dist-es/commands/CreateByteMatchSetCommand.js +39 -0
- package/dist-es/commands/CreateGeoMatchSetCommand.js +39 -0
- package/dist-es/commands/CreateIPSetCommand.js +39 -0
- package/dist-es/commands/CreateRateBasedRuleCommand.js +39 -0
- package/dist-es/commands/CreateRegexMatchSetCommand.js +39 -0
- package/dist-es/commands/CreateRegexPatternSetCommand.js +39 -0
- package/dist-es/commands/CreateRuleCommand.js +39 -0
- package/dist-es/commands/CreateRuleGroupCommand.js +39 -0
- package/dist-es/commands/CreateSizeConstraintSetCommand.js +39 -0
- package/dist-es/commands/CreateSqlInjectionMatchSetCommand.js +39 -0
- package/dist-es/commands/CreateWebACLCommand.js +39 -0
- package/dist-es/commands/CreateWebACLMigrationStackCommand.js +39 -0
- package/dist-es/commands/CreateXssMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteByteMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteGeoMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteIPSetCommand.js +39 -0
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +39 -0
- package/dist-es/commands/DeletePermissionPolicyCommand.js +39 -0
- package/dist-es/commands/DeleteRateBasedRuleCommand.js +39 -0
- package/dist-es/commands/DeleteRegexMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteRegexPatternSetCommand.js +39 -0
- package/dist-es/commands/DeleteRuleCommand.js +39 -0
- package/dist-es/commands/DeleteRuleGroupCommand.js +39 -0
- package/dist-es/commands/DeleteSizeConstraintSetCommand.js +39 -0
- package/dist-es/commands/DeleteSqlInjectionMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteWebACLCommand.js +39 -0
- package/dist-es/commands/DeleteXssMatchSetCommand.js +39 -0
- package/dist-es/commands/GetByteMatchSetCommand.js +39 -0
- package/dist-es/commands/GetChangeTokenCommand.js +39 -0
- package/dist-es/commands/GetChangeTokenStatusCommand.js +39 -0
- package/dist-es/commands/GetGeoMatchSetCommand.js +39 -0
- package/dist-es/commands/GetIPSetCommand.js +39 -0
- package/dist-es/commands/GetLoggingConfigurationCommand.js +39 -0
- package/dist-es/commands/GetPermissionPolicyCommand.js +39 -0
- package/dist-es/commands/GetRateBasedRuleCommand.js +39 -0
- package/dist-es/commands/GetRateBasedRuleManagedKeysCommand.js +39 -0
- package/dist-es/commands/GetRegexMatchSetCommand.js +39 -0
- package/dist-es/commands/GetRegexPatternSetCommand.js +39 -0
- package/dist-es/commands/GetRuleCommand.js +39 -0
- package/dist-es/commands/GetRuleGroupCommand.js +39 -0
- package/dist-es/commands/GetSampledRequestsCommand.js +39 -0
- package/dist-es/commands/GetSizeConstraintSetCommand.js +39 -0
- package/dist-es/commands/GetSqlInjectionMatchSetCommand.js +39 -0
- package/dist-es/commands/GetWebACLCommand.js +39 -0
- package/dist-es/commands/GetXssMatchSetCommand.js +39 -0
- package/dist-es/commands/ListActivatedRulesInRuleGroupCommand.js +39 -0
- package/dist-es/commands/ListByteMatchSetsCommand.js +39 -0
- package/dist-es/commands/ListGeoMatchSetsCommand.js +39 -0
- package/dist-es/commands/ListIPSetsCommand.js +39 -0
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +39 -0
- package/dist-es/commands/ListRateBasedRulesCommand.js +39 -0
- package/dist-es/commands/ListRegexMatchSetsCommand.js +39 -0
- package/dist-es/commands/ListRegexPatternSetsCommand.js +39 -0
- package/dist-es/commands/ListRuleGroupsCommand.js +39 -0
- package/dist-es/commands/ListRulesCommand.js +39 -0
- package/dist-es/commands/ListSizeConstraintSetsCommand.js +39 -0
- package/dist-es/commands/ListSqlInjectionMatchSetsCommand.js +39 -0
- package/dist-es/commands/ListSubscribedRuleGroupsCommand.js +39 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/ListWebACLsCommand.js +39 -0
- package/dist-es/commands/ListXssMatchSetsCommand.js +39 -0
- package/dist-es/commands/PutLoggingConfigurationCommand.js +39 -0
- package/dist-es/commands/PutPermissionPolicyCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/UpdateByteMatchSetCommand.js +39 -0
- package/dist-es/commands/UpdateGeoMatchSetCommand.js +39 -0
- package/dist-es/commands/UpdateIPSetCommand.js +39 -0
- package/dist-es/commands/UpdateRateBasedRuleCommand.js +39 -0
- package/dist-es/commands/UpdateRegexMatchSetCommand.js +39 -0
- package/dist-es/commands/UpdateRegexPatternSetCommand.js +39 -0
- package/dist-es/commands/UpdateRuleCommand.js +39 -0
- package/dist-es/commands/UpdateRuleGroupCommand.js +39 -0
- package/dist-es/commands/UpdateSizeConstraintSetCommand.js +39 -0
- package/dist-es/commands/UpdateSqlInjectionMatchSetCommand.js +39 -0
- package/dist-es/commands/UpdateWebACLCommand.js +39 -0
- package/dist-es/commands/UpdateXssMatchSetCommand.js +39 -0
- package/dist-es/endpoints.js +63 -0
- package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
- package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
- package/dist-es/models/models_0.js +1290 -0
- package/dist-es/protocols/Aws_json1_1.js +9604 -0
- package/dist-es/runtimeConfig.browser.js +16 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/WAF.d.ts +2287 -0
- package/dist-types/WAFClient.d.ts +219 -0
- package/dist-types/commands/CreateByteMatchSetCommand.d.ts +66 -0
- package/dist-types/commands/CreateGeoMatchSetCommand.d.ts +63 -0
- package/dist-types/commands/CreateIPSetCommand.d.ts +68 -0
- package/dist-types/commands/CreateRateBasedRuleCommand.d.ts +128 -0
- package/dist-types/commands/CreateRegexMatchSetCommand.d.ts +66 -0
- package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +62 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +86 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +57 -0
- package/dist-types/commands/CreateSizeConstraintSetCommand.d.ts +66 -0
- package/dist-types/commands/CreateSqlInjectionMatchSetCommand.d.ts +64 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +74 -0
- package/dist-types/commands/CreateWebACLMigrationStackCommand.d.ts +42 -0
- package/dist-types/commands/CreateXssMatchSetCommand.d.ts +64 -0
- package/dist-types/commands/DeleteByteMatchSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteGeoMatchSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteIPSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +44 -0
- package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +44 -0
- package/dist-types/commands/DeleteRateBasedRuleCommand.d.ts +62 -0
- package/dist-types/commands/DeleteRegexMatchSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +44 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +58 -0
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +58 -0
- package/dist-types/commands/DeleteSizeConstraintSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteSqlInjectionMatchSetCommand.d.ts +59 -0
- package/dist-types/commands/DeleteWebACLCommand.d.ts +56 -0
- package/dist-types/commands/DeleteXssMatchSetCommand.d.ts +59 -0
- package/dist-types/commands/GetByteMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/GetChangeTokenCommand.d.ts +49 -0
- package/dist-types/commands/GetChangeTokenStatusCommand.d.ts +59 -0
- package/dist-types/commands/GetGeoMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/GetIPSetCommand.d.ts +43 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +43 -0
- package/dist-types/commands/GetPermissionPolicyCommand.d.ts +43 -0
- package/dist-types/commands/GetRateBasedRuleCommand.d.ts +45 -0
- package/dist-types/commands/GetRateBasedRuleManagedKeysCommand.d.ts +45 -0
- package/dist-types/commands/GetRegexMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/GetRegexPatternSetCommand.d.ts +43 -0
- package/dist-types/commands/GetRuleCommand.d.ts +43 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +44 -0
- package/dist-types/commands/GetSampledRequestsCommand.d.ts +47 -0
- package/dist-types/commands/GetSizeConstraintSetCommand.d.ts +43 -0
- package/dist-types/commands/GetSqlInjectionMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +43 -0
- package/dist-types/commands/GetXssMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/ListActivatedRulesInRuleGroupCommand.d.ts +43 -0
- package/dist-types/commands/ListByteMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListGeoMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListIPSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +43 -0
- package/dist-types/commands/ListRateBasedRulesCommand.d.ts +43 -0
- package/dist-types/commands/ListRegexMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +43 -0
- package/dist-types/commands/ListRulesCommand.d.ts +43 -0
- package/dist-types/commands/ListSizeConstraintSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListSqlInjectionMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListSubscribedRuleGroupsCommand.d.ts +43 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +44 -0
- package/dist-types/commands/ListWebACLsCommand.d.ts +43 -0
- package/dist-types/commands/ListXssMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +60 -0
- package/dist-types/commands/PutPermissionPolicyCommand.d.ts +75 -0
- package/dist-types/commands/TagResourceCommand.d.ts +44 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +43 -0
- package/dist-types/commands/UpdateByteMatchSetCommand.d.ts +81 -0
- package/dist-types/commands/UpdateGeoMatchSetCommand.d.ts +73 -0
- package/dist-types/commands/UpdateIPSetCommand.d.ts +108 -0
- package/dist-types/commands/UpdateRateBasedRuleCommand.d.ts +89 -0
- package/dist-types/commands/UpdateRegexMatchSetCommand.d.ts +77 -0
- package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +82 -0
- package/dist-types/commands/UpdateRuleCommand.d.ts +84 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +67 -0
- package/dist-types/commands/UpdateSizeConstraintSetCommand.d.ts +85 -0
- package/dist-types/commands/UpdateSqlInjectionMatchSetCommand.d.ts +84 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +114 -0
- package/dist-types/commands/UpdateXssMatchSetCommand.d.ts +86 -0
- package/{dist/types → dist-types}/endpoints.d.ts +0 -0
- package/{index.ts → dist-types/index.d.ts} +0 -0
- package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
- package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +233 -0
- package/dist-types/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/runtimeConfig.d.ts +37 -0
- package/dist-types/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/WAF.d.ts +2287 -0
- package/dist-types/ts3.4/WAFClient.d.ts +219 -0
- package/dist-types/ts3.4/commands/CreateByteMatchSetCommand.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateGeoMatchSetCommand.d.ts +63 -0
- package/dist-types/ts3.4/commands/CreateIPSetCommand.d.ts +68 -0
- package/dist-types/ts3.4/commands/CreateRateBasedRuleCommand.d.ts +128 -0
- package/dist-types/ts3.4/commands/CreateRegexMatchSetCommand.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateRegexPatternSetCommand.d.ts +62 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +86 -0
- package/dist-types/ts3.4/commands/CreateRuleGroupCommand.d.ts +57 -0
- package/dist-types/ts3.4/commands/CreateSizeConstraintSetCommand.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateSqlInjectionMatchSetCommand.d.ts +64 -0
- package/dist-types/ts3.4/commands/CreateWebACLCommand.d.ts +74 -0
- package/dist-types/ts3.4/commands/CreateWebACLMigrationStackCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateXssMatchSetCommand.d.ts +64 -0
- package/dist-types/ts3.4/commands/DeleteByteMatchSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteGeoMatchSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteIPSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeletePermissionPolicyCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteRateBasedRuleCommand.d.ts +62 -0
- package/dist-types/ts3.4/commands/DeleteRegexMatchSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteRegexPatternSetCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteSizeConstraintSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteSqlInjectionMatchSetCommand.d.ts +59 -0
- package/dist-types/ts3.4/commands/DeleteWebACLCommand.d.ts +56 -0
- package/dist-types/ts3.4/commands/DeleteXssMatchSetCommand.d.ts +59 -0
- package/dist-types/ts3.4/commands/GetByteMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetChangeTokenCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetChangeTokenStatusCommand.d.ts +59 -0
- package/dist-types/ts3.4/commands/GetGeoMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetIPSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetLoggingConfigurationCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetPermissionPolicyCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetRateBasedRuleCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetRateBasedRuleManagedKeysCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetRegexMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetRegexPatternSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetRuleGroupCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetSampledRequestsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetSizeConstraintSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetSqlInjectionMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetWebACLCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetXssMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListActivatedRulesInRuleGroupCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListByteMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListGeoMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListIPSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListLoggingConfigurationsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRateBasedRulesCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRegexMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRegexPatternSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRuleGroupsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListSizeConstraintSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListSqlInjectionMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListSubscribedRuleGroupsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListWebACLsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListXssMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/PutLoggingConfigurationCommand.d.ts +60 -0
- package/dist-types/ts3.4/commands/PutPermissionPolicyCommand.d.ts +75 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/UpdateByteMatchSetCommand.d.ts +81 -0
- package/dist-types/ts3.4/commands/UpdateGeoMatchSetCommand.d.ts +73 -0
- package/dist-types/ts3.4/commands/UpdateIPSetCommand.d.ts +108 -0
- package/dist-types/ts3.4/commands/UpdateRateBasedRuleCommand.d.ts +89 -0
- package/dist-types/ts3.4/commands/UpdateRegexMatchSetCommand.d.ts +77 -0
- package/dist-types/ts3.4/commands/UpdateRegexPatternSetCommand.d.ts +82 -0
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +84 -0
- package/dist-types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +67 -0
- package/dist-types/ts3.4/commands/UpdateSizeConstraintSetCommand.d.ts +85 -0
- package/dist-types/ts3.4/commands/UpdateSqlInjectionMatchSetCommand.d.ts +84 -0
- package/dist-types/ts3.4/commands/UpdateWebACLCommand.d.ts +114 -0
- package/dist-types/ts3.4/commands/UpdateXssMatchSetCommand.d.ts +86 -0
- package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
- package/package.json +52 -49
- package/WAF.ts +0 -4455
- package/WAFClient.ts +0 -575
- package/commands/CreateByteMatchSetCommand.ts +0 -125
- package/commands/CreateGeoMatchSetCommand.ts +0 -122
- package/commands/CreateIPSetCommand.ts +0 -127
- package/commands/CreateRateBasedRuleCommand.ts +0 -187
- package/commands/CreateRegexMatchSetCommand.ts +0 -125
- package/commands/CreateRegexPatternSetCommand.ts +0 -121
- package/commands/CreateRuleCommand.ts +0 -145
- package/commands/CreateRuleGroupCommand.ts +0 -116
- package/commands/CreateSizeConstraintSetCommand.ts +0 -125
- package/commands/CreateSqlInjectionMatchSetCommand.ts +0 -126
- package/commands/CreateWebACLCommand.ts +0 -133
- package/commands/CreateWebACLMigrationStackCommand.ts +0 -104
- package/commands/CreateXssMatchSetCommand.ts +0 -123
- package/commands/DeleteByteMatchSetCommand.ts +0 -117
- package/commands/DeleteGeoMatchSetCommand.ts +0 -117
- package/commands/DeleteIPSetCommand.ts +0 -117
- package/commands/DeleteLoggingConfigurationCommand.ts +0 -106
- package/commands/DeletePermissionPolicyCommand.ts +0 -103
- package/commands/DeleteRateBasedRuleCommand.ts +0 -121
- package/commands/DeleteRegexMatchSetCommand.ts +0 -117
- package/commands/DeleteRegexPatternSetCommand.ts +0 -103
- package/commands/DeleteRuleCommand.ts +0 -117
- package/commands/DeleteRuleGroupCommand.ts +0 -117
- package/commands/DeleteSizeConstraintSetCommand.ts +0 -117
- package/commands/DeleteSqlInjectionMatchSetCommand.ts +0 -121
- package/commands/DeleteWebACLCommand.ts +0 -115
- package/commands/DeleteXssMatchSetCommand.ts +0 -118
- package/commands/GetByteMatchSetCommand.ts +0 -102
- package/commands/GetChangeTokenCommand.ts +0 -108
- package/commands/GetChangeTokenStatusCommand.ts +0 -118
- package/commands/GetGeoMatchSetCommand.ts +0 -102
- package/commands/GetIPSetCommand.ts +0 -95
- package/commands/GetLoggingConfigurationCommand.ts +0 -102
- package/commands/GetPermissionPolicyCommand.ts +0 -102
- package/commands/GetRateBasedRuleCommand.ts +0 -104
- package/commands/GetRateBasedRuleManagedKeysCommand.ts +0 -109
- package/commands/GetRegexMatchSetCommand.ts +0 -102
- package/commands/GetRegexPatternSetCommand.ts +0 -102
- package/commands/GetRuleCommand.ts +0 -95
- package/commands/GetRuleGroupCommand.ts +0 -103
- package/commands/GetSampledRequestsCommand.ts +0 -106
- package/commands/GetSizeConstraintSetCommand.ts +0 -102
- package/commands/GetSqlInjectionMatchSetCommand.ts +0 -102
- package/commands/GetWebACLCommand.ts +0 -95
- package/commands/GetXssMatchSetCommand.ts +0 -102
- package/commands/ListActivatedRulesInRuleGroupCommand.ts +0 -107
- package/commands/ListByteMatchSetsCommand.ts +0 -102
- package/commands/ListGeoMatchSetsCommand.ts +0 -102
- package/commands/ListIPSetsCommand.ts +0 -102
- package/commands/ListLoggingConfigurationsCommand.ts +0 -105
- package/commands/ListRateBasedRulesCommand.ts +0 -102
- package/commands/ListRegexMatchSetsCommand.ts +0 -102
- package/commands/ListRegexPatternSetsCommand.ts +0 -102
- package/commands/ListRuleGroupsCommand.ts +0 -102
- package/commands/ListRulesCommand.ts +0 -95
- package/commands/ListSizeConstraintSetsCommand.ts +0 -102
- package/commands/ListSqlInjectionMatchSetsCommand.ts +0 -105
- package/commands/ListSubscribedRuleGroupsCommand.ts +0 -102
- package/commands/ListTagsForResourceCommand.ts +0 -103
- package/commands/ListWebACLsCommand.ts +0 -102
- package/commands/ListXssMatchSetsCommand.ts +0 -102
- package/commands/PutLoggingConfigurationCommand.ts +0 -119
- package/commands/PutPermissionPolicyCommand.ts +0 -134
- package/commands/TagResourceCommand.ts +0 -103
- package/commands/UntagResourceCommand.ts +0 -102
- package/commands/UpdateByteMatchSetCommand.ts +0 -140
- package/commands/UpdateGeoMatchSetCommand.ts +0 -132
- package/commands/UpdateIPSetCommand.ts +0 -167
- package/commands/UpdateRateBasedRuleCommand.ts +0 -148
- package/commands/UpdateRegexMatchSetCommand.ts +0 -136
- package/commands/UpdateRegexPatternSetCommand.ts +0 -141
- package/commands/UpdateRuleCommand.ts +0 -143
- package/commands/UpdateRuleGroupCommand.ts +0 -126
- package/commands/UpdateSizeConstraintSetCommand.ts +0 -144
- package/commands/UpdateSqlInjectionMatchSetCommand.ts +0 -146
- package/commands/UpdateWebACLCommand.ts +0 -173
- package/commands/UpdateXssMatchSetCommand.ts +0 -145
- package/dist/cjs/WAF.js +0 -1176
- package/dist/cjs/WAF.js.map +0 -1
- package/dist/cjs/WAFClient.js +0 -54
- package/dist/cjs/WAFClient.js.map +0 -1
- package/dist/cjs/commands/CreateByteMatchSetCommand.js +0 -92
- package/dist/cjs/commands/CreateByteMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateGeoMatchSetCommand.js +0 -89
- package/dist/cjs/commands/CreateGeoMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateIPSetCommand.js +0 -94
- package/dist/cjs/commands/CreateIPSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRateBasedRuleCommand.js +0 -154
- package/dist/cjs/commands/CreateRateBasedRuleCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRegexMatchSetCommand.js +0 -92
- package/dist/cjs/commands/CreateRegexMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRegexPatternSetCommand.js +0 -88
- package/dist/cjs/commands/CreateRegexPatternSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRuleCommand.js +0 -112
- package/dist/cjs/commands/CreateRuleCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRuleGroupCommand.js +0 -83
- package/dist/cjs/commands/CreateRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/CreateSizeConstraintSetCommand.js +0 -92
- package/dist/cjs/commands/CreateSizeConstraintSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateSqlInjectionMatchSetCommand.js +0 -90
- package/dist/cjs/commands/CreateSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateWebACLCommand.js +0 -100
- package/dist/cjs/commands/CreateWebACLCommand.js.map +0 -1
- package/dist/cjs/commands/CreateWebACLMigrationStackCommand.js +0 -68
- package/dist/cjs/commands/CreateWebACLMigrationStackCommand.js.map +0 -1
- package/dist/cjs/commands/CreateXssMatchSetCommand.js +0 -90
- package/dist/cjs/commands/CreateXssMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteByteMatchSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteByteMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteGeoMatchSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteGeoMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteIPSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteIPSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteLoggingConfigurationCommand.js +0 -70
- package/dist/cjs/commands/DeleteLoggingConfigurationCommand.js.map +0 -1
- package/dist/cjs/commands/DeletePermissionPolicyCommand.js +0 -70
- package/dist/cjs/commands/DeletePermissionPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRateBasedRuleCommand.js +0 -88
- package/dist/cjs/commands/DeleteRateBasedRuleCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRegexMatchSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteRegexMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRegexPatternSetCommand.js +0 -70
- package/dist/cjs/commands/DeleteRegexPatternSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRuleCommand.js +0 -84
- package/dist/cjs/commands/DeleteRuleCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRuleGroupCommand.js +0 -84
- package/dist/cjs/commands/DeleteRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteSizeConstraintSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteSizeConstraintSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteSqlInjectionMatchSetCommand.js +0 -85
- package/dist/cjs/commands/DeleteSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteWebACLCommand.js +0 -82
- package/dist/cjs/commands/DeleteWebACLCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteXssMatchSetCommand.js +0 -85
- package/dist/cjs/commands/DeleteXssMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetByteMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetByteMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetChangeTokenCommand.js +0 -75
- package/dist/cjs/commands/GetChangeTokenCommand.js.map +0 -1
- package/dist/cjs/commands/GetChangeTokenStatusCommand.js +0 -85
- package/dist/cjs/commands/GetChangeTokenStatusCommand.js.map +0 -1
- package/dist/cjs/commands/GetGeoMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetGeoMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetIPSetCommand.js +0 -69
- package/dist/cjs/commands/GetIPSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetLoggingConfigurationCommand.js +0 -69
- package/dist/cjs/commands/GetLoggingConfigurationCommand.js.map +0 -1
- package/dist/cjs/commands/GetPermissionPolicyCommand.js +0 -69
- package/dist/cjs/commands/GetPermissionPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/GetRateBasedRuleCommand.js +0 -71
- package/dist/cjs/commands/GetRateBasedRuleCommand.js.map +0 -1
- package/dist/cjs/commands/GetRateBasedRuleManagedKeysCommand.js +0 -71
- package/dist/cjs/commands/GetRateBasedRuleManagedKeysCommand.js.map +0 -1
- package/dist/cjs/commands/GetRegexMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetRegexMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetRegexPatternSetCommand.js +0 -69
- package/dist/cjs/commands/GetRegexPatternSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetRuleCommand.js +0 -69
- package/dist/cjs/commands/GetRuleCommand.js.map +0 -1
- package/dist/cjs/commands/GetRuleGroupCommand.js +0 -70
- package/dist/cjs/commands/GetRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/GetSampledRequestsCommand.js +0 -73
- package/dist/cjs/commands/GetSampledRequestsCommand.js.map +0 -1
- package/dist/cjs/commands/GetSizeConstraintSetCommand.js +0 -69
- package/dist/cjs/commands/GetSizeConstraintSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetSqlInjectionMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetWebACLCommand.js +0 -69
- package/dist/cjs/commands/GetWebACLCommand.js.map +0 -1
- package/dist/cjs/commands/GetXssMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetXssMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/ListActivatedRulesInRuleGroupCommand.js +0 -69
- package/dist/cjs/commands/ListActivatedRulesInRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/ListByteMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListByteMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListGeoMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListGeoMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListIPSetsCommand.js +0 -69
- package/dist/cjs/commands/ListIPSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListLoggingConfigurationsCommand.js +0 -69
- package/dist/cjs/commands/ListLoggingConfigurationsCommand.js.map +0 -1
- package/dist/cjs/commands/ListRateBasedRulesCommand.js +0 -69
- package/dist/cjs/commands/ListRateBasedRulesCommand.js.map +0 -1
- package/dist/cjs/commands/ListRegexMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListRegexMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListRegexPatternSetsCommand.js +0 -69
- package/dist/cjs/commands/ListRegexPatternSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListRuleGroupsCommand.js +0 -69
- package/dist/cjs/commands/ListRuleGroupsCommand.js.map +0 -1
- package/dist/cjs/commands/ListRulesCommand.js +0 -69
- package/dist/cjs/commands/ListRulesCommand.js.map +0 -1
- package/dist/cjs/commands/ListSizeConstraintSetsCommand.js +0 -69
- package/dist/cjs/commands/ListSizeConstraintSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListSqlInjectionMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListSqlInjectionMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListSubscribedRuleGroupsCommand.js +0 -69
- package/dist/cjs/commands/ListSubscribedRuleGroupsCommand.js.map +0 -1
- package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -70
- package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/cjs/commands/ListWebACLsCommand.js +0 -69
- package/dist/cjs/commands/ListWebACLsCommand.js.map +0 -1
- package/dist/cjs/commands/ListXssMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListXssMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/PutLoggingConfigurationCommand.js +0 -86
- package/dist/cjs/commands/PutLoggingConfigurationCommand.js.map +0 -1
- package/dist/cjs/commands/PutPermissionPolicyCommand.js +0 -101
- package/dist/cjs/commands/PutPermissionPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/TagResourceCommand.js +0 -70
- package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UntagResourceCommand.js +0 -69
- package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateByteMatchSetCommand.js +0 -107
- package/dist/cjs/commands/UpdateByteMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateGeoMatchSetCommand.js +0 -99
- package/dist/cjs/commands/UpdateGeoMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateIPSetCommand.js +0 -134
- package/dist/cjs/commands/UpdateIPSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRateBasedRuleCommand.js +0 -115
- package/dist/cjs/commands/UpdateRateBasedRuleCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRegexMatchSetCommand.js +0 -103
- package/dist/cjs/commands/UpdateRegexMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRegexPatternSetCommand.js +0 -108
- package/dist/cjs/commands/UpdateRegexPatternSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRuleCommand.js +0 -110
- package/dist/cjs/commands/UpdateRuleCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRuleGroupCommand.js +0 -93
- package/dist/cjs/commands/UpdateRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateSizeConstraintSetCommand.js +0 -111
- package/dist/cjs/commands/UpdateSizeConstraintSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateSqlInjectionMatchSetCommand.js +0 -110
- package/dist/cjs/commands/UpdateSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateWebACLCommand.js +0 -140
- package/dist/cjs/commands/UpdateWebACLCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateXssMatchSetCommand.js +0 -112
- package/dist/cjs/commands/UpdateXssMatchSetCommand.js.map +0 -1
- package/dist/cjs/endpoints.js +0 -68
- package/dist/cjs/endpoints.js.map +0 -1
- package/dist/cjs/index.js +0 -84
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/models/index.js +0 -5
- package/dist/cjs/models/index.js.map +0 -1
- package/dist/cjs/models/models_0.js +0 -2437
- package/dist/cjs/models/models_0.js.map +0 -1
- package/dist/cjs/package.json +0 -91
- package/dist/cjs/protocols/Aws_json1_1.js +0 -9200
- package/dist/cjs/protocols/Aws_json1_1.js.map +0 -1
- package/dist/cjs/runtimeConfig.browser.js +0 -41
- package/dist/cjs/runtimeConfig.browser.js.map +0 -1
- package/dist/cjs/runtimeConfig.js +0 -46
- package/dist/cjs/runtimeConfig.js.map +0 -1
- package/dist/cjs/runtimeConfig.native.js +0 -20
- package/dist/cjs/runtimeConfig.native.js.map +0 -1
- package/dist/cjs/runtimeConfig.shared.js +0 -21
- package/dist/cjs/runtimeConfig.shared.js.map +0 -1
- package/dist/es/WAF.js +0 -1179
- package/dist/es/WAF.js.map +0 -1
- package/dist/es/WAFClient.js +0 -56
- package/dist/es/WAFClient.js.map +0 -1
- package/dist/es/commands/CreateByteMatchSetCommand.js +0 -96
- package/dist/es/commands/CreateByteMatchSetCommand.js.map +0 -1
- package/dist/es/commands/CreateGeoMatchSetCommand.js +0 -93
- package/dist/es/commands/CreateGeoMatchSetCommand.js.map +0 -1
- package/dist/es/commands/CreateIPSetCommand.js +0 -98
- package/dist/es/commands/CreateIPSetCommand.js.map +0 -1
- package/dist/es/commands/CreateRateBasedRuleCommand.js +0 -158
- package/dist/es/commands/CreateRateBasedRuleCommand.js.map +0 -1
- package/dist/es/commands/CreateRegexMatchSetCommand.js +0 -96
- package/dist/es/commands/CreateRegexMatchSetCommand.js.map +0 -1
- package/dist/es/commands/CreateRegexPatternSetCommand.js +0 -92
- package/dist/es/commands/CreateRegexPatternSetCommand.js.map +0 -1
- package/dist/es/commands/CreateRuleCommand.js +0 -116
- package/dist/es/commands/CreateRuleCommand.js.map +0 -1
- package/dist/es/commands/CreateRuleGroupCommand.js +0 -87
- package/dist/es/commands/CreateRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/CreateSizeConstraintSetCommand.js +0 -96
- package/dist/es/commands/CreateSizeConstraintSetCommand.js.map +0 -1
- package/dist/es/commands/CreateSqlInjectionMatchSetCommand.js +0 -94
- package/dist/es/commands/CreateSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/es/commands/CreateWebACLCommand.js +0 -104
- package/dist/es/commands/CreateWebACLCommand.js.map +0 -1
- package/dist/es/commands/CreateWebACLMigrationStackCommand.js +0 -72
- package/dist/es/commands/CreateWebACLMigrationStackCommand.js.map +0 -1
- package/dist/es/commands/CreateXssMatchSetCommand.js +0 -94
- package/dist/es/commands/CreateXssMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteByteMatchSetCommand.js +0 -88
- package/dist/es/commands/DeleteByteMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteGeoMatchSetCommand.js +0 -88
- package/dist/es/commands/DeleteGeoMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteIPSetCommand.js +0 -88
- package/dist/es/commands/DeleteIPSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteLoggingConfigurationCommand.js +0 -74
- package/dist/es/commands/DeleteLoggingConfigurationCommand.js.map +0 -1
- package/dist/es/commands/DeletePermissionPolicyCommand.js +0 -74
- package/dist/es/commands/DeletePermissionPolicyCommand.js.map +0 -1
- package/dist/es/commands/DeleteRateBasedRuleCommand.js +0 -92
- package/dist/es/commands/DeleteRateBasedRuleCommand.js.map +0 -1
- package/dist/es/commands/DeleteRegexMatchSetCommand.js +0 -88
- package/dist/es/commands/DeleteRegexMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteRegexPatternSetCommand.js +0 -74
- package/dist/es/commands/DeleteRegexPatternSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteRuleCommand.js +0 -88
- package/dist/es/commands/DeleteRuleCommand.js.map +0 -1
- package/dist/es/commands/DeleteRuleGroupCommand.js +0 -88
- package/dist/es/commands/DeleteRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/DeleteSizeConstraintSetCommand.js +0 -88
- package/dist/es/commands/DeleteSizeConstraintSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteSqlInjectionMatchSetCommand.js +0 -89
- package/dist/es/commands/DeleteSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteWebACLCommand.js +0 -86
- package/dist/es/commands/DeleteWebACLCommand.js.map +0 -1
- package/dist/es/commands/DeleteXssMatchSetCommand.js +0 -89
- package/dist/es/commands/DeleteXssMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetByteMatchSetCommand.js +0 -73
- package/dist/es/commands/GetByteMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetChangeTokenCommand.js +0 -79
- package/dist/es/commands/GetChangeTokenCommand.js.map +0 -1
- package/dist/es/commands/GetChangeTokenStatusCommand.js +0 -89
- package/dist/es/commands/GetChangeTokenStatusCommand.js.map +0 -1
- package/dist/es/commands/GetGeoMatchSetCommand.js +0 -73
- package/dist/es/commands/GetGeoMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetIPSetCommand.js +0 -73
- package/dist/es/commands/GetIPSetCommand.js.map +0 -1
- package/dist/es/commands/GetLoggingConfigurationCommand.js +0 -73
- package/dist/es/commands/GetLoggingConfigurationCommand.js.map +0 -1
- package/dist/es/commands/GetPermissionPolicyCommand.js +0 -73
- package/dist/es/commands/GetPermissionPolicyCommand.js.map +0 -1
- package/dist/es/commands/GetRateBasedRuleCommand.js +0 -75
- package/dist/es/commands/GetRateBasedRuleCommand.js.map +0 -1
- package/dist/es/commands/GetRateBasedRuleManagedKeysCommand.js +0 -75
- package/dist/es/commands/GetRateBasedRuleManagedKeysCommand.js.map +0 -1
- package/dist/es/commands/GetRegexMatchSetCommand.js +0 -73
- package/dist/es/commands/GetRegexMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetRegexPatternSetCommand.js +0 -73
- package/dist/es/commands/GetRegexPatternSetCommand.js.map +0 -1
- package/dist/es/commands/GetRuleCommand.js +0 -73
- package/dist/es/commands/GetRuleCommand.js.map +0 -1
- package/dist/es/commands/GetRuleGroupCommand.js +0 -74
- package/dist/es/commands/GetRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/GetSampledRequestsCommand.js +0 -77
- package/dist/es/commands/GetSampledRequestsCommand.js.map +0 -1
- package/dist/es/commands/GetSizeConstraintSetCommand.js +0 -73
- package/dist/es/commands/GetSizeConstraintSetCommand.js.map +0 -1
- package/dist/es/commands/GetSqlInjectionMatchSetCommand.js +0 -73
- package/dist/es/commands/GetSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetWebACLCommand.js +0 -73
- package/dist/es/commands/GetWebACLCommand.js.map +0 -1
- package/dist/es/commands/GetXssMatchSetCommand.js +0 -73
- package/dist/es/commands/GetXssMatchSetCommand.js.map +0 -1
- package/dist/es/commands/ListActivatedRulesInRuleGroupCommand.js +0 -73
- package/dist/es/commands/ListActivatedRulesInRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/ListByteMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListByteMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/ListGeoMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListGeoMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/ListIPSetsCommand.js +0 -73
- package/dist/es/commands/ListIPSetsCommand.js.map +0 -1
- package/dist/es/commands/ListLoggingConfigurationsCommand.js +0 -73
- package/dist/es/commands/ListLoggingConfigurationsCommand.js.map +0 -1
- package/dist/es/commands/ListRateBasedRulesCommand.js +0 -73
- package/dist/es/commands/ListRateBasedRulesCommand.js.map +0 -1
- package/dist/es/commands/ListRegexMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListRegexMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/ListRegexPatternSetsCommand.js +0 -73
- package/dist/es/commands/ListRegexPatternSetsCommand.js.map +0 -1
- package/dist/es/commands/ListRuleGroupsCommand.js +0 -73
- package/dist/es/commands/ListRuleGroupsCommand.js.map +0 -1
- package/dist/es/commands/ListRulesCommand.js +0 -73
- package/dist/es/commands/ListRulesCommand.js.map +0 -1
- package/dist/es/commands/ListSizeConstraintSetsCommand.js +0 -73
- package/dist/es/commands/ListSizeConstraintSetsCommand.js.map +0 -1
- package/dist/es/commands/ListSqlInjectionMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListSqlInjectionMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/ListSubscribedRuleGroupsCommand.js +0 -73
- package/dist/es/commands/ListSubscribedRuleGroupsCommand.js.map +0 -1
- package/dist/es/commands/ListTagsForResourceCommand.js +0 -74
- package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/es/commands/ListWebACLsCommand.js +0 -73
- package/dist/es/commands/ListWebACLsCommand.js.map +0 -1
- package/dist/es/commands/ListXssMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListXssMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/PutLoggingConfigurationCommand.js +0 -90
- package/dist/es/commands/PutLoggingConfigurationCommand.js.map +0 -1
- package/dist/es/commands/PutPermissionPolicyCommand.js +0 -105
- package/dist/es/commands/PutPermissionPolicyCommand.js.map +0 -1
- package/dist/es/commands/TagResourceCommand.js +0 -74
- package/dist/es/commands/TagResourceCommand.js.map +0 -1
- package/dist/es/commands/UntagResourceCommand.js +0 -73
- package/dist/es/commands/UntagResourceCommand.js.map +0 -1
- package/dist/es/commands/UpdateByteMatchSetCommand.js +0 -111
- package/dist/es/commands/UpdateByteMatchSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateGeoMatchSetCommand.js +0 -103
- package/dist/es/commands/UpdateGeoMatchSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateIPSetCommand.js +0 -138
- package/dist/es/commands/UpdateIPSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateRateBasedRuleCommand.js +0 -119
- package/dist/es/commands/UpdateRateBasedRuleCommand.js.map +0 -1
- package/dist/es/commands/UpdateRegexMatchSetCommand.js +0 -107
- package/dist/es/commands/UpdateRegexMatchSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateRegexPatternSetCommand.js +0 -112
- package/dist/es/commands/UpdateRegexPatternSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateRuleCommand.js +0 -114
- package/dist/es/commands/UpdateRuleCommand.js.map +0 -1
- package/dist/es/commands/UpdateRuleGroupCommand.js +0 -97
- package/dist/es/commands/UpdateRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/UpdateSizeConstraintSetCommand.js +0 -115
- package/dist/es/commands/UpdateSizeConstraintSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateSqlInjectionMatchSetCommand.js +0 -114
- package/dist/es/commands/UpdateSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateWebACLCommand.js +0 -144
- package/dist/es/commands/UpdateWebACLCommand.js.map +0 -1
- package/dist/es/commands/UpdateXssMatchSetCommand.js +0 -116
- package/dist/es/commands/UpdateXssMatchSetCommand.js.map +0 -1
- package/dist/es/endpoints.js +0 -64
- package/dist/es/endpoints.js.map +0 -1
- package/dist/es/index.js +0 -81
- package/dist/es/index.js.map +0 -1
- package/dist/es/models/index.js +0 -2
- package/dist/es/models/index.js.map +0 -1
- package/dist/es/models/models_0.js +0 -1975
- package/dist/es/models/models_0.js.map +0 -1
- package/dist/es/package.json +0 -91
- package/dist/es/protocols/Aws_json1_1.js +0 -9610
- package/dist/es/protocols/Aws_json1_1.js.map +0 -1
- package/dist/es/runtimeConfig.browser.js +0 -20
- package/dist/es/runtimeConfig.browser.js.map +0 -1
- package/dist/es/runtimeConfig.js +0 -25
- package/dist/es/runtimeConfig.js.map +0 -1
- package/dist/es/runtimeConfig.native.js +0 -12
- package/dist/es/runtimeConfig.native.js.map +0 -1
- package/dist/es/runtimeConfig.shared.js +0 -17
- package/dist/es/runtimeConfig.shared.js.map +0 -1
- package/dist/types/WAF.d.ts +0 -2287
- package/dist/types/WAFClient.d.ts +0 -219
- package/dist/types/commands/CreateByteMatchSetCommand.d.ts +0 -66
- package/dist/types/commands/CreateGeoMatchSetCommand.d.ts +0 -63
- package/dist/types/commands/CreateIPSetCommand.d.ts +0 -68
- package/dist/types/commands/CreateRateBasedRuleCommand.d.ts +0 -128
- package/dist/types/commands/CreateRegexMatchSetCommand.d.ts +0 -66
- package/dist/types/commands/CreateRegexPatternSetCommand.d.ts +0 -62
- package/dist/types/commands/CreateRuleCommand.d.ts +0 -86
- package/dist/types/commands/CreateRuleGroupCommand.d.ts +0 -57
- package/dist/types/commands/CreateSizeConstraintSetCommand.d.ts +0 -66
- package/dist/types/commands/CreateSqlInjectionMatchSetCommand.d.ts +0 -64
- package/dist/types/commands/CreateWebACLCommand.d.ts +0 -74
- package/dist/types/commands/CreateWebACLMigrationStackCommand.d.ts +0 -42
- package/dist/types/commands/CreateXssMatchSetCommand.d.ts +0 -64
- package/dist/types/commands/DeleteByteMatchSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteGeoMatchSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteIPSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteLoggingConfigurationCommand.d.ts +0 -44
- package/dist/types/commands/DeletePermissionPolicyCommand.d.ts +0 -44
- package/dist/types/commands/DeleteRateBasedRuleCommand.d.ts +0 -62
- package/dist/types/commands/DeleteRegexMatchSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteRegexPatternSetCommand.d.ts +0 -44
- package/dist/types/commands/DeleteRuleCommand.d.ts +0 -58
- package/dist/types/commands/DeleteRuleGroupCommand.d.ts +0 -58
- package/dist/types/commands/DeleteSizeConstraintSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteSqlInjectionMatchSetCommand.d.ts +0 -59
- package/dist/types/commands/DeleteWebACLCommand.d.ts +0 -56
- package/dist/types/commands/DeleteXssMatchSetCommand.d.ts +0 -59
- package/dist/types/commands/GetByteMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/GetChangeTokenCommand.d.ts +0 -49
- package/dist/types/commands/GetChangeTokenStatusCommand.d.ts +0 -59
- package/dist/types/commands/GetGeoMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/GetIPSetCommand.d.ts +0 -43
- package/dist/types/commands/GetLoggingConfigurationCommand.d.ts +0 -43
- package/dist/types/commands/GetPermissionPolicyCommand.d.ts +0 -43
- package/dist/types/commands/GetRateBasedRuleCommand.d.ts +0 -45
- package/dist/types/commands/GetRateBasedRuleManagedKeysCommand.d.ts +0 -45
- package/dist/types/commands/GetRegexMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/GetRegexPatternSetCommand.d.ts +0 -43
- package/dist/types/commands/GetRuleCommand.d.ts +0 -43
- package/dist/types/commands/GetRuleGroupCommand.d.ts +0 -44
- package/dist/types/commands/GetSampledRequestsCommand.d.ts +0 -47
- package/dist/types/commands/GetSizeConstraintSetCommand.d.ts +0 -43
- package/dist/types/commands/GetSqlInjectionMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/GetWebACLCommand.d.ts +0 -43
- package/dist/types/commands/GetXssMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/ListActivatedRulesInRuleGroupCommand.d.ts +0 -43
- package/dist/types/commands/ListByteMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListGeoMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListIPSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListLoggingConfigurationsCommand.d.ts +0 -43
- package/dist/types/commands/ListRateBasedRulesCommand.d.ts +0 -43
- package/dist/types/commands/ListRegexMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListRegexPatternSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListRuleGroupsCommand.d.ts +0 -43
- package/dist/types/commands/ListRulesCommand.d.ts +0 -43
- package/dist/types/commands/ListSizeConstraintSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListSqlInjectionMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListSubscribedRuleGroupsCommand.d.ts +0 -43
- package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -44
- package/dist/types/commands/ListWebACLsCommand.d.ts +0 -43
- package/dist/types/commands/ListXssMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/PutLoggingConfigurationCommand.d.ts +0 -60
- package/dist/types/commands/PutPermissionPolicyCommand.d.ts +0 -75
- package/dist/types/commands/TagResourceCommand.d.ts +0 -44
- package/dist/types/commands/UntagResourceCommand.d.ts +0 -43
- package/dist/types/commands/UpdateByteMatchSetCommand.d.ts +0 -81
- package/dist/types/commands/UpdateGeoMatchSetCommand.d.ts +0 -73
- package/dist/types/commands/UpdateIPSetCommand.d.ts +0 -108
- package/dist/types/commands/UpdateRateBasedRuleCommand.d.ts +0 -89
- package/dist/types/commands/UpdateRegexMatchSetCommand.d.ts +0 -77
- package/dist/types/commands/UpdateRegexPatternSetCommand.d.ts +0 -82
- package/dist/types/commands/UpdateRuleCommand.d.ts +0 -84
- package/dist/types/commands/UpdateRuleGroupCommand.d.ts +0 -67
- package/dist/types/commands/UpdateSizeConstraintSetCommand.d.ts +0 -85
- package/dist/types/commands/UpdateSqlInjectionMatchSetCommand.d.ts +0 -84
- package/dist/types/commands/UpdateWebACLCommand.d.ts +0 -114
- package/dist/types/commands/UpdateXssMatchSetCommand.d.ts +0 -86
- package/dist/types/protocols/Aws_json1_1.d.ts +0 -233
- package/dist/types/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/runtimeConfig.d.ts +0 -36
- package/dist/types/runtimeConfig.native.d.ts +0 -35
- package/dist/types/ts3.4/WAF.d.ts +0 -2287
- package/dist/types/ts3.4/WAFClient.d.ts +0 -219
- package/dist/types/ts3.4/commands/CreateByteMatchSetCommand.d.ts +0 -66
- package/dist/types/ts3.4/commands/CreateGeoMatchSetCommand.d.ts +0 -63
- package/dist/types/ts3.4/commands/CreateIPSetCommand.d.ts +0 -68
- package/dist/types/ts3.4/commands/CreateRateBasedRuleCommand.d.ts +0 -128
- package/dist/types/ts3.4/commands/CreateRegexMatchSetCommand.d.ts +0 -66
- package/dist/types/ts3.4/commands/CreateRegexPatternSetCommand.d.ts +0 -62
- package/dist/types/ts3.4/commands/CreateRuleCommand.d.ts +0 -86
- package/dist/types/ts3.4/commands/CreateRuleGroupCommand.d.ts +0 -57
- package/dist/types/ts3.4/commands/CreateSizeConstraintSetCommand.d.ts +0 -66
- package/dist/types/ts3.4/commands/CreateSqlInjectionMatchSetCommand.d.ts +0 -64
- package/dist/types/ts3.4/commands/CreateWebACLCommand.d.ts +0 -74
- package/dist/types/ts3.4/commands/CreateWebACLMigrationStackCommand.d.ts +0 -42
- package/dist/types/ts3.4/commands/CreateXssMatchSetCommand.d.ts +0 -64
- package/dist/types/ts3.4/commands/DeleteByteMatchSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteGeoMatchSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteIPSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/DeletePermissionPolicyCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/DeleteRateBasedRuleCommand.d.ts +0 -62
- package/dist/types/ts3.4/commands/DeleteRegexMatchSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteRegexPatternSetCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/DeleteRuleCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteSizeConstraintSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteSqlInjectionMatchSetCommand.d.ts +0 -59
- package/dist/types/ts3.4/commands/DeleteWebACLCommand.d.ts +0 -56
- package/dist/types/ts3.4/commands/DeleteXssMatchSetCommand.d.ts +0 -59
- package/dist/types/ts3.4/commands/GetByteMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetChangeTokenCommand.d.ts +0 -49
- package/dist/types/ts3.4/commands/GetChangeTokenStatusCommand.d.ts +0 -59
- package/dist/types/ts3.4/commands/GetGeoMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetIPSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetLoggingConfigurationCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetPermissionPolicyCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetRateBasedRuleCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/GetRateBasedRuleManagedKeysCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/GetRegexMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetRegexPatternSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetRuleCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetRuleGroupCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/GetSampledRequestsCommand.d.ts +0 -47
- package/dist/types/ts3.4/commands/GetSizeConstraintSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetSqlInjectionMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetWebACLCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetXssMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListActivatedRulesInRuleGroupCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListByteMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListGeoMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListIPSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListLoggingConfigurationsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRateBasedRulesCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRegexMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRegexPatternSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRuleGroupsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRulesCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListSizeConstraintSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListSqlInjectionMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListSubscribedRuleGroupsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/ListWebACLsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListXssMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/PutLoggingConfigurationCommand.d.ts +0 -60
- package/dist/types/ts3.4/commands/PutPermissionPolicyCommand.d.ts +0 -75
- package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/UpdateByteMatchSetCommand.d.ts +0 -81
- package/dist/types/ts3.4/commands/UpdateGeoMatchSetCommand.d.ts +0 -73
- package/dist/types/ts3.4/commands/UpdateIPSetCommand.d.ts +0 -108
- package/dist/types/ts3.4/commands/UpdateRateBasedRuleCommand.d.ts +0 -89
- package/dist/types/ts3.4/commands/UpdateRegexMatchSetCommand.d.ts +0 -77
- package/dist/types/ts3.4/commands/UpdateRegexPatternSetCommand.d.ts +0 -82
- package/dist/types/ts3.4/commands/UpdateRuleCommand.d.ts +0 -84
- package/dist/types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +0 -67
- package/dist/types/ts3.4/commands/UpdateSizeConstraintSetCommand.d.ts +0 -85
- package/dist/types/ts3.4/commands/UpdateSqlInjectionMatchSetCommand.d.ts +0 -84
- package/dist/types/ts3.4/commands/UpdateWebACLCommand.d.ts +0 -114
- package/dist/types/ts3.4/commands/UpdateXssMatchSetCommand.d.ts +0 -86
- package/dist/types/ts3.4/protocols/Aws_json1_1.d.ts +0 -233
- package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
- package/endpoints.ts +0 -68
- package/jest.config.js +0 -4
- package/models/models_0.ts +0 -7494
- package/protocols/Aws_json1_1.ts +0 -11231
- package/runtimeConfig.browser.ts +0 -40
- package/runtimeConfig.native.ts +0 -16
- package/runtimeConfig.shared.ts +0 -16
- package/runtimeConfig.ts +0 -45
- package/tsconfig.es.json +0 -12
- package/tsconfig.json +0 -32
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
|
|
2
|
-
import { UpdateByteMatchSetRequest, UpdateByteMatchSetResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateByteMatchSetCommandInput extends UpdateByteMatchSetRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateByteMatchSetCommandOutput extends UpdateByteMatchSetResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <note>
|
|
11
|
-
* <p>This is <b>AWS WAF Classic</b> documentation. For
|
|
12
|
-
* more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
|
|
13
|
-
* WAF Classic</a> in the developer guide.</p>
|
|
14
|
-
* <p>
|
|
15
|
-
* <b>For the latest version of AWS
|
|
16
|
-
* 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>
|
|
17
|
-
* </note>
|
|
18
|
-
* <p>Inserts or deletes <a>ByteMatchTuple</a> objects (filters) in a <a>ByteMatchSet</a>. For each <code>ByteMatchTuple</code> object,
|
|
19
|
-
* you specify the following values: </p>
|
|
20
|
-
* <ul>
|
|
21
|
-
* <li>
|
|
22
|
-
* <p>Whether to insert or delete the object from the array. If you want to change a <code>ByteMatchSetUpdate</code> object,
|
|
23
|
-
* you delete the existing object and add a new one.</p>
|
|
24
|
-
* </li>
|
|
25
|
-
* <li>
|
|
26
|
-
* <p>The part of a web request that you want AWS WAF to inspect, such as a query string or the value of the <code>User-Agent</code> header. </p>
|
|
27
|
-
* </li>
|
|
28
|
-
* <li>
|
|
29
|
-
* <p>The bytes (typically a string that corresponds with ASCII characters) that you want AWS WAF to look for. For more information, including how you specify
|
|
30
|
-
* the values for the AWS WAF API and the AWS CLI or SDKs, see <code>TargetString</code> in the <a>ByteMatchTuple</a> data type. </p>
|
|
31
|
-
* </li>
|
|
32
|
-
* <li>
|
|
33
|
-
* <p>Where to look, such as at the beginning or the end of a query string.</p>
|
|
34
|
-
* </li>
|
|
35
|
-
* <li>
|
|
36
|
-
* <p>Whether to perform any conversions on the request, such as converting it to lowercase, before inspecting it for the specified string.</p>
|
|
37
|
-
* </li>
|
|
38
|
-
* </ul>
|
|
39
|
-
* <p>For example, you can add a <code>ByteMatchSetUpdate</code> object that matches web requests in which <code>User-Agent</code> headers contain
|
|
40
|
-
* the string <code>BadBot</code>. You can then configure AWS WAF to block those requests.</p>
|
|
41
|
-
* <p>To create and configure a <code>ByteMatchSet</code>, perform the following steps:</p>
|
|
42
|
-
* <ol>
|
|
43
|
-
* <li>
|
|
44
|
-
* <p>Create a <code>ByteMatchSet.</code> For more information, see <a>CreateByteMatchSet</a>.</p>
|
|
45
|
-
* </li>
|
|
46
|
-
* <li>
|
|
47
|
-
* <p>Use <a>GetChangeToken</a> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
|
|
48
|
-
* <code>UpdateByteMatchSet</code> request.</p>
|
|
49
|
-
* </li>
|
|
50
|
-
* <li>
|
|
51
|
-
* <p>Submit an <code>UpdateByteMatchSet</code> request to specify the part of the request that you want AWS WAF to inspect
|
|
52
|
-
* (for example, the header or the URI) and the value that you want AWS WAF to watch for.</p>
|
|
53
|
-
* </li>
|
|
54
|
-
* </ol>
|
|
55
|
-
* <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the
|
|
56
|
-
* <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
|
|
57
|
-
* @example
|
|
58
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
59
|
-
* ```javascript
|
|
60
|
-
* import { WAFClient, UpdateByteMatchSetCommand } from "@aws-sdk/client-waf"; // ES Modules import
|
|
61
|
-
* // const { WAFClient, UpdateByteMatchSetCommand } = require("@aws-sdk/client-waf"); // CommonJS import
|
|
62
|
-
* const client = new WAFClient(config);
|
|
63
|
-
* const command = new UpdateByteMatchSetCommand(input);
|
|
64
|
-
* const response = await client.send(command);
|
|
65
|
-
* ```
|
|
66
|
-
*
|
|
67
|
-
* @see {@link UpdateByteMatchSetCommandInput} for command's `input` shape.
|
|
68
|
-
* @see {@link UpdateByteMatchSetCommandOutput} for command's `response` shape.
|
|
69
|
-
* @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
|
|
70
|
-
*
|
|
71
|
-
*/
|
|
72
|
-
export declare class UpdateByteMatchSetCommand extends $Command<UpdateByteMatchSetCommandInput, UpdateByteMatchSetCommandOutput, WAFClientResolvedConfig> {
|
|
73
|
-
readonly input: UpdateByteMatchSetCommandInput;
|
|
74
|
-
constructor(input: UpdateByteMatchSetCommandInput);
|
|
75
|
-
/**
|
|
76
|
-
* @internal
|
|
77
|
-
*/
|
|
78
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateByteMatchSetCommandInput, UpdateByteMatchSetCommandOutput>;
|
|
79
|
-
private serialize;
|
|
80
|
-
private deserialize;
|
|
81
|
-
}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
|
|
2
|
-
import { UpdateGeoMatchSetRequest, UpdateGeoMatchSetResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateGeoMatchSetCommandInput extends UpdateGeoMatchSetRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateGeoMatchSetCommandOutput extends UpdateGeoMatchSetResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <note>
|
|
11
|
-
* <p>This is <b>AWS WAF Classic</b> documentation. For
|
|
12
|
-
* more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
|
|
13
|
-
* WAF Classic</a> in the developer guide.</p>
|
|
14
|
-
* <p>
|
|
15
|
-
* <b>For the latest version of AWS
|
|
16
|
-
* 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>
|
|
17
|
-
* </note>
|
|
18
|
-
* <p>Inserts or deletes <a>GeoMatchConstraint</a> objects in an <code>GeoMatchSet</code>. For each <code>GeoMatchConstraint</code> object,
|
|
19
|
-
* you specify the following values: </p>
|
|
20
|
-
* <ul>
|
|
21
|
-
* <li>
|
|
22
|
-
* <p>Whether to insert or delete the object from the array. If you want to change an <code>GeoMatchConstraint</code> object, you delete the existing object and add a new one.</p>
|
|
23
|
-
* </li>
|
|
24
|
-
* <li>
|
|
25
|
-
* <p>The <code>Type</code>. The only valid value for <code>Type</code> is <code>Country</code>.</p>
|
|
26
|
-
* </li>
|
|
27
|
-
* <li>
|
|
28
|
-
* <p>The <code>Value</code>, which is a two character code for the country to add to the <code>GeoMatchConstraint</code> object. Valid codes are listed in <a>GeoMatchConstraint$Value</a>.</p>
|
|
29
|
-
* </li>
|
|
30
|
-
* </ul>
|
|
31
|
-
*
|
|
32
|
-
* <p>To create and configure an <code>GeoMatchSet</code>, perform the following steps:</p>
|
|
33
|
-
* <ol>
|
|
34
|
-
* <li>
|
|
35
|
-
* <p>Submit a <a>CreateGeoMatchSet</a> request.</p>
|
|
36
|
-
* </li>
|
|
37
|
-
* <li>
|
|
38
|
-
* <p>Use <a>GetChangeToken</a> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
|
|
39
|
-
* <a>UpdateGeoMatchSet</a> request.</p>
|
|
40
|
-
* </li>
|
|
41
|
-
* <li>
|
|
42
|
-
* <p>Submit an <code>UpdateGeoMatchSet</code> request to specify the country that you want AWS WAF to watch for.</p>
|
|
43
|
-
* </li>
|
|
44
|
-
* </ol>
|
|
45
|
-
* <p>When you update an <code>GeoMatchSet</code>, you specify the country that you want to add and/or the country that you want to delete.
|
|
46
|
-
* If you want to change a country, you delete the existing country and add the new one.</p>
|
|
47
|
-
* <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the
|
|
48
|
-
* <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
|
|
49
|
-
* @example
|
|
50
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
51
|
-
* ```javascript
|
|
52
|
-
* import { WAFClient, UpdateGeoMatchSetCommand } from "@aws-sdk/client-waf"; // ES Modules import
|
|
53
|
-
* // const { WAFClient, UpdateGeoMatchSetCommand } = require("@aws-sdk/client-waf"); // CommonJS import
|
|
54
|
-
* const client = new WAFClient(config);
|
|
55
|
-
* const command = new UpdateGeoMatchSetCommand(input);
|
|
56
|
-
* const response = await client.send(command);
|
|
57
|
-
* ```
|
|
58
|
-
*
|
|
59
|
-
* @see {@link UpdateGeoMatchSetCommandInput} for command's `input` shape.
|
|
60
|
-
* @see {@link UpdateGeoMatchSetCommandOutput} for command's `response` shape.
|
|
61
|
-
* @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
|
|
62
|
-
*
|
|
63
|
-
*/
|
|
64
|
-
export declare class UpdateGeoMatchSetCommand extends $Command<UpdateGeoMatchSetCommandInput, UpdateGeoMatchSetCommandOutput, WAFClientResolvedConfig> {
|
|
65
|
-
readonly input: UpdateGeoMatchSetCommandInput;
|
|
66
|
-
constructor(input: UpdateGeoMatchSetCommandInput);
|
|
67
|
-
/**
|
|
68
|
-
* @internal
|
|
69
|
-
*/
|
|
70
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGeoMatchSetCommandInput, UpdateGeoMatchSetCommandOutput>;
|
|
71
|
-
private serialize;
|
|
72
|
-
private deserialize;
|
|
73
|
-
}
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
|
|
2
|
-
import { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateIPSetCommandInput extends UpdateIPSetRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateIPSetCommandOutput extends UpdateIPSetResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <note>
|
|
11
|
-
* <p>This is <b>AWS WAF Classic</b> documentation. For
|
|
12
|
-
* more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
|
|
13
|
-
* WAF Classic</a> in the developer guide.</p>
|
|
14
|
-
* <p>
|
|
15
|
-
* <b>For the latest version of AWS
|
|
16
|
-
* 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>
|
|
17
|
-
* </note>
|
|
18
|
-
* <p>Inserts or deletes <a>IPSetDescriptor</a> objects in an
|
|
19
|
-
* <code>IPSet</code>. For each <code>IPSetDescriptor</code> object, you specify the following
|
|
20
|
-
* values: </p>
|
|
21
|
-
* <ul>
|
|
22
|
-
* <li>
|
|
23
|
-
* <p>Whether to insert or delete the object from the array. If you want to change an
|
|
24
|
-
* <code>IPSetDescriptor</code> object, you delete the existing object and add a new
|
|
25
|
-
* one.</p>
|
|
26
|
-
* </li>
|
|
27
|
-
* <li>
|
|
28
|
-
* <p>The IP address version, <code>IPv4</code> or <code>IPv6</code>. </p>
|
|
29
|
-
* </li>
|
|
30
|
-
* <li>
|
|
31
|
-
* <p>The IP address in CIDR notation, for example, <code>192.0.2.0/24</code> (for
|
|
32
|
-
* the range of IP addresses from <code>192.0.2.0</code> to <code>192.0.2.255</code>) or
|
|
33
|
-
* <code>192.0.2.44/32</code> (for the individual IP address
|
|
34
|
-
* <code>192.0.2.44</code>). </p>
|
|
35
|
-
* </li>
|
|
36
|
-
* </ul>
|
|
37
|
-
* <p>AWS WAF supports IPv4 address ranges: /8 and any range between /16 through /32. AWS
|
|
38
|
-
* WAF supports IPv6 address ranges: /24, /32, /48, /56, /64, and /128. For more
|
|
39
|
-
* information about CIDR notation, see the Wikipedia entry <a href="https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">Classless
|
|
40
|
-
* Inter-Domain Routing</a>.</p>
|
|
41
|
-
* <p>IPv6 addresses can be represented using any of the following formats:</p>
|
|
42
|
-
* <ul>
|
|
43
|
-
* <li>
|
|
44
|
-
* <p>1111:0000:0000:0000:0000:0000:0000:0111/128</p>
|
|
45
|
-
* </li>
|
|
46
|
-
* <li>
|
|
47
|
-
* <p>1111:0:0:0:0:0:0:0111/128</p>
|
|
48
|
-
* </li>
|
|
49
|
-
* <li>
|
|
50
|
-
* <p>1111::0111/128</p>
|
|
51
|
-
* </li>
|
|
52
|
-
* <li>
|
|
53
|
-
* <p>1111::111/128</p>
|
|
54
|
-
* </li>
|
|
55
|
-
* </ul>
|
|
56
|
-
* <p>You use an <code>IPSet</code> to specify which web requests you want to allow or
|
|
57
|
-
* block based on the IP addresses that the requests originated from. For example, if you're
|
|
58
|
-
* receiving a lot of requests from one or a small number of IP addresses and you want to
|
|
59
|
-
* block the requests, you can create an <code>IPSet</code> that specifies those IP addresses,
|
|
60
|
-
* and then configure AWS WAF to block the requests. </p>
|
|
61
|
-
* <p>To create and configure an <code>IPSet</code>, perform the following steps:</p>
|
|
62
|
-
* <ol>
|
|
63
|
-
* <li>
|
|
64
|
-
* <p>Submit a <a>CreateIPSet</a> request.</p>
|
|
65
|
-
* </li>
|
|
66
|
-
* <li>
|
|
67
|
-
* <p>Use <a>GetChangeToken</a> to get the change token that you provide
|
|
68
|
-
* in the <code>ChangeToken</code> parameter of an <a>UpdateIPSet</a>
|
|
69
|
-
* request.</p>
|
|
70
|
-
* </li>
|
|
71
|
-
* <li>
|
|
72
|
-
* <p>Submit an <code>UpdateIPSet</code> request to specify the IP addresses that you
|
|
73
|
-
* want AWS WAF to watch for.</p>
|
|
74
|
-
* </li>
|
|
75
|
-
* </ol>
|
|
76
|
-
* <p>When you update an <code>IPSet</code>, you specify the IP addresses that you want to
|
|
77
|
-
* add and/or the IP addresses that you want to delete. If you want to change an IP address,
|
|
78
|
-
* you delete the existing IP address and add the new one.</p>
|
|
79
|
-
* <p>You can insert a maximum of 1000 addresses in a single
|
|
80
|
-
* request.</p>
|
|
81
|
-
* <p>For more information about how to use the AWS WAF API to allow or block HTTP
|
|
82
|
-
* requests, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF
|
|
83
|
-
* Developer Guide</a>.</p>
|
|
84
|
-
* @example
|
|
85
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
86
|
-
* ```javascript
|
|
87
|
-
* import { WAFClient, UpdateIPSetCommand } from "@aws-sdk/client-waf"; // ES Modules import
|
|
88
|
-
* // const { WAFClient, UpdateIPSetCommand } = require("@aws-sdk/client-waf"); // CommonJS import
|
|
89
|
-
* const client = new WAFClient(config);
|
|
90
|
-
* const command = new UpdateIPSetCommand(input);
|
|
91
|
-
* const response = await client.send(command);
|
|
92
|
-
* ```
|
|
93
|
-
*
|
|
94
|
-
* @see {@link UpdateIPSetCommandInput} for command's `input` shape.
|
|
95
|
-
* @see {@link UpdateIPSetCommandOutput} for command's `response` shape.
|
|
96
|
-
* @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
|
|
97
|
-
*
|
|
98
|
-
*/
|
|
99
|
-
export declare class UpdateIPSetCommand extends $Command<UpdateIPSetCommandInput, UpdateIPSetCommandOutput, WAFClientResolvedConfig> {
|
|
100
|
-
readonly input: UpdateIPSetCommandInput;
|
|
101
|
-
constructor(input: UpdateIPSetCommandInput);
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateIPSetCommandInput, UpdateIPSetCommandOutput>;
|
|
106
|
-
private serialize;
|
|
107
|
-
private deserialize;
|
|
108
|
-
}
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
|
|
2
|
-
import { UpdateRateBasedRuleRequest, UpdateRateBasedRuleResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateRateBasedRuleCommandInput extends UpdateRateBasedRuleRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateRateBasedRuleCommandOutput extends UpdateRateBasedRuleResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <note>
|
|
11
|
-
* <p>This is <b>AWS WAF Classic</b> documentation. For
|
|
12
|
-
* more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
|
|
13
|
-
* WAF Classic</a> in the developer guide.</p>
|
|
14
|
-
* <p>
|
|
15
|
-
* <b>For the latest version of AWS
|
|
16
|
-
* 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>
|
|
17
|
-
* </note>
|
|
18
|
-
* <p>Inserts or deletes <a>Predicate</a> objects in a rule and updates the
|
|
19
|
-
* <code>RateLimit</code> in the rule. </p>
|
|
20
|
-
* <p>Each <code>Predicate</code> object identifies a predicate, such as a <a>ByteMatchSet</a> or an <a>IPSet</a>, that specifies the web requests
|
|
21
|
-
* that you want to block or count. The <code>RateLimit</code> specifies the number of
|
|
22
|
-
* requests every five minutes that triggers the rule.</p>
|
|
23
|
-
* <p>If you add more than one predicate to a <code>RateBasedRule</code>, a request must
|
|
24
|
-
* match all the predicates and exceed the <code>RateLimit</code> to be counted or blocked.
|
|
25
|
-
* For example, suppose you add the following to a <code>RateBasedRule</code>:</p>
|
|
26
|
-
* <ul>
|
|
27
|
-
* <li>
|
|
28
|
-
* <p>An <code>IPSet</code> that matches the IP address <code>192.0.2.44/32</code>
|
|
29
|
-
* </p>
|
|
30
|
-
* </li>
|
|
31
|
-
* <li>
|
|
32
|
-
* <p>A <code>ByteMatchSet</code> that matches <code>BadBot</code> in the
|
|
33
|
-
* <code>User-Agent</code> header</p>
|
|
34
|
-
* </li>
|
|
35
|
-
* </ul>
|
|
36
|
-
* <p>Further, you specify a
|
|
37
|
-
* <code>RateLimit</code> of 1,000.</p>
|
|
38
|
-
* <p>You then add the <code>RateBasedRule</code> to a <code>WebACL</code> and specify that
|
|
39
|
-
* you want to block requests that satisfy the rule. For a request to be blocked, it must come
|
|
40
|
-
* from the IP address 192.0.2.44 <i>and</i> the <code>User-Agent</code> header
|
|
41
|
-
* in the request must contain the value <code>BadBot</code>. Further, requests that match
|
|
42
|
-
* these two conditions much be received at a rate of more than 1,000 every five minutes. If
|
|
43
|
-
* the rate drops below this limit, AWS WAF no longer blocks the requests.</p>
|
|
44
|
-
*
|
|
45
|
-
* <p>As a second example, suppose you want to limit requests to a particular page on your site. To do this, you could add the following to a
|
|
46
|
-
* <code>RateBasedRule</code>:</p>
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
* <ul>
|
|
50
|
-
* <li>
|
|
51
|
-
* <p>A <code>ByteMatchSet</code> with <code>FieldToMatch</code> of <code>URI</code>
|
|
52
|
-
* </p>
|
|
53
|
-
* </li>
|
|
54
|
-
* <li>
|
|
55
|
-
* <p>A <code>PositionalConstraint</code> of <code>STARTS_WITH</code>
|
|
56
|
-
* </p>
|
|
57
|
-
* </li>
|
|
58
|
-
* <li>
|
|
59
|
-
* <p>A <code>TargetString</code> of <code>login</code>
|
|
60
|
-
* </p>
|
|
61
|
-
* </li>
|
|
62
|
-
* </ul>
|
|
63
|
-
* <p>Further, you specify a <code>RateLimit</code> of 1,000.</p>
|
|
64
|
-
* <p>By adding this <code>RateBasedRule</code> to a <code>WebACL</code>, you could limit requests to your login page without affecting the rest of your site.</p>
|
|
65
|
-
* @example
|
|
66
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
67
|
-
* ```javascript
|
|
68
|
-
* import { WAFClient, UpdateRateBasedRuleCommand } from "@aws-sdk/client-waf"; // ES Modules import
|
|
69
|
-
* // const { WAFClient, UpdateRateBasedRuleCommand } = require("@aws-sdk/client-waf"); // CommonJS import
|
|
70
|
-
* const client = new WAFClient(config);
|
|
71
|
-
* const command = new UpdateRateBasedRuleCommand(input);
|
|
72
|
-
* const response = await client.send(command);
|
|
73
|
-
* ```
|
|
74
|
-
*
|
|
75
|
-
* @see {@link UpdateRateBasedRuleCommandInput} for command's `input` shape.
|
|
76
|
-
* @see {@link UpdateRateBasedRuleCommandOutput} for command's `response` shape.
|
|
77
|
-
* @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
|
|
78
|
-
*
|
|
79
|
-
*/
|
|
80
|
-
export declare class UpdateRateBasedRuleCommand extends $Command<UpdateRateBasedRuleCommandInput, UpdateRateBasedRuleCommandOutput, WAFClientResolvedConfig> {
|
|
81
|
-
readonly input: UpdateRateBasedRuleCommandInput;
|
|
82
|
-
constructor(input: UpdateRateBasedRuleCommandInput);
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRateBasedRuleCommandInput, UpdateRateBasedRuleCommandOutput>;
|
|
87
|
-
private serialize;
|
|
88
|
-
private deserialize;
|
|
89
|
-
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
|
|
2
|
-
import { UpdateRegexMatchSetRequest, UpdateRegexMatchSetResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateRegexMatchSetCommandInput extends UpdateRegexMatchSetRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateRegexMatchSetCommandOutput extends UpdateRegexMatchSetResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <note>
|
|
11
|
-
* <p>This is <b>AWS WAF Classic</b> documentation. For
|
|
12
|
-
* more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
|
|
13
|
-
* WAF Classic</a> in the developer guide.</p>
|
|
14
|
-
* <p>
|
|
15
|
-
* <b>For the latest version of AWS
|
|
16
|
-
* 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>
|
|
17
|
-
* </note>
|
|
18
|
-
* <p>Inserts or deletes <a>RegexMatchTuple</a> objects (filters) in a <a>RegexMatchSet</a>. For each <code>RegexMatchSetUpdate</code> object,
|
|
19
|
-
* you specify the following values: </p>
|
|
20
|
-
* <ul>
|
|
21
|
-
* <li>
|
|
22
|
-
* <p>Whether to insert or delete the object from the array. If you want to change a <code>RegexMatchSetUpdate</code> object,
|
|
23
|
-
* you delete the existing object and add a new one.</p>
|
|
24
|
-
* </li>
|
|
25
|
-
* <li>
|
|
26
|
-
* <p>The part of a web request that you want AWS WAF to inspectupdate, such as a query string or the value of the <code>User-Agent</code> header. </p>
|
|
27
|
-
* </li>
|
|
28
|
-
* <li>
|
|
29
|
-
* <p>The identifier of the pattern (a regular expression) that you want AWS WAF to look for. For more information, see <a>RegexPatternSet</a>. </p>
|
|
30
|
-
* </li>
|
|
31
|
-
* <li>
|
|
32
|
-
* <p>Whether to perform any conversions on the request, such as converting it to lowercase, before inspecting it for the specified string.</p>
|
|
33
|
-
* </li>
|
|
34
|
-
* </ul>
|
|
35
|
-
* <p> For example, you can create a <code>RegexPatternSet</code> that matches any requests with <code>User-Agent</code> headers
|
|
36
|
-
* that contain the string <code>B[a@]dB[o0]t</code>. You can then configure AWS WAF to reject those requests.</p>
|
|
37
|
-
* <p>To create and configure a <code>RegexMatchSet</code>, perform the following steps:</p>
|
|
38
|
-
* <ol>
|
|
39
|
-
* <li>
|
|
40
|
-
* <p>Create a <code>RegexMatchSet.</code> For more information, see <a>CreateRegexMatchSet</a>.</p>
|
|
41
|
-
* </li>
|
|
42
|
-
* <li>
|
|
43
|
-
* <p>Use <a>GetChangeToken</a> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
|
|
44
|
-
* <code>UpdateRegexMatchSet</code> request.</p>
|
|
45
|
-
* </li>
|
|
46
|
-
* <li>
|
|
47
|
-
* <p>Submit an <code>UpdateRegexMatchSet</code> request to specify the part of the request that you want AWS WAF to inspect
|
|
48
|
-
* (for example, the header or the URI) and the identifier of the <code>RegexPatternSet</code> that contain the regular expression patters you want AWS WAF to watch for.</p>
|
|
49
|
-
* </li>
|
|
50
|
-
* </ol>
|
|
51
|
-
* <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the
|
|
52
|
-
* <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
|
|
53
|
-
* @example
|
|
54
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
55
|
-
* ```javascript
|
|
56
|
-
* import { WAFClient, UpdateRegexMatchSetCommand } from "@aws-sdk/client-waf"; // ES Modules import
|
|
57
|
-
* // const { WAFClient, UpdateRegexMatchSetCommand } = require("@aws-sdk/client-waf"); // CommonJS import
|
|
58
|
-
* const client = new WAFClient(config);
|
|
59
|
-
* const command = new UpdateRegexMatchSetCommand(input);
|
|
60
|
-
* const response = await client.send(command);
|
|
61
|
-
* ```
|
|
62
|
-
*
|
|
63
|
-
* @see {@link UpdateRegexMatchSetCommandInput} for command's `input` shape.
|
|
64
|
-
* @see {@link UpdateRegexMatchSetCommandOutput} for command's `response` shape.
|
|
65
|
-
* @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
|
|
66
|
-
*
|
|
67
|
-
*/
|
|
68
|
-
export declare class UpdateRegexMatchSetCommand extends $Command<UpdateRegexMatchSetCommandInput, UpdateRegexMatchSetCommandOutput, WAFClientResolvedConfig> {
|
|
69
|
-
readonly input: UpdateRegexMatchSetCommandInput;
|
|
70
|
-
constructor(input: UpdateRegexMatchSetCommandInput);
|
|
71
|
-
/**
|
|
72
|
-
* @internal
|
|
73
|
-
*/
|
|
74
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRegexMatchSetCommandInput, UpdateRegexMatchSetCommandOutput>;
|
|
75
|
-
private serialize;
|
|
76
|
-
private deserialize;
|
|
77
|
-
}
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
|
|
2
|
-
import { UpdateRegexPatternSetRequest, UpdateRegexPatternSetResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateRegexPatternSetCommandInput extends UpdateRegexPatternSetRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateRegexPatternSetCommandOutput extends UpdateRegexPatternSetResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <note>
|
|
11
|
-
* <p>This is <b>AWS WAF Classic</b> documentation. For
|
|
12
|
-
* more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
|
|
13
|
-
* WAF Classic</a> in the developer guide.</p>
|
|
14
|
-
* <p>
|
|
15
|
-
* <b>For the latest version of AWS
|
|
16
|
-
* 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>
|
|
17
|
-
* </note>
|
|
18
|
-
* <p>Inserts or deletes <code>RegexPatternString</code> objects in a <a>RegexPatternSet</a>. For each <code>RegexPatternString</code> object,
|
|
19
|
-
* you specify the following values: </p>
|
|
20
|
-
* <ul>
|
|
21
|
-
* <li>
|
|
22
|
-
* <p>Whether to insert or delete the <code>RegexPatternString</code>.</p>
|
|
23
|
-
* </li>
|
|
24
|
-
* <li>
|
|
25
|
-
* <p>The regular expression pattern that you want to insert or delete. For more information, see <a>RegexPatternSet</a>. </p>
|
|
26
|
-
* </li>
|
|
27
|
-
* </ul>
|
|
28
|
-
* <p> For example, you can create a <code>RegexPatternString</code> such as <code>B[a@]dB[o0]t</code>. AWS WAF will match this <code>RegexPatternString</code> to:</p>
|
|
29
|
-
* <ul>
|
|
30
|
-
* <li>
|
|
31
|
-
* <p>BadBot</p>
|
|
32
|
-
* </li>
|
|
33
|
-
* <li>
|
|
34
|
-
* <p>BadB0t</p>
|
|
35
|
-
* </li>
|
|
36
|
-
* <li>
|
|
37
|
-
* <p>B@dBot</p>
|
|
38
|
-
* </li>
|
|
39
|
-
* <li>
|
|
40
|
-
* <p>B@dB0t</p>
|
|
41
|
-
* </li>
|
|
42
|
-
* </ul>
|
|
43
|
-
* <p>To create and configure a <code>RegexPatternSet</code>, perform the following steps:</p>
|
|
44
|
-
* <ol>
|
|
45
|
-
* <li>
|
|
46
|
-
* <p>Create a <code>RegexPatternSet.</code> For more information, see <a>CreateRegexPatternSet</a>.</p>
|
|
47
|
-
* </li>
|
|
48
|
-
* <li>
|
|
49
|
-
* <p>Use <a>GetChangeToken</a> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
|
|
50
|
-
* <code>UpdateRegexPatternSet</code> request.</p>
|
|
51
|
-
* </li>
|
|
52
|
-
* <li>
|
|
53
|
-
* <p>Submit an <code>UpdateRegexPatternSet</code> request to specify the regular expression pattern that you want AWS WAF to watch for.</p>
|
|
54
|
-
* </li>
|
|
55
|
-
* </ol>
|
|
56
|
-
* <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the
|
|
57
|
-
* <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
|
|
58
|
-
* @example
|
|
59
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
60
|
-
* ```javascript
|
|
61
|
-
* import { WAFClient, UpdateRegexPatternSetCommand } from "@aws-sdk/client-waf"; // ES Modules import
|
|
62
|
-
* // const { WAFClient, UpdateRegexPatternSetCommand } = require("@aws-sdk/client-waf"); // CommonJS import
|
|
63
|
-
* const client = new WAFClient(config);
|
|
64
|
-
* const command = new UpdateRegexPatternSetCommand(input);
|
|
65
|
-
* const response = await client.send(command);
|
|
66
|
-
* ```
|
|
67
|
-
*
|
|
68
|
-
* @see {@link UpdateRegexPatternSetCommandInput} for command's `input` shape.
|
|
69
|
-
* @see {@link UpdateRegexPatternSetCommandOutput} for command's `response` shape.
|
|
70
|
-
* @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
|
|
71
|
-
*
|
|
72
|
-
*/
|
|
73
|
-
export declare class UpdateRegexPatternSetCommand extends $Command<UpdateRegexPatternSetCommandInput, UpdateRegexPatternSetCommandOutput, WAFClientResolvedConfig> {
|
|
74
|
-
readonly input: UpdateRegexPatternSetCommandInput;
|
|
75
|
-
constructor(input: UpdateRegexPatternSetCommandInput);
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRegexPatternSetCommandInput, UpdateRegexPatternSetCommandOutput>;
|
|
80
|
-
private serialize;
|
|
81
|
-
private deserialize;
|
|
82
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient";
|
|
2
|
-
import { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
|
|
5
|
-
export interface UpdateRuleCommandInput extends UpdateRuleRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateRuleCommandOutput extends UpdateRuleResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* <note>
|
|
11
|
-
* <p>This is <b>AWS WAF Classic</b> documentation. For
|
|
12
|
-
* more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
|
|
13
|
-
* WAF Classic</a> in the developer guide.</p>
|
|
14
|
-
* <p>
|
|
15
|
-
* <b>For the latest version of AWS
|
|
16
|
-
* 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>
|
|
17
|
-
* </note>
|
|
18
|
-
* <p>Inserts or deletes <a>Predicate</a> objects in a <code>Rule</code>. Each
|
|
19
|
-
* <code>Predicate</code> object identifies a predicate, such as a <a>ByteMatchSet</a> or an <a>IPSet</a>, that specifies the web requests
|
|
20
|
-
* that you want to allow, block, or count. If you add more than one predicate to a
|
|
21
|
-
* <code>Rule</code>, a request must match all of the specifications to be allowed,
|
|
22
|
-
* blocked, or counted. For example, suppose
|
|
23
|
-
* that
|
|
24
|
-
* you add the following to a <code>Rule</code>: </p>
|
|
25
|
-
* <ul>
|
|
26
|
-
* <li>
|
|
27
|
-
* <p>A <code>ByteMatchSet</code> that matches the value <code>BadBot</code> in the <code>User-Agent</code> header</p>
|
|
28
|
-
* </li>
|
|
29
|
-
* <li>
|
|
30
|
-
* <p>An <code>IPSet</code> that matches the IP address <code>192.0.2.44</code>
|
|
31
|
-
* </p>
|
|
32
|
-
* </li>
|
|
33
|
-
* </ul>
|
|
34
|
-
* <p>You then add the <code>Rule</code> to a <code>WebACL</code> and specify that you want to block requests that satisfy the <code>Rule</code>.
|
|
35
|
-
* For a request to be blocked, the <code>User-Agent</code> header in the request must contain the value <code>BadBot</code>
|
|
36
|
-
* <i>and</i> the request must originate from the IP address 192.0.2.44.</p>
|
|
37
|
-
* <p>To create and configure a <code>Rule</code>, perform the following steps:</p>
|
|
38
|
-
* <ol>
|
|
39
|
-
* <li>
|
|
40
|
-
* <p>Create and update the predicates that you want to include in the <code>Rule</code>.</p>
|
|
41
|
-
* </li>
|
|
42
|
-
* <li>
|
|
43
|
-
* <p>Create the <code>Rule</code>. See <a>CreateRule</a>.</p>
|
|
44
|
-
* </li>
|
|
45
|
-
* <li>
|
|
46
|
-
* <p>Use <code>GetChangeToken</code> to get the change token that you provide in the <code>ChangeToken</code> parameter of an
|
|
47
|
-
* <a>UpdateRule</a> request.</p>
|
|
48
|
-
* </li>
|
|
49
|
-
* <li>
|
|
50
|
-
* <p>Submit an <code>UpdateRule</code> request to add predicates to the <code>Rule</code>.</p>
|
|
51
|
-
* </li>
|
|
52
|
-
* <li>
|
|
53
|
-
* <p>Create and update a <code>WebACL</code> that contains the <code>Rule</code>. See <a>CreateWebACL</a>.</p>
|
|
54
|
-
* </li>
|
|
55
|
-
* </ol>
|
|
56
|
-
* <p>If you want to replace one <code>ByteMatchSet</code> or <code>IPSet</code> with another, you delete the existing one and
|
|
57
|
-
* add the new one.</p>
|
|
58
|
-
* <p>For more information about how to use the AWS WAF API to allow or block HTTP requests, see the
|
|
59
|
-
* <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">AWS WAF Developer Guide</a>.</p>
|
|
60
|
-
* @example
|
|
61
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
62
|
-
* ```javascript
|
|
63
|
-
* import { WAFClient, UpdateRuleCommand } from "@aws-sdk/client-waf"; // ES Modules import
|
|
64
|
-
* // const { WAFClient, UpdateRuleCommand } = require("@aws-sdk/client-waf"); // CommonJS import
|
|
65
|
-
* const client = new WAFClient(config);
|
|
66
|
-
* const command = new UpdateRuleCommand(input);
|
|
67
|
-
* const response = await client.send(command);
|
|
68
|
-
* ```
|
|
69
|
-
*
|
|
70
|
-
* @see {@link UpdateRuleCommandInput} for command's `input` shape.
|
|
71
|
-
* @see {@link UpdateRuleCommandOutput} for command's `response` shape.
|
|
72
|
-
* @see {@link WAFClientResolvedConfig | config} for command's `input` shape.
|
|
73
|
-
*
|
|
74
|
-
*/
|
|
75
|
-
export declare class UpdateRuleCommand extends $Command<UpdateRuleCommandInput, UpdateRuleCommandOutput, WAFClientResolvedConfig> {
|
|
76
|
-
readonly input: UpdateRuleCommandInput;
|
|
77
|
-
constructor(input: UpdateRuleCommandInput);
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRuleCommandInput, UpdateRuleCommandOutput>;
|
|
82
|
-
private serialize;
|
|
83
|
-
private deserialize;
|
|
84
|
-
}
|