@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
package/dist/es/WAF.js
DELETED
|
@@ -1,1179 +0,0 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
|
-
import { WAFClient } from "./WAFClient";
|
|
3
|
-
import { CreateByteMatchSetCommand, } from "./commands/CreateByteMatchSetCommand";
|
|
4
|
-
import { CreateGeoMatchSetCommand, } from "./commands/CreateGeoMatchSetCommand";
|
|
5
|
-
import { CreateIPSetCommand } from "./commands/CreateIPSetCommand";
|
|
6
|
-
import { CreateRateBasedRuleCommand, } from "./commands/CreateRateBasedRuleCommand";
|
|
7
|
-
import { CreateRegexMatchSetCommand, } from "./commands/CreateRegexMatchSetCommand";
|
|
8
|
-
import { CreateRegexPatternSetCommand, } from "./commands/CreateRegexPatternSetCommand";
|
|
9
|
-
import { CreateRuleCommand } from "./commands/CreateRuleCommand";
|
|
10
|
-
import { CreateRuleGroupCommand, } from "./commands/CreateRuleGroupCommand";
|
|
11
|
-
import { CreateSizeConstraintSetCommand, } from "./commands/CreateSizeConstraintSetCommand";
|
|
12
|
-
import { CreateSqlInjectionMatchSetCommand, } from "./commands/CreateSqlInjectionMatchSetCommand";
|
|
13
|
-
import { CreateWebACLCommand, } from "./commands/CreateWebACLCommand";
|
|
14
|
-
import { CreateWebACLMigrationStackCommand, } from "./commands/CreateWebACLMigrationStackCommand";
|
|
15
|
-
import { CreateXssMatchSetCommand, } from "./commands/CreateXssMatchSetCommand";
|
|
16
|
-
import { DeleteByteMatchSetCommand, } from "./commands/DeleteByteMatchSetCommand";
|
|
17
|
-
import { DeleteGeoMatchSetCommand, } from "./commands/DeleteGeoMatchSetCommand";
|
|
18
|
-
import { DeleteIPSetCommand } from "./commands/DeleteIPSetCommand";
|
|
19
|
-
import { DeleteLoggingConfigurationCommand, } from "./commands/DeleteLoggingConfigurationCommand";
|
|
20
|
-
import { DeletePermissionPolicyCommand, } from "./commands/DeletePermissionPolicyCommand";
|
|
21
|
-
import { DeleteRateBasedRuleCommand, } from "./commands/DeleteRateBasedRuleCommand";
|
|
22
|
-
import { DeleteRegexMatchSetCommand, } from "./commands/DeleteRegexMatchSetCommand";
|
|
23
|
-
import { DeleteRegexPatternSetCommand, } from "./commands/DeleteRegexPatternSetCommand";
|
|
24
|
-
import { DeleteRuleCommand } from "./commands/DeleteRuleCommand";
|
|
25
|
-
import { DeleteRuleGroupCommand, } from "./commands/DeleteRuleGroupCommand";
|
|
26
|
-
import { DeleteSizeConstraintSetCommand, } from "./commands/DeleteSizeConstraintSetCommand";
|
|
27
|
-
import { DeleteSqlInjectionMatchSetCommand, } from "./commands/DeleteSqlInjectionMatchSetCommand";
|
|
28
|
-
import { DeleteWebACLCommand, } from "./commands/DeleteWebACLCommand";
|
|
29
|
-
import { DeleteXssMatchSetCommand, } from "./commands/DeleteXssMatchSetCommand";
|
|
30
|
-
import { GetByteMatchSetCommand, } from "./commands/GetByteMatchSetCommand";
|
|
31
|
-
import { GetChangeTokenCommand, } from "./commands/GetChangeTokenCommand";
|
|
32
|
-
import { GetChangeTokenStatusCommand, } from "./commands/GetChangeTokenStatusCommand";
|
|
33
|
-
import { GetGeoMatchSetCommand, } from "./commands/GetGeoMatchSetCommand";
|
|
34
|
-
import { GetIPSetCommand } from "./commands/GetIPSetCommand";
|
|
35
|
-
import { GetLoggingConfigurationCommand, } from "./commands/GetLoggingConfigurationCommand";
|
|
36
|
-
import { GetPermissionPolicyCommand, } from "./commands/GetPermissionPolicyCommand";
|
|
37
|
-
import { GetRateBasedRuleCommand, } from "./commands/GetRateBasedRuleCommand";
|
|
38
|
-
import { GetRateBasedRuleManagedKeysCommand, } from "./commands/GetRateBasedRuleManagedKeysCommand";
|
|
39
|
-
import { GetRegexMatchSetCommand, } from "./commands/GetRegexMatchSetCommand";
|
|
40
|
-
import { GetRegexPatternSetCommand, } from "./commands/GetRegexPatternSetCommand";
|
|
41
|
-
import { GetRuleCommand } from "./commands/GetRuleCommand";
|
|
42
|
-
import { GetRuleGroupCommand, } from "./commands/GetRuleGroupCommand";
|
|
43
|
-
import { GetSampledRequestsCommand, } from "./commands/GetSampledRequestsCommand";
|
|
44
|
-
import { GetSizeConstraintSetCommand, } from "./commands/GetSizeConstraintSetCommand";
|
|
45
|
-
import { GetSqlInjectionMatchSetCommand, } from "./commands/GetSqlInjectionMatchSetCommand";
|
|
46
|
-
import { GetWebACLCommand } from "./commands/GetWebACLCommand";
|
|
47
|
-
import { GetXssMatchSetCommand, } from "./commands/GetXssMatchSetCommand";
|
|
48
|
-
import { ListActivatedRulesInRuleGroupCommand, } from "./commands/ListActivatedRulesInRuleGroupCommand";
|
|
49
|
-
import { ListByteMatchSetsCommand, } from "./commands/ListByteMatchSetsCommand";
|
|
50
|
-
import { ListGeoMatchSetsCommand, } from "./commands/ListGeoMatchSetsCommand";
|
|
51
|
-
import { ListIPSetsCommand } from "./commands/ListIPSetsCommand";
|
|
52
|
-
import { ListLoggingConfigurationsCommand, } from "./commands/ListLoggingConfigurationsCommand";
|
|
53
|
-
import { ListRateBasedRulesCommand, } from "./commands/ListRateBasedRulesCommand";
|
|
54
|
-
import { ListRegexMatchSetsCommand, } from "./commands/ListRegexMatchSetsCommand";
|
|
55
|
-
import { ListRegexPatternSetsCommand, } from "./commands/ListRegexPatternSetsCommand";
|
|
56
|
-
import { ListRuleGroupsCommand, } from "./commands/ListRuleGroupsCommand";
|
|
57
|
-
import { ListRulesCommand } from "./commands/ListRulesCommand";
|
|
58
|
-
import { ListSizeConstraintSetsCommand, } from "./commands/ListSizeConstraintSetsCommand";
|
|
59
|
-
import { ListSqlInjectionMatchSetsCommand, } from "./commands/ListSqlInjectionMatchSetsCommand";
|
|
60
|
-
import { ListSubscribedRuleGroupsCommand, } from "./commands/ListSubscribedRuleGroupsCommand";
|
|
61
|
-
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
62
|
-
import { ListWebACLsCommand } from "./commands/ListWebACLsCommand";
|
|
63
|
-
import { ListXssMatchSetsCommand, } from "./commands/ListXssMatchSetsCommand";
|
|
64
|
-
import { PutLoggingConfigurationCommand, } from "./commands/PutLoggingConfigurationCommand";
|
|
65
|
-
import { PutPermissionPolicyCommand, } from "./commands/PutPermissionPolicyCommand";
|
|
66
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
67
|
-
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
68
|
-
import { UpdateByteMatchSetCommand, } from "./commands/UpdateByteMatchSetCommand";
|
|
69
|
-
import { UpdateGeoMatchSetCommand, } from "./commands/UpdateGeoMatchSetCommand";
|
|
70
|
-
import { UpdateIPSetCommand } from "./commands/UpdateIPSetCommand";
|
|
71
|
-
import { UpdateRateBasedRuleCommand, } from "./commands/UpdateRateBasedRuleCommand";
|
|
72
|
-
import { UpdateRegexMatchSetCommand, } from "./commands/UpdateRegexMatchSetCommand";
|
|
73
|
-
import { UpdateRegexPatternSetCommand, } from "./commands/UpdateRegexPatternSetCommand";
|
|
74
|
-
import { UpdateRuleCommand } from "./commands/UpdateRuleCommand";
|
|
75
|
-
import { UpdateRuleGroupCommand, } from "./commands/UpdateRuleGroupCommand";
|
|
76
|
-
import { UpdateSizeConstraintSetCommand, } from "./commands/UpdateSizeConstraintSetCommand";
|
|
77
|
-
import { UpdateSqlInjectionMatchSetCommand, } from "./commands/UpdateSqlInjectionMatchSetCommand";
|
|
78
|
-
import { UpdateWebACLCommand, } from "./commands/UpdateWebACLCommand";
|
|
79
|
-
import { UpdateXssMatchSetCommand, } from "./commands/UpdateXssMatchSetCommand";
|
|
80
|
-
/**
|
|
81
|
-
* <note>
|
|
82
|
-
* <p>This is <b>AWS WAF Classic</b> documentation. For
|
|
83
|
-
* more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS
|
|
84
|
-
* WAF Classic</a> in the developer guide.</p>
|
|
85
|
-
* <p>
|
|
86
|
-
* <b>For the latest version of AWS
|
|
87
|
-
* 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>
|
|
88
|
-
* </note>
|
|
89
|
-
* <p>This is the <i>AWS WAF Classic API Reference</i> for using AWS WAF Classic with Amazon CloudFront. The AWS WAF Classic actions and data types listed in the reference are available for protecting Amazon CloudFront distributions. You can use these actions and data types via the endpoint <i>waf.amazonaws.com</i>. This guide is for developers who need detailed information about the AWS WAF Classic API actions,
|
|
90
|
-
* data types, and errors. For detailed information about AWS WAF Classic features and an overview of how to use the AWS WAF Classic API, see the
|
|
91
|
-
* <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p>
|
|
92
|
-
*/
|
|
93
|
-
var WAF = /** @class */ (function (_super) {
|
|
94
|
-
__extends(WAF, _super);
|
|
95
|
-
function WAF() {
|
|
96
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
97
|
-
}
|
|
98
|
-
WAF.prototype.createByteMatchSet = function (args, optionsOrCb, cb) {
|
|
99
|
-
var command = new CreateByteMatchSetCommand(args);
|
|
100
|
-
if (typeof optionsOrCb === "function") {
|
|
101
|
-
this.send(command, optionsOrCb);
|
|
102
|
-
}
|
|
103
|
-
else if (typeof cb === "function") {
|
|
104
|
-
if (typeof optionsOrCb !== "object")
|
|
105
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
106
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
107
|
-
}
|
|
108
|
-
else {
|
|
109
|
-
return this.send(command, optionsOrCb);
|
|
110
|
-
}
|
|
111
|
-
};
|
|
112
|
-
WAF.prototype.createGeoMatchSet = function (args, optionsOrCb, cb) {
|
|
113
|
-
var command = new CreateGeoMatchSetCommand(args);
|
|
114
|
-
if (typeof optionsOrCb === "function") {
|
|
115
|
-
this.send(command, optionsOrCb);
|
|
116
|
-
}
|
|
117
|
-
else if (typeof cb === "function") {
|
|
118
|
-
if (typeof optionsOrCb !== "object")
|
|
119
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
120
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
121
|
-
}
|
|
122
|
-
else {
|
|
123
|
-
return this.send(command, optionsOrCb);
|
|
124
|
-
}
|
|
125
|
-
};
|
|
126
|
-
WAF.prototype.createIPSet = function (args, optionsOrCb, cb) {
|
|
127
|
-
var command = new CreateIPSetCommand(args);
|
|
128
|
-
if (typeof optionsOrCb === "function") {
|
|
129
|
-
this.send(command, optionsOrCb);
|
|
130
|
-
}
|
|
131
|
-
else if (typeof cb === "function") {
|
|
132
|
-
if (typeof optionsOrCb !== "object")
|
|
133
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
134
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
135
|
-
}
|
|
136
|
-
else {
|
|
137
|
-
return this.send(command, optionsOrCb);
|
|
138
|
-
}
|
|
139
|
-
};
|
|
140
|
-
WAF.prototype.createRateBasedRule = function (args, optionsOrCb, cb) {
|
|
141
|
-
var command = new CreateRateBasedRuleCommand(args);
|
|
142
|
-
if (typeof optionsOrCb === "function") {
|
|
143
|
-
this.send(command, optionsOrCb);
|
|
144
|
-
}
|
|
145
|
-
else if (typeof cb === "function") {
|
|
146
|
-
if (typeof optionsOrCb !== "object")
|
|
147
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
148
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
149
|
-
}
|
|
150
|
-
else {
|
|
151
|
-
return this.send(command, optionsOrCb);
|
|
152
|
-
}
|
|
153
|
-
};
|
|
154
|
-
WAF.prototype.createRegexMatchSet = function (args, optionsOrCb, cb) {
|
|
155
|
-
var command = new CreateRegexMatchSetCommand(args);
|
|
156
|
-
if (typeof optionsOrCb === "function") {
|
|
157
|
-
this.send(command, optionsOrCb);
|
|
158
|
-
}
|
|
159
|
-
else if (typeof cb === "function") {
|
|
160
|
-
if (typeof optionsOrCb !== "object")
|
|
161
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
162
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
163
|
-
}
|
|
164
|
-
else {
|
|
165
|
-
return this.send(command, optionsOrCb);
|
|
166
|
-
}
|
|
167
|
-
};
|
|
168
|
-
WAF.prototype.createRegexPatternSet = function (args, optionsOrCb, cb) {
|
|
169
|
-
var command = new CreateRegexPatternSetCommand(args);
|
|
170
|
-
if (typeof optionsOrCb === "function") {
|
|
171
|
-
this.send(command, optionsOrCb);
|
|
172
|
-
}
|
|
173
|
-
else if (typeof cb === "function") {
|
|
174
|
-
if (typeof optionsOrCb !== "object")
|
|
175
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
176
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
177
|
-
}
|
|
178
|
-
else {
|
|
179
|
-
return this.send(command, optionsOrCb);
|
|
180
|
-
}
|
|
181
|
-
};
|
|
182
|
-
WAF.prototype.createRule = function (args, optionsOrCb, cb) {
|
|
183
|
-
var command = new CreateRuleCommand(args);
|
|
184
|
-
if (typeof optionsOrCb === "function") {
|
|
185
|
-
this.send(command, optionsOrCb);
|
|
186
|
-
}
|
|
187
|
-
else if (typeof cb === "function") {
|
|
188
|
-
if (typeof optionsOrCb !== "object")
|
|
189
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
190
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
191
|
-
}
|
|
192
|
-
else {
|
|
193
|
-
return this.send(command, optionsOrCb);
|
|
194
|
-
}
|
|
195
|
-
};
|
|
196
|
-
WAF.prototype.createRuleGroup = function (args, optionsOrCb, cb) {
|
|
197
|
-
var command = new CreateRuleGroupCommand(args);
|
|
198
|
-
if (typeof optionsOrCb === "function") {
|
|
199
|
-
this.send(command, optionsOrCb);
|
|
200
|
-
}
|
|
201
|
-
else if (typeof cb === "function") {
|
|
202
|
-
if (typeof optionsOrCb !== "object")
|
|
203
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
204
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
205
|
-
}
|
|
206
|
-
else {
|
|
207
|
-
return this.send(command, optionsOrCb);
|
|
208
|
-
}
|
|
209
|
-
};
|
|
210
|
-
WAF.prototype.createSizeConstraintSet = function (args, optionsOrCb, cb) {
|
|
211
|
-
var command = new CreateSizeConstraintSetCommand(args);
|
|
212
|
-
if (typeof optionsOrCb === "function") {
|
|
213
|
-
this.send(command, optionsOrCb);
|
|
214
|
-
}
|
|
215
|
-
else if (typeof cb === "function") {
|
|
216
|
-
if (typeof optionsOrCb !== "object")
|
|
217
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
218
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
219
|
-
}
|
|
220
|
-
else {
|
|
221
|
-
return this.send(command, optionsOrCb);
|
|
222
|
-
}
|
|
223
|
-
};
|
|
224
|
-
WAF.prototype.createSqlInjectionMatchSet = function (args, optionsOrCb, cb) {
|
|
225
|
-
var command = new CreateSqlInjectionMatchSetCommand(args);
|
|
226
|
-
if (typeof optionsOrCb === "function") {
|
|
227
|
-
this.send(command, optionsOrCb);
|
|
228
|
-
}
|
|
229
|
-
else if (typeof cb === "function") {
|
|
230
|
-
if (typeof optionsOrCb !== "object")
|
|
231
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
232
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
233
|
-
}
|
|
234
|
-
else {
|
|
235
|
-
return this.send(command, optionsOrCb);
|
|
236
|
-
}
|
|
237
|
-
};
|
|
238
|
-
WAF.prototype.createWebACL = function (args, optionsOrCb, cb) {
|
|
239
|
-
var command = new CreateWebACLCommand(args);
|
|
240
|
-
if (typeof optionsOrCb === "function") {
|
|
241
|
-
this.send(command, optionsOrCb);
|
|
242
|
-
}
|
|
243
|
-
else if (typeof cb === "function") {
|
|
244
|
-
if (typeof optionsOrCb !== "object")
|
|
245
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
246
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
247
|
-
}
|
|
248
|
-
else {
|
|
249
|
-
return this.send(command, optionsOrCb);
|
|
250
|
-
}
|
|
251
|
-
};
|
|
252
|
-
WAF.prototype.createWebACLMigrationStack = function (args, optionsOrCb, cb) {
|
|
253
|
-
var command = new CreateWebACLMigrationStackCommand(args);
|
|
254
|
-
if (typeof optionsOrCb === "function") {
|
|
255
|
-
this.send(command, optionsOrCb);
|
|
256
|
-
}
|
|
257
|
-
else if (typeof cb === "function") {
|
|
258
|
-
if (typeof optionsOrCb !== "object")
|
|
259
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
260
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
261
|
-
}
|
|
262
|
-
else {
|
|
263
|
-
return this.send(command, optionsOrCb);
|
|
264
|
-
}
|
|
265
|
-
};
|
|
266
|
-
WAF.prototype.createXssMatchSet = function (args, optionsOrCb, cb) {
|
|
267
|
-
var command = new CreateXssMatchSetCommand(args);
|
|
268
|
-
if (typeof optionsOrCb === "function") {
|
|
269
|
-
this.send(command, optionsOrCb);
|
|
270
|
-
}
|
|
271
|
-
else if (typeof cb === "function") {
|
|
272
|
-
if (typeof optionsOrCb !== "object")
|
|
273
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
274
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
275
|
-
}
|
|
276
|
-
else {
|
|
277
|
-
return this.send(command, optionsOrCb);
|
|
278
|
-
}
|
|
279
|
-
};
|
|
280
|
-
WAF.prototype.deleteByteMatchSet = function (args, optionsOrCb, cb) {
|
|
281
|
-
var command = new DeleteByteMatchSetCommand(args);
|
|
282
|
-
if (typeof optionsOrCb === "function") {
|
|
283
|
-
this.send(command, optionsOrCb);
|
|
284
|
-
}
|
|
285
|
-
else if (typeof cb === "function") {
|
|
286
|
-
if (typeof optionsOrCb !== "object")
|
|
287
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
288
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
289
|
-
}
|
|
290
|
-
else {
|
|
291
|
-
return this.send(command, optionsOrCb);
|
|
292
|
-
}
|
|
293
|
-
};
|
|
294
|
-
WAF.prototype.deleteGeoMatchSet = function (args, optionsOrCb, cb) {
|
|
295
|
-
var command = new DeleteGeoMatchSetCommand(args);
|
|
296
|
-
if (typeof optionsOrCb === "function") {
|
|
297
|
-
this.send(command, optionsOrCb);
|
|
298
|
-
}
|
|
299
|
-
else if (typeof cb === "function") {
|
|
300
|
-
if (typeof optionsOrCb !== "object")
|
|
301
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
302
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
303
|
-
}
|
|
304
|
-
else {
|
|
305
|
-
return this.send(command, optionsOrCb);
|
|
306
|
-
}
|
|
307
|
-
};
|
|
308
|
-
WAF.prototype.deleteIPSet = function (args, optionsOrCb, cb) {
|
|
309
|
-
var command = new DeleteIPSetCommand(args);
|
|
310
|
-
if (typeof optionsOrCb === "function") {
|
|
311
|
-
this.send(command, optionsOrCb);
|
|
312
|
-
}
|
|
313
|
-
else if (typeof cb === "function") {
|
|
314
|
-
if (typeof optionsOrCb !== "object")
|
|
315
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
316
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
317
|
-
}
|
|
318
|
-
else {
|
|
319
|
-
return this.send(command, optionsOrCb);
|
|
320
|
-
}
|
|
321
|
-
};
|
|
322
|
-
WAF.prototype.deleteLoggingConfiguration = function (args, optionsOrCb, cb) {
|
|
323
|
-
var command = new DeleteLoggingConfigurationCommand(args);
|
|
324
|
-
if (typeof optionsOrCb === "function") {
|
|
325
|
-
this.send(command, optionsOrCb);
|
|
326
|
-
}
|
|
327
|
-
else if (typeof cb === "function") {
|
|
328
|
-
if (typeof optionsOrCb !== "object")
|
|
329
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
330
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
331
|
-
}
|
|
332
|
-
else {
|
|
333
|
-
return this.send(command, optionsOrCb);
|
|
334
|
-
}
|
|
335
|
-
};
|
|
336
|
-
WAF.prototype.deletePermissionPolicy = function (args, optionsOrCb, cb) {
|
|
337
|
-
var command = new DeletePermissionPolicyCommand(args);
|
|
338
|
-
if (typeof optionsOrCb === "function") {
|
|
339
|
-
this.send(command, optionsOrCb);
|
|
340
|
-
}
|
|
341
|
-
else if (typeof cb === "function") {
|
|
342
|
-
if (typeof optionsOrCb !== "object")
|
|
343
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
344
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
345
|
-
}
|
|
346
|
-
else {
|
|
347
|
-
return this.send(command, optionsOrCb);
|
|
348
|
-
}
|
|
349
|
-
};
|
|
350
|
-
WAF.prototype.deleteRateBasedRule = function (args, optionsOrCb, cb) {
|
|
351
|
-
var command = new DeleteRateBasedRuleCommand(args);
|
|
352
|
-
if (typeof optionsOrCb === "function") {
|
|
353
|
-
this.send(command, optionsOrCb);
|
|
354
|
-
}
|
|
355
|
-
else if (typeof cb === "function") {
|
|
356
|
-
if (typeof optionsOrCb !== "object")
|
|
357
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
358
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
359
|
-
}
|
|
360
|
-
else {
|
|
361
|
-
return this.send(command, optionsOrCb);
|
|
362
|
-
}
|
|
363
|
-
};
|
|
364
|
-
WAF.prototype.deleteRegexMatchSet = function (args, optionsOrCb, cb) {
|
|
365
|
-
var command = new DeleteRegexMatchSetCommand(args);
|
|
366
|
-
if (typeof optionsOrCb === "function") {
|
|
367
|
-
this.send(command, optionsOrCb);
|
|
368
|
-
}
|
|
369
|
-
else if (typeof cb === "function") {
|
|
370
|
-
if (typeof optionsOrCb !== "object")
|
|
371
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
372
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
373
|
-
}
|
|
374
|
-
else {
|
|
375
|
-
return this.send(command, optionsOrCb);
|
|
376
|
-
}
|
|
377
|
-
};
|
|
378
|
-
WAF.prototype.deleteRegexPatternSet = function (args, optionsOrCb, cb) {
|
|
379
|
-
var command = new DeleteRegexPatternSetCommand(args);
|
|
380
|
-
if (typeof optionsOrCb === "function") {
|
|
381
|
-
this.send(command, optionsOrCb);
|
|
382
|
-
}
|
|
383
|
-
else if (typeof cb === "function") {
|
|
384
|
-
if (typeof optionsOrCb !== "object")
|
|
385
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
386
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
387
|
-
}
|
|
388
|
-
else {
|
|
389
|
-
return this.send(command, optionsOrCb);
|
|
390
|
-
}
|
|
391
|
-
};
|
|
392
|
-
WAF.prototype.deleteRule = function (args, optionsOrCb, cb) {
|
|
393
|
-
var command = new DeleteRuleCommand(args);
|
|
394
|
-
if (typeof optionsOrCb === "function") {
|
|
395
|
-
this.send(command, optionsOrCb);
|
|
396
|
-
}
|
|
397
|
-
else if (typeof cb === "function") {
|
|
398
|
-
if (typeof optionsOrCb !== "object")
|
|
399
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
400
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
401
|
-
}
|
|
402
|
-
else {
|
|
403
|
-
return this.send(command, optionsOrCb);
|
|
404
|
-
}
|
|
405
|
-
};
|
|
406
|
-
WAF.prototype.deleteRuleGroup = function (args, optionsOrCb, cb) {
|
|
407
|
-
var command = new DeleteRuleGroupCommand(args);
|
|
408
|
-
if (typeof optionsOrCb === "function") {
|
|
409
|
-
this.send(command, optionsOrCb);
|
|
410
|
-
}
|
|
411
|
-
else if (typeof cb === "function") {
|
|
412
|
-
if (typeof optionsOrCb !== "object")
|
|
413
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
414
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
415
|
-
}
|
|
416
|
-
else {
|
|
417
|
-
return this.send(command, optionsOrCb);
|
|
418
|
-
}
|
|
419
|
-
};
|
|
420
|
-
WAF.prototype.deleteSizeConstraintSet = function (args, optionsOrCb, cb) {
|
|
421
|
-
var command = new DeleteSizeConstraintSetCommand(args);
|
|
422
|
-
if (typeof optionsOrCb === "function") {
|
|
423
|
-
this.send(command, optionsOrCb);
|
|
424
|
-
}
|
|
425
|
-
else if (typeof cb === "function") {
|
|
426
|
-
if (typeof optionsOrCb !== "object")
|
|
427
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
428
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
429
|
-
}
|
|
430
|
-
else {
|
|
431
|
-
return this.send(command, optionsOrCb);
|
|
432
|
-
}
|
|
433
|
-
};
|
|
434
|
-
WAF.prototype.deleteSqlInjectionMatchSet = function (args, optionsOrCb, cb) {
|
|
435
|
-
var command = new DeleteSqlInjectionMatchSetCommand(args);
|
|
436
|
-
if (typeof optionsOrCb === "function") {
|
|
437
|
-
this.send(command, optionsOrCb);
|
|
438
|
-
}
|
|
439
|
-
else if (typeof cb === "function") {
|
|
440
|
-
if (typeof optionsOrCb !== "object")
|
|
441
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
442
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
443
|
-
}
|
|
444
|
-
else {
|
|
445
|
-
return this.send(command, optionsOrCb);
|
|
446
|
-
}
|
|
447
|
-
};
|
|
448
|
-
WAF.prototype.deleteWebACL = function (args, optionsOrCb, cb) {
|
|
449
|
-
var command = new DeleteWebACLCommand(args);
|
|
450
|
-
if (typeof optionsOrCb === "function") {
|
|
451
|
-
this.send(command, optionsOrCb);
|
|
452
|
-
}
|
|
453
|
-
else if (typeof cb === "function") {
|
|
454
|
-
if (typeof optionsOrCb !== "object")
|
|
455
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
456
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
457
|
-
}
|
|
458
|
-
else {
|
|
459
|
-
return this.send(command, optionsOrCb);
|
|
460
|
-
}
|
|
461
|
-
};
|
|
462
|
-
WAF.prototype.deleteXssMatchSet = function (args, optionsOrCb, cb) {
|
|
463
|
-
var command = new DeleteXssMatchSetCommand(args);
|
|
464
|
-
if (typeof optionsOrCb === "function") {
|
|
465
|
-
this.send(command, optionsOrCb);
|
|
466
|
-
}
|
|
467
|
-
else if (typeof cb === "function") {
|
|
468
|
-
if (typeof optionsOrCb !== "object")
|
|
469
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
470
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
471
|
-
}
|
|
472
|
-
else {
|
|
473
|
-
return this.send(command, optionsOrCb);
|
|
474
|
-
}
|
|
475
|
-
};
|
|
476
|
-
WAF.prototype.getByteMatchSet = function (args, optionsOrCb, cb) {
|
|
477
|
-
var command = new GetByteMatchSetCommand(args);
|
|
478
|
-
if (typeof optionsOrCb === "function") {
|
|
479
|
-
this.send(command, optionsOrCb);
|
|
480
|
-
}
|
|
481
|
-
else if (typeof cb === "function") {
|
|
482
|
-
if (typeof optionsOrCb !== "object")
|
|
483
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
484
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
485
|
-
}
|
|
486
|
-
else {
|
|
487
|
-
return this.send(command, optionsOrCb);
|
|
488
|
-
}
|
|
489
|
-
};
|
|
490
|
-
WAF.prototype.getChangeToken = function (args, optionsOrCb, cb) {
|
|
491
|
-
var command = new GetChangeTokenCommand(args);
|
|
492
|
-
if (typeof optionsOrCb === "function") {
|
|
493
|
-
this.send(command, optionsOrCb);
|
|
494
|
-
}
|
|
495
|
-
else if (typeof cb === "function") {
|
|
496
|
-
if (typeof optionsOrCb !== "object")
|
|
497
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
498
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
499
|
-
}
|
|
500
|
-
else {
|
|
501
|
-
return this.send(command, optionsOrCb);
|
|
502
|
-
}
|
|
503
|
-
};
|
|
504
|
-
WAF.prototype.getChangeTokenStatus = function (args, optionsOrCb, cb) {
|
|
505
|
-
var command = new GetChangeTokenStatusCommand(args);
|
|
506
|
-
if (typeof optionsOrCb === "function") {
|
|
507
|
-
this.send(command, optionsOrCb);
|
|
508
|
-
}
|
|
509
|
-
else if (typeof cb === "function") {
|
|
510
|
-
if (typeof optionsOrCb !== "object")
|
|
511
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
512
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
513
|
-
}
|
|
514
|
-
else {
|
|
515
|
-
return this.send(command, optionsOrCb);
|
|
516
|
-
}
|
|
517
|
-
};
|
|
518
|
-
WAF.prototype.getGeoMatchSet = function (args, optionsOrCb, cb) {
|
|
519
|
-
var command = new GetGeoMatchSetCommand(args);
|
|
520
|
-
if (typeof optionsOrCb === "function") {
|
|
521
|
-
this.send(command, optionsOrCb);
|
|
522
|
-
}
|
|
523
|
-
else if (typeof cb === "function") {
|
|
524
|
-
if (typeof optionsOrCb !== "object")
|
|
525
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
526
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
527
|
-
}
|
|
528
|
-
else {
|
|
529
|
-
return this.send(command, optionsOrCb);
|
|
530
|
-
}
|
|
531
|
-
};
|
|
532
|
-
WAF.prototype.getIPSet = function (args, optionsOrCb, cb) {
|
|
533
|
-
var command = new GetIPSetCommand(args);
|
|
534
|
-
if (typeof optionsOrCb === "function") {
|
|
535
|
-
this.send(command, optionsOrCb);
|
|
536
|
-
}
|
|
537
|
-
else if (typeof cb === "function") {
|
|
538
|
-
if (typeof optionsOrCb !== "object")
|
|
539
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
540
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
541
|
-
}
|
|
542
|
-
else {
|
|
543
|
-
return this.send(command, optionsOrCb);
|
|
544
|
-
}
|
|
545
|
-
};
|
|
546
|
-
WAF.prototype.getLoggingConfiguration = function (args, optionsOrCb, cb) {
|
|
547
|
-
var command = new GetLoggingConfigurationCommand(args);
|
|
548
|
-
if (typeof optionsOrCb === "function") {
|
|
549
|
-
this.send(command, optionsOrCb);
|
|
550
|
-
}
|
|
551
|
-
else if (typeof cb === "function") {
|
|
552
|
-
if (typeof optionsOrCb !== "object")
|
|
553
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
554
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
555
|
-
}
|
|
556
|
-
else {
|
|
557
|
-
return this.send(command, optionsOrCb);
|
|
558
|
-
}
|
|
559
|
-
};
|
|
560
|
-
WAF.prototype.getPermissionPolicy = function (args, optionsOrCb, cb) {
|
|
561
|
-
var command = new GetPermissionPolicyCommand(args);
|
|
562
|
-
if (typeof optionsOrCb === "function") {
|
|
563
|
-
this.send(command, optionsOrCb);
|
|
564
|
-
}
|
|
565
|
-
else if (typeof cb === "function") {
|
|
566
|
-
if (typeof optionsOrCb !== "object")
|
|
567
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
568
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
569
|
-
}
|
|
570
|
-
else {
|
|
571
|
-
return this.send(command, optionsOrCb);
|
|
572
|
-
}
|
|
573
|
-
};
|
|
574
|
-
WAF.prototype.getRateBasedRule = function (args, optionsOrCb, cb) {
|
|
575
|
-
var command = new GetRateBasedRuleCommand(args);
|
|
576
|
-
if (typeof optionsOrCb === "function") {
|
|
577
|
-
this.send(command, optionsOrCb);
|
|
578
|
-
}
|
|
579
|
-
else if (typeof cb === "function") {
|
|
580
|
-
if (typeof optionsOrCb !== "object")
|
|
581
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
582
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
583
|
-
}
|
|
584
|
-
else {
|
|
585
|
-
return this.send(command, optionsOrCb);
|
|
586
|
-
}
|
|
587
|
-
};
|
|
588
|
-
WAF.prototype.getRateBasedRuleManagedKeys = function (args, optionsOrCb, cb) {
|
|
589
|
-
var command = new GetRateBasedRuleManagedKeysCommand(args);
|
|
590
|
-
if (typeof optionsOrCb === "function") {
|
|
591
|
-
this.send(command, optionsOrCb);
|
|
592
|
-
}
|
|
593
|
-
else if (typeof cb === "function") {
|
|
594
|
-
if (typeof optionsOrCb !== "object")
|
|
595
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
596
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
597
|
-
}
|
|
598
|
-
else {
|
|
599
|
-
return this.send(command, optionsOrCb);
|
|
600
|
-
}
|
|
601
|
-
};
|
|
602
|
-
WAF.prototype.getRegexMatchSet = function (args, optionsOrCb, cb) {
|
|
603
|
-
var command = new GetRegexMatchSetCommand(args);
|
|
604
|
-
if (typeof optionsOrCb === "function") {
|
|
605
|
-
this.send(command, optionsOrCb);
|
|
606
|
-
}
|
|
607
|
-
else if (typeof cb === "function") {
|
|
608
|
-
if (typeof optionsOrCb !== "object")
|
|
609
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
610
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
611
|
-
}
|
|
612
|
-
else {
|
|
613
|
-
return this.send(command, optionsOrCb);
|
|
614
|
-
}
|
|
615
|
-
};
|
|
616
|
-
WAF.prototype.getRegexPatternSet = function (args, optionsOrCb, cb) {
|
|
617
|
-
var command = new GetRegexPatternSetCommand(args);
|
|
618
|
-
if (typeof optionsOrCb === "function") {
|
|
619
|
-
this.send(command, optionsOrCb);
|
|
620
|
-
}
|
|
621
|
-
else if (typeof cb === "function") {
|
|
622
|
-
if (typeof optionsOrCb !== "object")
|
|
623
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
624
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
625
|
-
}
|
|
626
|
-
else {
|
|
627
|
-
return this.send(command, optionsOrCb);
|
|
628
|
-
}
|
|
629
|
-
};
|
|
630
|
-
WAF.prototype.getRule = function (args, optionsOrCb, cb) {
|
|
631
|
-
var command = new GetRuleCommand(args);
|
|
632
|
-
if (typeof optionsOrCb === "function") {
|
|
633
|
-
this.send(command, optionsOrCb);
|
|
634
|
-
}
|
|
635
|
-
else if (typeof cb === "function") {
|
|
636
|
-
if (typeof optionsOrCb !== "object")
|
|
637
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
638
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
639
|
-
}
|
|
640
|
-
else {
|
|
641
|
-
return this.send(command, optionsOrCb);
|
|
642
|
-
}
|
|
643
|
-
};
|
|
644
|
-
WAF.prototype.getRuleGroup = function (args, optionsOrCb, cb) {
|
|
645
|
-
var command = new GetRuleGroupCommand(args);
|
|
646
|
-
if (typeof optionsOrCb === "function") {
|
|
647
|
-
this.send(command, optionsOrCb);
|
|
648
|
-
}
|
|
649
|
-
else if (typeof cb === "function") {
|
|
650
|
-
if (typeof optionsOrCb !== "object")
|
|
651
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
652
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
653
|
-
}
|
|
654
|
-
else {
|
|
655
|
-
return this.send(command, optionsOrCb);
|
|
656
|
-
}
|
|
657
|
-
};
|
|
658
|
-
WAF.prototype.getSampledRequests = function (args, optionsOrCb, cb) {
|
|
659
|
-
var command = new GetSampledRequestsCommand(args);
|
|
660
|
-
if (typeof optionsOrCb === "function") {
|
|
661
|
-
this.send(command, optionsOrCb);
|
|
662
|
-
}
|
|
663
|
-
else if (typeof cb === "function") {
|
|
664
|
-
if (typeof optionsOrCb !== "object")
|
|
665
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
666
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
667
|
-
}
|
|
668
|
-
else {
|
|
669
|
-
return this.send(command, optionsOrCb);
|
|
670
|
-
}
|
|
671
|
-
};
|
|
672
|
-
WAF.prototype.getSizeConstraintSet = function (args, optionsOrCb, cb) {
|
|
673
|
-
var command = new GetSizeConstraintSetCommand(args);
|
|
674
|
-
if (typeof optionsOrCb === "function") {
|
|
675
|
-
this.send(command, optionsOrCb);
|
|
676
|
-
}
|
|
677
|
-
else if (typeof cb === "function") {
|
|
678
|
-
if (typeof optionsOrCb !== "object")
|
|
679
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
680
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
681
|
-
}
|
|
682
|
-
else {
|
|
683
|
-
return this.send(command, optionsOrCb);
|
|
684
|
-
}
|
|
685
|
-
};
|
|
686
|
-
WAF.prototype.getSqlInjectionMatchSet = function (args, optionsOrCb, cb) {
|
|
687
|
-
var command = new GetSqlInjectionMatchSetCommand(args);
|
|
688
|
-
if (typeof optionsOrCb === "function") {
|
|
689
|
-
this.send(command, optionsOrCb);
|
|
690
|
-
}
|
|
691
|
-
else if (typeof cb === "function") {
|
|
692
|
-
if (typeof optionsOrCb !== "object")
|
|
693
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
694
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
695
|
-
}
|
|
696
|
-
else {
|
|
697
|
-
return this.send(command, optionsOrCb);
|
|
698
|
-
}
|
|
699
|
-
};
|
|
700
|
-
WAF.prototype.getWebACL = function (args, optionsOrCb, cb) {
|
|
701
|
-
var command = new GetWebACLCommand(args);
|
|
702
|
-
if (typeof optionsOrCb === "function") {
|
|
703
|
-
this.send(command, optionsOrCb);
|
|
704
|
-
}
|
|
705
|
-
else if (typeof cb === "function") {
|
|
706
|
-
if (typeof optionsOrCb !== "object")
|
|
707
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
708
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
709
|
-
}
|
|
710
|
-
else {
|
|
711
|
-
return this.send(command, optionsOrCb);
|
|
712
|
-
}
|
|
713
|
-
};
|
|
714
|
-
WAF.prototype.getXssMatchSet = function (args, optionsOrCb, cb) {
|
|
715
|
-
var command = new GetXssMatchSetCommand(args);
|
|
716
|
-
if (typeof optionsOrCb === "function") {
|
|
717
|
-
this.send(command, optionsOrCb);
|
|
718
|
-
}
|
|
719
|
-
else if (typeof cb === "function") {
|
|
720
|
-
if (typeof optionsOrCb !== "object")
|
|
721
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
722
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
723
|
-
}
|
|
724
|
-
else {
|
|
725
|
-
return this.send(command, optionsOrCb);
|
|
726
|
-
}
|
|
727
|
-
};
|
|
728
|
-
WAF.prototype.listActivatedRulesInRuleGroup = function (args, optionsOrCb, cb) {
|
|
729
|
-
var command = new ListActivatedRulesInRuleGroupCommand(args);
|
|
730
|
-
if (typeof optionsOrCb === "function") {
|
|
731
|
-
this.send(command, optionsOrCb);
|
|
732
|
-
}
|
|
733
|
-
else if (typeof cb === "function") {
|
|
734
|
-
if (typeof optionsOrCb !== "object")
|
|
735
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
736
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
737
|
-
}
|
|
738
|
-
else {
|
|
739
|
-
return this.send(command, optionsOrCb);
|
|
740
|
-
}
|
|
741
|
-
};
|
|
742
|
-
WAF.prototype.listByteMatchSets = function (args, optionsOrCb, cb) {
|
|
743
|
-
var command = new ListByteMatchSetsCommand(args);
|
|
744
|
-
if (typeof optionsOrCb === "function") {
|
|
745
|
-
this.send(command, optionsOrCb);
|
|
746
|
-
}
|
|
747
|
-
else if (typeof cb === "function") {
|
|
748
|
-
if (typeof optionsOrCb !== "object")
|
|
749
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
750
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
751
|
-
}
|
|
752
|
-
else {
|
|
753
|
-
return this.send(command, optionsOrCb);
|
|
754
|
-
}
|
|
755
|
-
};
|
|
756
|
-
WAF.prototype.listGeoMatchSets = function (args, optionsOrCb, cb) {
|
|
757
|
-
var command = new ListGeoMatchSetsCommand(args);
|
|
758
|
-
if (typeof optionsOrCb === "function") {
|
|
759
|
-
this.send(command, optionsOrCb);
|
|
760
|
-
}
|
|
761
|
-
else if (typeof cb === "function") {
|
|
762
|
-
if (typeof optionsOrCb !== "object")
|
|
763
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
764
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
765
|
-
}
|
|
766
|
-
else {
|
|
767
|
-
return this.send(command, optionsOrCb);
|
|
768
|
-
}
|
|
769
|
-
};
|
|
770
|
-
WAF.prototype.listIPSets = function (args, optionsOrCb, cb) {
|
|
771
|
-
var command = new ListIPSetsCommand(args);
|
|
772
|
-
if (typeof optionsOrCb === "function") {
|
|
773
|
-
this.send(command, optionsOrCb);
|
|
774
|
-
}
|
|
775
|
-
else if (typeof cb === "function") {
|
|
776
|
-
if (typeof optionsOrCb !== "object")
|
|
777
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
778
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
779
|
-
}
|
|
780
|
-
else {
|
|
781
|
-
return this.send(command, optionsOrCb);
|
|
782
|
-
}
|
|
783
|
-
};
|
|
784
|
-
WAF.prototype.listLoggingConfigurations = function (args, optionsOrCb, cb) {
|
|
785
|
-
var command = new ListLoggingConfigurationsCommand(args);
|
|
786
|
-
if (typeof optionsOrCb === "function") {
|
|
787
|
-
this.send(command, optionsOrCb);
|
|
788
|
-
}
|
|
789
|
-
else if (typeof cb === "function") {
|
|
790
|
-
if (typeof optionsOrCb !== "object")
|
|
791
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
792
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
793
|
-
}
|
|
794
|
-
else {
|
|
795
|
-
return this.send(command, optionsOrCb);
|
|
796
|
-
}
|
|
797
|
-
};
|
|
798
|
-
WAF.prototype.listRateBasedRules = function (args, optionsOrCb, cb) {
|
|
799
|
-
var command = new ListRateBasedRulesCommand(args);
|
|
800
|
-
if (typeof optionsOrCb === "function") {
|
|
801
|
-
this.send(command, optionsOrCb);
|
|
802
|
-
}
|
|
803
|
-
else if (typeof cb === "function") {
|
|
804
|
-
if (typeof optionsOrCb !== "object")
|
|
805
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
806
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
807
|
-
}
|
|
808
|
-
else {
|
|
809
|
-
return this.send(command, optionsOrCb);
|
|
810
|
-
}
|
|
811
|
-
};
|
|
812
|
-
WAF.prototype.listRegexMatchSets = function (args, optionsOrCb, cb) {
|
|
813
|
-
var command = new ListRegexMatchSetsCommand(args);
|
|
814
|
-
if (typeof optionsOrCb === "function") {
|
|
815
|
-
this.send(command, optionsOrCb);
|
|
816
|
-
}
|
|
817
|
-
else if (typeof cb === "function") {
|
|
818
|
-
if (typeof optionsOrCb !== "object")
|
|
819
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
820
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
821
|
-
}
|
|
822
|
-
else {
|
|
823
|
-
return this.send(command, optionsOrCb);
|
|
824
|
-
}
|
|
825
|
-
};
|
|
826
|
-
WAF.prototype.listRegexPatternSets = function (args, optionsOrCb, cb) {
|
|
827
|
-
var command = new ListRegexPatternSetsCommand(args);
|
|
828
|
-
if (typeof optionsOrCb === "function") {
|
|
829
|
-
this.send(command, optionsOrCb);
|
|
830
|
-
}
|
|
831
|
-
else if (typeof cb === "function") {
|
|
832
|
-
if (typeof optionsOrCb !== "object")
|
|
833
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
834
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
835
|
-
}
|
|
836
|
-
else {
|
|
837
|
-
return this.send(command, optionsOrCb);
|
|
838
|
-
}
|
|
839
|
-
};
|
|
840
|
-
WAF.prototype.listRuleGroups = function (args, optionsOrCb, cb) {
|
|
841
|
-
var command = new ListRuleGroupsCommand(args);
|
|
842
|
-
if (typeof optionsOrCb === "function") {
|
|
843
|
-
this.send(command, optionsOrCb);
|
|
844
|
-
}
|
|
845
|
-
else if (typeof cb === "function") {
|
|
846
|
-
if (typeof optionsOrCb !== "object")
|
|
847
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
848
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
849
|
-
}
|
|
850
|
-
else {
|
|
851
|
-
return this.send(command, optionsOrCb);
|
|
852
|
-
}
|
|
853
|
-
};
|
|
854
|
-
WAF.prototype.listRules = function (args, optionsOrCb, cb) {
|
|
855
|
-
var command = new ListRulesCommand(args);
|
|
856
|
-
if (typeof optionsOrCb === "function") {
|
|
857
|
-
this.send(command, optionsOrCb);
|
|
858
|
-
}
|
|
859
|
-
else if (typeof cb === "function") {
|
|
860
|
-
if (typeof optionsOrCb !== "object")
|
|
861
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
862
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
863
|
-
}
|
|
864
|
-
else {
|
|
865
|
-
return this.send(command, optionsOrCb);
|
|
866
|
-
}
|
|
867
|
-
};
|
|
868
|
-
WAF.prototype.listSizeConstraintSets = function (args, optionsOrCb, cb) {
|
|
869
|
-
var command = new ListSizeConstraintSetsCommand(args);
|
|
870
|
-
if (typeof optionsOrCb === "function") {
|
|
871
|
-
this.send(command, optionsOrCb);
|
|
872
|
-
}
|
|
873
|
-
else if (typeof cb === "function") {
|
|
874
|
-
if (typeof optionsOrCb !== "object")
|
|
875
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
876
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
877
|
-
}
|
|
878
|
-
else {
|
|
879
|
-
return this.send(command, optionsOrCb);
|
|
880
|
-
}
|
|
881
|
-
};
|
|
882
|
-
WAF.prototype.listSqlInjectionMatchSets = function (args, optionsOrCb, cb) {
|
|
883
|
-
var command = new ListSqlInjectionMatchSetsCommand(args);
|
|
884
|
-
if (typeof optionsOrCb === "function") {
|
|
885
|
-
this.send(command, optionsOrCb);
|
|
886
|
-
}
|
|
887
|
-
else if (typeof cb === "function") {
|
|
888
|
-
if (typeof optionsOrCb !== "object")
|
|
889
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
890
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
891
|
-
}
|
|
892
|
-
else {
|
|
893
|
-
return this.send(command, optionsOrCb);
|
|
894
|
-
}
|
|
895
|
-
};
|
|
896
|
-
WAF.prototype.listSubscribedRuleGroups = function (args, optionsOrCb, cb) {
|
|
897
|
-
var command = new ListSubscribedRuleGroupsCommand(args);
|
|
898
|
-
if (typeof optionsOrCb === "function") {
|
|
899
|
-
this.send(command, optionsOrCb);
|
|
900
|
-
}
|
|
901
|
-
else if (typeof cb === "function") {
|
|
902
|
-
if (typeof optionsOrCb !== "object")
|
|
903
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
904
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
905
|
-
}
|
|
906
|
-
else {
|
|
907
|
-
return this.send(command, optionsOrCb);
|
|
908
|
-
}
|
|
909
|
-
};
|
|
910
|
-
WAF.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
|
|
911
|
-
var command = new ListTagsForResourceCommand(args);
|
|
912
|
-
if (typeof optionsOrCb === "function") {
|
|
913
|
-
this.send(command, optionsOrCb);
|
|
914
|
-
}
|
|
915
|
-
else if (typeof cb === "function") {
|
|
916
|
-
if (typeof optionsOrCb !== "object")
|
|
917
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
918
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
919
|
-
}
|
|
920
|
-
else {
|
|
921
|
-
return this.send(command, optionsOrCb);
|
|
922
|
-
}
|
|
923
|
-
};
|
|
924
|
-
WAF.prototype.listWebACLs = function (args, optionsOrCb, cb) {
|
|
925
|
-
var command = new ListWebACLsCommand(args);
|
|
926
|
-
if (typeof optionsOrCb === "function") {
|
|
927
|
-
this.send(command, optionsOrCb);
|
|
928
|
-
}
|
|
929
|
-
else if (typeof cb === "function") {
|
|
930
|
-
if (typeof optionsOrCb !== "object")
|
|
931
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
932
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
933
|
-
}
|
|
934
|
-
else {
|
|
935
|
-
return this.send(command, optionsOrCb);
|
|
936
|
-
}
|
|
937
|
-
};
|
|
938
|
-
WAF.prototype.listXssMatchSets = function (args, optionsOrCb, cb) {
|
|
939
|
-
var command = new ListXssMatchSetsCommand(args);
|
|
940
|
-
if (typeof optionsOrCb === "function") {
|
|
941
|
-
this.send(command, optionsOrCb);
|
|
942
|
-
}
|
|
943
|
-
else if (typeof cb === "function") {
|
|
944
|
-
if (typeof optionsOrCb !== "object")
|
|
945
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
946
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
947
|
-
}
|
|
948
|
-
else {
|
|
949
|
-
return this.send(command, optionsOrCb);
|
|
950
|
-
}
|
|
951
|
-
};
|
|
952
|
-
WAF.prototype.putLoggingConfiguration = function (args, optionsOrCb, cb) {
|
|
953
|
-
var command = new PutLoggingConfigurationCommand(args);
|
|
954
|
-
if (typeof optionsOrCb === "function") {
|
|
955
|
-
this.send(command, optionsOrCb);
|
|
956
|
-
}
|
|
957
|
-
else if (typeof cb === "function") {
|
|
958
|
-
if (typeof optionsOrCb !== "object")
|
|
959
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
960
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
961
|
-
}
|
|
962
|
-
else {
|
|
963
|
-
return this.send(command, optionsOrCb);
|
|
964
|
-
}
|
|
965
|
-
};
|
|
966
|
-
WAF.prototype.putPermissionPolicy = function (args, optionsOrCb, cb) {
|
|
967
|
-
var command = new PutPermissionPolicyCommand(args);
|
|
968
|
-
if (typeof optionsOrCb === "function") {
|
|
969
|
-
this.send(command, optionsOrCb);
|
|
970
|
-
}
|
|
971
|
-
else if (typeof cb === "function") {
|
|
972
|
-
if (typeof optionsOrCb !== "object")
|
|
973
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
974
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
975
|
-
}
|
|
976
|
-
else {
|
|
977
|
-
return this.send(command, optionsOrCb);
|
|
978
|
-
}
|
|
979
|
-
};
|
|
980
|
-
WAF.prototype.tagResource = function (args, optionsOrCb, cb) {
|
|
981
|
-
var command = new TagResourceCommand(args);
|
|
982
|
-
if (typeof optionsOrCb === "function") {
|
|
983
|
-
this.send(command, optionsOrCb);
|
|
984
|
-
}
|
|
985
|
-
else if (typeof cb === "function") {
|
|
986
|
-
if (typeof optionsOrCb !== "object")
|
|
987
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
988
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
989
|
-
}
|
|
990
|
-
else {
|
|
991
|
-
return this.send(command, optionsOrCb);
|
|
992
|
-
}
|
|
993
|
-
};
|
|
994
|
-
WAF.prototype.untagResource = function (args, optionsOrCb, cb) {
|
|
995
|
-
var command = new UntagResourceCommand(args);
|
|
996
|
-
if (typeof optionsOrCb === "function") {
|
|
997
|
-
this.send(command, optionsOrCb);
|
|
998
|
-
}
|
|
999
|
-
else if (typeof cb === "function") {
|
|
1000
|
-
if (typeof optionsOrCb !== "object")
|
|
1001
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1002
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1003
|
-
}
|
|
1004
|
-
else {
|
|
1005
|
-
return this.send(command, optionsOrCb);
|
|
1006
|
-
}
|
|
1007
|
-
};
|
|
1008
|
-
WAF.prototype.updateByteMatchSet = function (args, optionsOrCb, cb) {
|
|
1009
|
-
var command = new UpdateByteMatchSetCommand(args);
|
|
1010
|
-
if (typeof optionsOrCb === "function") {
|
|
1011
|
-
this.send(command, optionsOrCb);
|
|
1012
|
-
}
|
|
1013
|
-
else if (typeof cb === "function") {
|
|
1014
|
-
if (typeof optionsOrCb !== "object")
|
|
1015
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1016
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1017
|
-
}
|
|
1018
|
-
else {
|
|
1019
|
-
return this.send(command, optionsOrCb);
|
|
1020
|
-
}
|
|
1021
|
-
};
|
|
1022
|
-
WAF.prototype.updateGeoMatchSet = function (args, optionsOrCb, cb) {
|
|
1023
|
-
var command = new UpdateGeoMatchSetCommand(args);
|
|
1024
|
-
if (typeof optionsOrCb === "function") {
|
|
1025
|
-
this.send(command, optionsOrCb);
|
|
1026
|
-
}
|
|
1027
|
-
else if (typeof cb === "function") {
|
|
1028
|
-
if (typeof optionsOrCb !== "object")
|
|
1029
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1030
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1031
|
-
}
|
|
1032
|
-
else {
|
|
1033
|
-
return this.send(command, optionsOrCb);
|
|
1034
|
-
}
|
|
1035
|
-
};
|
|
1036
|
-
WAF.prototype.updateIPSet = function (args, optionsOrCb, cb) {
|
|
1037
|
-
var command = new UpdateIPSetCommand(args);
|
|
1038
|
-
if (typeof optionsOrCb === "function") {
|
|
1039
|
-
this.send(command, optionsOrCb);
|
|
1040
|
-
}
|
|
1041
|
-
else if (typeof cb === "function") {
|
|
1042
|
-
if (typeof optionsOrCb !== "object")
|
|
1043
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1044
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1045
|
-
}
|
|
1046
|
-
else {
|
|
1047
|
-
return this.send(command, optionsOrCb);
|
|
1048
|
-
}
|
|
1049
|
-
};
|
|
1050
|
-
WAF.prototype.updateRateBasedRule = function (args, optionsOrCb, cb) {
|
|
1051
|
-
var command = new UpdateRateBasedRuleCommand(args);
|
|
1052
|
-
if (typeof optionsOrCb === "function") {
|
|
1053
|
-
this.send(command, optionsOrCb);
|
|
1054
|
-
}
|
|
1055
|
-
else if (typeof cb === "function") {
|
|
1056
|
-
if (typeof optionsOrCb !== "object")
|
|
1057
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1058
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1059
|
-
}
|
|
1060
|
-
else {
|
|
1061
|
-
return this.send(command, optionsOrCb);
|
|
1062
|
-
}
|
|
1063
|
-
};
|
|
1064
|
-
WAF.prototype.updateRegexMatchSet = function (args, optionsOrCb, cb) {
|
|
1065
|
-
var command = new UpdateRegexMatchSetCommand(args);
|
|
1066
|
-
if (typeof optionsOrCb === "function") {
|
|
1067
|
-
this.send(command, optionsOrCb);
|
|
1068
|
-
}
|
|
1069
|
-
else if (typeof cb === "function") {
|
|
1070
|
-
if (typeof optionsOrCb !== "object")
|
|
1071
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1072
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1073
|
-
}
|
|
1074
|
-
else {
|
|
1075
|
-
return this.send(command, optionsOrCb);
|
|
1076
|
-
}
|
|
1077
|
-
};
|
|
1078
|
-
WAF.prototype.updateRegexPatternSet = function (args, optionsOrCb, cb) {
|
|
1079
|
-
var command = new UpdateRegexPatternSetCommand(args);
|
|
1080
|
-
if (typeof optionsOrCb === "function") {
|
|
1081
|
-
this.send(command, optionsOrCb);
|
|
1082
|
-
}
|
|
1083
|
-
else if (typeof cb === "function") {
|
|
1084
|
-
if (typeof optionsOrCb !== "object")
|
|
1085
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1086
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1087
|
-
}
|
|
1088
|
-
else {
|
|
1089
|
-
return this.send(command, optionsOrCb);
|
|
1090
|
-
}
|
|
1091
|
-
};
|
|
1092
|
-
WAF.prototype.updateRule = function (args, optionsOrCb, cb) {
|
|
1093
|
-
var command = new UpdateRuleCommand(args);
|
|
1094
|
-
if (typeof optionsOrCb === "function") {
|
|
1095
|
-
this.send(command, optionsOrCb);
|
|
1096
|
-
}
|
|
1097
|
-
else if (typeof cb === "function") {
|
|
1098
|
-
if (typeof optionsOrCb !== "object")
|
|
1099
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1100
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1101
|
-
}
|
|
1102
|
-
else {
|
|
1103
|
-
return this.send(command, optionsOrCb);
|
|
1104
|
-
}
|
|
1105
|
-
};
|
|
1106
|
-
WAF.prototype.updateRuleGroup = function (args, optionsOrCb, cb) {
|
|
1107
|
-
var command = new UpdateRuleGroupCommand(args);
|
|
1108
|
-
if (typeof optionsOrCb === "function") {
|
|
1109
|
-
this.send(command, optionsOrCb);
|
|
1110
|
-
}
|
|
1111
|
-
else if (typeof cb === "function") {
|
|
1112
|
-
if (typeof optionsOrCb !== "object")
|
|
1113
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1114
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1115
|
-
}
|
|
1116
|
-
else {
|
|
1117
|
-
return this.send(command, optionsOrCb);
|
|
1118
|
-
}
|
|
1119
|
-
};
|
|
1120
|
-
WAF.prototype.updateSizeConstraintSet = function (args, optionsOrCb, cb) {
|
|
1121
|
-
var command = new UpdateSizeConstraintSetCommand(args);
|
|
1122
|
-
if (typeof optionsOrCb === "function") {
|
|
1123
|
-
this.send(command, optionsOrCb);
|
|
1124
|
-
}
|
|
1125
|
-
else if (typeof cb === "function") {
|
|
1126
|
-
if (typeof optionsOrCb !== "object")
|
|
1127
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1128
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1129
|
-
}
|
|
1130
|
-
else {
|
|
1131
|
-
return this.send(command, optionsOrCb);
|
|
1132
|
-
}
|
|
1133
|
-
};
|
|
1134
|
-
WAF.prototype.updateSqlInjectionMatchSet = function (args, optionsOrCb, cb) {
|
|
1135
|
-
var command = new UpdateSqlInjectionMatchSetCommand(args);
|
|
1136
|
-
if (typeof optionsOrCb === "function") {
|
|
1137
|
-
this.send(command, optionsOrCb);
|
|
1138
|
-
}
|
|
1139
|
-
else if (typeof cb === "function") {
|
|
1140
|
-
if (typeof optionsOrCb !== "object")
|
|
1141
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1142
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1143
|
-
}
|
|
1144
|
-
else {
|
|
1145
|
-
return this.send(command, optionsOrCb);
|
|
1146
|
-
}
|
|
1147
|
-
};
|
|
1148
|
-
WAF.prototype.updateWebACL = function (args, optionsOrCb, cb) {
|
|
1149
|
-
var command = new UpdateWebACLCommand(args);
|
|
1150
|
-
if (typeof optionsOrCb === "function") {
|
|
1151
|
-
this.send(command, optionsOrCb);
|
|
1152
|
-
}
|
|
1153
|
-
else if (typeof cb === "function") {
|
|
1154
|
-
if (typeof optionsOrCb !== "object")
|
|
1155
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1156
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1157
|
-
}
|
|
1158
|
-
else {
|
|
1159
|
-
return this.send(command, optionsOrCb);
|
|
1160
|
-
}
|
|
1161
|
-
};
|
|
1162
|
-
WAF.prototype.updateXssMatchSet = function (args, optionsOrCb, cb) {
|
|
1163
|
-
var command = new UpdateXssMatchSetCommand(args);
|
|
1164
|
-
if (typeof optionsOrCb === "function") {
|
|
1165
|
-
this.send(command, optionsOrCb);
|
|
1166
|
-
}
|
|
1167
|
-
else if (typeof cb === "function") {
|
|
1168
|
-
if (typeof optionsOrCb !== "object")
|
|
1169
|
-
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
1170
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1171
|
-
}
|
|
1172
|
-
else {
|
|
1173
|
-
return this.send(command, optionsOrCb);
|
|
1174
|
-
}
|
|
1175
|
-
};
|
|
1176
|
-
return WAF;
|
|
1177
|
-
}(WAFClient));
|
|
1178
|
-
export { WAF };
|
|
1179
|
-
//# sourceMappingURL=WAF.js.map
|