@aws-sdk/client-waf 3.32.0 → 3.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +44 -0
- package/dist-cjs/WAF.js +1175 -0
- package/dist-cjs/WAFClient.js +53 -0
- package/dist-cjs/commands/CreateByteMatchSetCommand.js +91 -0
- package/dist-cjs/commands/CreateGeoMatchSetCommand.js +88 -0
- package/dist-cjs/commands/CreateIPSetCommand.js +93 -0
- package/dist-cjs/commands/CreateRateBasedRuleCommand.js +153 -0
- package/dist-cjs/commands/CreateRegexMatchSetCommand.js +91 -0
- package/dist-cjs/commands/CreateRegexPatternSetCommand.js +87 -0
- package/dist-cjs/commands/CreateRuleCommand.js +111 -0
- package/dist-cjs/commands/CreateRuleGroupCommand.js +82 -0
- package/dist-cjs/commands/CreateSizeConstraintSetCommand.js +91 -0
- package/dist-cjs/commands/CreateSqlInjectionMatchSetCommand.js +89 -0
- package/dist-cjs/commands/CreateWebACLCommand.js +99 -0
- package/dist-cjs/commands/CreateWebACLMigrationStackCommand.js +67 -0
- package/dist-cjs/commands/CreateXssMatchSetCommand.js +89 -0
- package/dist-cjs/commands/DeleteByteMatchSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteGeoMatchSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteIPSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +69 -0
- package/dist-cjs/commands/DeletePermissionPolicyCommand.js +69 -0
- package/dist-cjs/commands/DeleteRateBasedRuleCommand.js +87 -0
- package/dist-cjs/commands/DeleteRegexMatchSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteRegexPatternSetCommand.js +69 -0
- package/dist-cjs/commands/DeleteRuleCommand.js +83 -0
- package/dist-cjs/commands/DeleteRuleGroupCommand.js +83 -0
- package/dist-cjs/commands/DeleteSizeConstraintSetCommand.js +83 -0
- package/dist-cjs/commands/DeleteSqlInjectionMatchSetCommand.js +84 -0
- package/dist-cjs/commands/DeleteWebACLCommand.js +81 -0
- package/dist-cjs/commands/DeleteXssMatchSetCommand.js +84 -0
- package/dist-cjs/commands/GetByteMatchSetCommand.js +68 -0
- package/dist-cjs/commands/GetChangeTokenCommand.js +74 -0
- package/dist-cjs/commands/GetChangeTokenStatusCommand.js +84 -0
- package/dist-cjs/commands/GetGeoMatchSetCommand.js +68 -0
- package/dist-cjs/commands/GetIPSetCommand.js +68 -0
- package/dist-cjs/commands/GetLoggingConfigurationCommand.js +68 -0
- package/dist-cjs/commands/GetPermissionPolicyCommand.js +68 -0
- package/dist-cjs/commands/GetRateBasedRuleCommand.js +70 -0
- package/dist-cjs/commands/GetRateBasedRuleManagedKeysCommand.js +70 -0
- package/dist-cjs/commands/GetRegexMatchSetCommand.js +68 -0
- package/dist-cjs/commands/GetRegexPatternSetCommand.js +68 -0
- package/dist-cjs/commands/GetRuleCommand.js +68 -0
- package/dist-cjs/commands/GetRuleGroupCommand.js +69 -0
- package/dist-cjs/commands/GetSampledRequestsCommand.js +72 -0
- package/dist-cjs/commands/GetSizeConstraintSetCommand.js +68 -0
- package/dist-cjs/commands/GetSqlInjectionMatchSetCommand.js +68 -0
- package/dist-cjs/commands/GetWebACLCommand.js +68 -0
- package/dist-cjs/commands/GetXssMatchSetCommand.js +68 -0
- package/dist-cjs/commands/ListActivatedRulesInRuleGroupCommand.js +68 -0
- package/dist-cjs/commands/ListByteMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/ListGeoMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/ListIPSetsCommand.js +68 -0
- package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +68 -0
- package/dist-cjs/commands/ListRateBasedRulesCommand.js +68 -0
- package/dist-cjs/commands/ListRegexMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/ListRegexPatternSetsCommand.js +68 -0
- package/dist-cjs/commands/ListRuleGroupsCommand.js +68 -0
- package/dist-cjs/commands/ListRulesCommand.js +68 -0
- package/dist-cjs/commands/ListSizeConstraintSetsCommand.js +68 -0
- package/dist-cjs/commands/ListSqlInjectionMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/ListSubscribedRuleGroupsCommand.js +68 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +69 -0
- package/dist-cjs/commands/ListWebACLsCommand.js +68 -0
- package/dist-cjs/commands/ListXssMatchSetsCommand.js +68 -0
- package/dist-cjs/commands/PutLoggingConfigurationCommand.js +85 -0
- package/dist-cjs/commands/PutPermissionPolicyCommand.js +100 -0
- package/dist-cjs/commands/TagResourceCommand.js +69 -0
- package/dist-cjs/commands/UntagResourceCommand.js +68 -0
- package/dist-cjs/commands/UpdateByteMatchSetCommand.js +106 -0
- package/dist-cjs/commands/UpdateGeoMatchSetCommand.js +98 -0
- package/dist-cjs/commands/UpdateIPSetCommand.js +133 -0
- package/dist-cjs/commands/UpdateRateBasedRuleCommand.js +114 -0
- package/dist-cjs/commands/UpdateRegexMatchSetCommand.js +102 -0
- package/dist-cjs/commands/UpdateRegexPatternSetCommand.js +107 -0
- package/dist-cjs/commands/UpdateRuleCommand.js +109 -0
- package/dist-cjs/commands/UpdateRuleGroupCommand.js +92 -0
- package/dist-cjs/commands/UpdateSizeConstraintSetCommand.js +110 -0
- package/dist-cjs/commands/UpdateSqlInjectionMatchSetCommand.js +109 -0
- package/dist-cjs/commands/UpdateWebACLCommand.js +139 -0
- package/dist-cjs/commands/UpdateXssMatchSetCommand.js +111 -0
- package/dist-cjs/endpoints.js +67 -0
- package/dist-cjs/index.js +83 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +2436 -0
- package/dist-cjs/protocols/Aws_json1_1.js +9199 -0
- package/dist-cjs/runtimeConfig.browser.js +41 -0
- package/dist-cjs/runtimeConfig.js +46 -0
- package/dist-cjs/runtimeConfig.native.js +19 -0
- package/dist-cjs/runtimeConfig.shared.js +20 -0
- package/dist-es/WAF.js +1165 -0
- package/dist-es/WAFClient.js +37 -0
- package/dist-es/commands/CreateByteMatchSetCommand.js +39 -0
- package/dist-es/commands/CreateGeoMatchSetCommand.js +39 -0
- package/dist-es/commands/CreateIPSetCommand.js +39 -0
- package/dist-es/commands/CreateRateBasedRuleCommand.js +39 -0
- package/dist-es/commands/CreateRegexMatchSetCommand.js +39 -0
- package/dist-es/commands/CreateRegexPatternSetCommand.js +39 -0
- package/dist-es/commands/CreateRuleCommand.js +39 -0
- package/dist-es/commands/CreateRuleGroupCommand.js +39 -0
- package/dist-es/commands/CreateSizeConstraintSetCommand.js +39 -0
- package/dist-es/commands/CreateSqlInjectionMatchSetCommand.js +39 -0
- package/dist-es/commands/CreateWebACLCommand.js +39 -0
- package/dist-es/commands/CreateWebACLMigrationStackCommand.js +39 -0
- package/dist-es/commands/CreateXssMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteByteMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteGeoMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteIPSetCommand.js +39 -0
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +39 -0
- package/dist-es/commands/DeletePermissionPolicyCommand.js +39 -0
- package/dist-es/commands/DeleteRateBasedRuleCommand.js +39 -0
- package/dist-es/commands/DeleteRegexMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteRegexPatternSetCommand.js +39 -0
- package/dist-es/commands/DeleteRuleCommand.js +39 -0
- package/dist-es/commands/DeleteRuleGroupCommand.js +39 -0
- package/dist-es/commands/DeleteSizeConstraintSetCommand.js +39 -0
- package/dist-es/commands/DeleteSqlInjectionMatchSetCommand.js +39 -0
- package/dist-es/commands/DeleteWebACLCommand.js +39 -0
- package/dist-es/commands/DeleteXssMatchSetCommand.js +39 -0
- package/dist-es/commands/GetByteMatchSetCommand.js +39 -0
- package/dist-es/commands/GetChangeTokenCommand.js +39 -0
- package/dist-es/commands/GetChangeTokenStatusCommand.js +39 -0
- package/dist-es/commands/GetGeoMatchSetCommand.js +39 -0
- package/dist-es/commands/GetIPSetCommand.js +39 -0
- package/dist-es/commands/GetLoggingConfigurationCommand.js +39 -0
- package/dist-es/commands/GetPermissionPolicyCommand.js +39 -0
- package/dist-es/commands/GetRateBasedRuleCommand.js +39 -0
- package/dist-es/commands/GetRateBasedRuleManagedKeysCommand.js +39 -0
- package/dist-es/commands/GetRegexMatchSetCommand.js +39 -0
- package/dist-es/commands/GetRegexPatternSetCommand.js +39 -0
- package/dist-es/commands/GetRuleCommand.js +39 -0
- package/dist-es/commands/GetRuleGroupCommand.js +39 -0
- package/dist-es/commands/GetSampledRequestsCommand.js +39 -0
- package/dist-es/commands/GetSizeConstraintSetCommand.js +39 -0
- package/dist-es/commands/GetSqlInjectionMatchSetCommand.js +39 -0
- package/dist-es/commands/GetWebACLCommand.js +39 -0
- package/dist-es/commands/GetXssMatchSetCommand.js +39 -0
- package/dist-es/commands/ListActivatedRulesInRuleGroupCommand.js +39 -0
- package/dist-es/commands/ListByteMatchSetsCommand.js +39 -0
- package/dist-es/commands/ListGeoMatchSetsCommand.js +39 -0
- package/dist-es/commands/ListIPSetsCommand.js +39 -0
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +39 -0
- package/dist-es/commands/ListRateBasedRulesCommand.js +39 -0
- package/dist-es/commands/ListRegexMatchSetsCommand.js +39 -0
- package/dist-es/commands/ListRegexPatternSetsCommand.js +39 -0
- package/dist-es/commands/ListRuleGroupsCommand.js +39 -0
- package/dist-es/commands/ListRulesCommand.js +39 -0
- package/dist-es/commands/ListSizeConstraintSetsCommand.js +39 -0
- package/dist-es/commands/ListSqlInjectionMatchSetsCommand.js +39 -0
- package/dist-es/commands/ListSubscribedRuleGroupsCommand.js +39 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/ListWebACLsCommand.js +39 -0
- package/dist-es/commands/ListXssMatchSetsCommand.js +39 -0
- package/dist-es/commands/PutLoggingConfigurationCommand.js +39 -0
- package/dist-es/commands/PutPermissionPolicyCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/UpdateByteMatchSetCommand.js +39 -0
- package/dist-es/commands/UpdateGeoMatchSetCommand.js +39 -0
- package/dist-es/commands/UpdateIPSetCommand.js +39 -0
- package/dist-es/commands/UpdateRateBasedRuleCommand.js +39 -0
- package/dist-es/commands/UpdateRegexMatchSetCommand.js +39 -0
- package/dist-es/commands/UpdateRegexPatternSetCommand.js +39 -0
- package/dist-es/commands/UpdateRuleCommand.js +39 -0
- package/dist-es/commands/UpdateRuleGroupCommand.js +39 -0
- package/dist-es/commands/UpdateSizeConstraintSetCommand.js +39 -0
- package/dist-es/commands/UpdateSqlInjectionMatchSetCommand.js +39 -0
- package/dist-es/commands/UpdateWebACLCommand.js +39 -0
- package/dist-es/commands/UpdateXssMatchSetCommand.js +39 -0
- package/dist-es/endpoints.js +63 -0
- package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
- package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
- package/dist-es/models/models_0.js +1290 -0
- package/dist-es/protocols/Aws_json1_1.js +9604 -0
- package/dist-es/runtimeConfig.browser.js +16 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/WAF.d.ts +2287 -0
- package/dist-types/WAFClient.d.ts +219 -0
- package/dist-types/commands/CreateByteMatchSetCommand.d.ts +66 -0
- package/dist-types/commands/CreateGeoMatchSetCommand.d.ts +63 -0
- package/dist-types/commands/CreateIPSetCommand.d.ts +68 -0
- package/dist-types/commands/CreateRateBasedRuleCommand.d.ts +128 -0
- package/dist-types/commands/CreateRegexMatchSetCommand.d.ts +66 -0
- package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +62 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +86 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +57 -0
- package/dist-types/commands/CreateSizeConstraintSetCommand.d.ts +66 -0
- package/dist-types/commands/CreateSqlInjectionMatchSetCommand.d.ts +64 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +74 -0
- package/dist-types/commands/CreateWebACLMigrationStackCommand.d.ts +42 -0
- package/dist-types/commands/CreateXssMatchSetCommand.d.ts +64 -0
- package/dist-types/commands/DeleteByteMatchSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteGeoMatchSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteIPSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +44 -0
- package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +44 -0
- package/dist-types/commands/DeleteRateBasedRuleCommand.d.ts +62 -0
- package/dist-types/commands/DeleteRegexMatchSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +44 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +58 -0
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +58 -0
- package/dist-types/commands/DeleteSizeConstraintSetCommand.d.ts +58 -0
- package/dist-types/commands/DeleteSqlInjectionMatchSetCommand.d.ts +59 -0
- package/dist-types/commands/DeleteWebACLCommand.d.ts +56 -0
- package/dist-types/commands/DeleteXssMatchSetCommand.d.ts +59 -0
- package/dist-types/commands/GetByteMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/GetChangeTokenCommand.d.ts +49 -0
- package/dist-types/commands/GetChangeTokenStatusCommand.d.ts +59 -0
- package/dist-types/commands/GetGeoMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/GetIPSetCommand.d.ts +43 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +43 -0
- package/dist-types/commands/GetPermissionPolicyCommand.d.ts +43 -0
- package/dist-types/commands/GetRateBasedRuleCommand.d.ts +45 -0
- package/dist-types/commands/GetRateBasedRuleManagedKeysCommand.d.ts +45 -0
- package/dist-types/commands/GetRegexMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/GetRegexPatternSetCommand.d.ts +43 -0
- package/dist-types/commands/GetRuleCommand.d.ts +43 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +44 -0
- package/dist-types/commands/GetSampledRequestsCommand.d.ts +47 -0
- package/dist-types/commands/GetSizeConstraintSetCommand.d.ts +43 -0
- package/dist-types/commands/GetSqlInjectionMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +43 -0
- package/dist-types/commands/GetXssMatchSetCommand.d.ts +43 -0
- package/dist-types/commands/ListActivatedRulesInRuleGroupCommand.d.ts +43 -0
- package/dist-types/commands/ListByteMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListGeoMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListIPSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +43 -0
- package/dist-types/commands/ListRateBasedRulesCommand.d.ts +43 -0
- package/dist-types/commands/ListRegexMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +43 -0
- package/dist-types/commands/ListRulesCommand.d.ts +43 -0
- package/dist-types/commands/ListSizeConstraintSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListSqlInjectionMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/ListSubscribedRuleGroupsCommand.d.ts +43 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +44 -0
- package/dist-types/commands/ListWebACLsCommand.d.ts +43 -0
- package/dist-types/commands/ListXssMatchSetsCommand.d.ts +43 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +60 -0
- package/dist-types/commands/PutPermissionPolicyCommand.d.ts +75 -0
- package/dist-types/commands/TagResourceCommand.d.ts +44 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +43 -0
- package/dist-types/commands/UpdateByteMatchSetCommand.d.ts +81 -0
- package/dist-types/commands/UpdateGeoMatchSetCommand.d.ts +73 -0
- package/dist-types/commands/UpdateIPSetCommand.d.ts +108 -0
- package/dist-types/commands/UpdateRateBasedRuleCommand.d.ts +89 -0
- package/dist-types/commands/UpdateRegexMatchSetCommand.d.ts +77 -0
- package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +82 -0
- package/dist-types/commands/UpdateRuleCommand.d.ts +84 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +67 -0
- package/dist-types/commands/UpdateSizeConstraintSetCommand.d.ts +85 -0
- package/dist-types/commands/UpdateSqlInjectionMatchSetCommand.d.ts +84 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +114 -0
- package/dist-types/commands/UpdateXssMatchSetCommand.d.ts +86 -0
- package/{dist/types → dist-types}/endpoints.d.ts +0 -0
- package/{index.ts → dist-types/index.d.ts} +0 -0
- package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
- package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +233 -0
- package/dist-types/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/runtimeConfig.d.ts +37 -0
- package/dist-types/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/WAF.d.ts +2287 -0
- package/dist-types/ts3.4/WAFClient.d.ts +219 -0
- package/dist-types/ts3.4/commands/CreateByteMatchSetCommand.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateGeoMatchSetCommand.d.ts +63 -0
- package/dist-types/ts3.4/commands/CreateIPSetCommand.d.ts +68 -0
- package/dist-types/ts3.4/commands/CreateRateBasedRuleCommand.d.ts +128 -0
- package/dist-types/ts3.4/commands/CreateRegexMatchSetCommand.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateRegexPatternSetCommand.d.ts +62 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +86 -0
- package/dist-types/ts3.4/commands/CreateRuleGroupCommand.d.ts +57 -0
- package/dist-types/ts3.4/commands/CreateSizeConstraintSetCommand.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateSqlInjectionMatchSetCommand.d.ts +64 -0
- package/dist-types/ts3.4/commands/CreateWebACLCommand.d.ts +74 -0
- package/dist-types/ts3.4/commands/CreateWebACLMigrationStackCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateXssMatchSetCommand.d.ts +64 -0
- package/dist-types/ts3.4/commands/DeleteByteMatchSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteGeoMatchSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteIPSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeletePermissionPolicyCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteRateBasedRuleCommand.d.ts +62 -0
- package/dist-types/ts3.4/commands/DeleteRegexMatchSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteRegexPatternSetCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteSizeConstraintSetCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/DeleteSqlInjectionMatchSetCommand.d.ts +59 -0
- package/dist-types/ts3.4/commands/DeleteWebACLCommand.d.ts +56 -0
- package/dist-types/ts3.4/commands/DeleteXssMatchSetCommand.d.ts +59 -0
- package/dist-types/ts3.4/commands/GetByteMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetChangeTokenCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetChangeTokenStatusCommand.d.ts +59 -0
- package/dist-types/ts3.4/commands/GetGeoMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetIPSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetLoggingConfigurationCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetPermissionPolicyCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetRateBasedRuleCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetRateBasedRuleManagedKeysCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetRegexMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetRegexPatternSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetRuleGroupCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetSampledRequestsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetSizeConstraintSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetSqlInjectionMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetWebACLCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetXssMatchSetCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListActivatedRulesInRuleGroupCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListByteMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListGeoMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListIPSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListLoggingConfigurationsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRateBasedRulesCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRegexMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRegexPatternSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRuleGroupsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListSizeConstraintSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListSqlInjectionMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListSubscribedRuleGroupsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListWebACLsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListXssMatchSetsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/PutLoggingConfigurationCommand.d.ts +60 -0
- package/dist-types/ts3.4/commands/PutPermissionPolicyCommand.d.ts +75 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/UpdateByteMatchSetCommand.d.ts +81 -0
- package/dist-types/ts3.4/commands/UpdateGeoMatchSetCommand.d.ts +73 -0
- package/dist-types/ts3.4/commands/UpdateIPSetCommand.d.ts +108 -0
- package/dist-types/ts3.4/commands/UpdateRateBasedRuleCommand.d.ts +89 -0
- package/dist-types/ts3.4/commands/UpdateRegexMatchSetCommand.d.ts +77 -0
- package/dist-types/ts3.4/commands/UpdateRegexPatternSetCommand.d.ts +82 -0
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +84 -0
- package/dist-types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +67 -0
- package/dist-types/ts3.4/commands/UpdateSizeConstraintSetCommand.d.ts +85 -0
- package/dist-types/ts3.4/commands/UpdateSqlInjectionMatchSetCommand.d.ts +84 -0
- package/dist-types/ts3.4/commands/UpdateWebACLCommand.d.ts +114 -0
- package/dist-types/ts3.4/commands/UpdateXssMatchSetCommand.d.ts +86 -0
- package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
- package/package.json +52 -49
- package/WAF.ts +0 -4455
- package/WAFClient.ts +0 -575
- package/commands/CreateByteMatchSetCommand.ts +0 -125
- package/commands/CreateGeoMatchSetCommand.ts +0 -122
- package/commands/CreateIPSetCommand.ts +0 -127
- package/commands/CreateRateBasedRuleCommand.ts +0 -187
- package/commands/CreateRegexMatchSetCommand.ts +0 -125
- package/commands/CreateRegexPatternSetCommand.ts +0 -121
- package/commands/CreateRuleCommand.ts +0 -145
- package/commands/CreateRuleGroupCommand.ts +0 -116
- package/commands/CreateSizeConstraintSetCommand.ts +0 -125
- package/commands/CreateSqlInjectionMatchSetCommand.ts +0 -126
- package/commands/CreateWebACLCommand.ts +0 -133
- package/commands/CreateWebACLMigrationStackCommand.ts +0 -104
- package/commands/CreateXssMatchSetCommand.ts +0 -123
- package/commands/DeleteByteMatchSetCommand.ts +0 -117
- package/commands/DeleteGeoMatchSetCommand.ts +0 -117
- package/commands/DeleteIPSetCommand.ts +0 -117
- package/commands/DeleteLoggingConfigurationCommand.ts +0 -106
- package/commands/DeletePermissionPolicyCommand.ts +0 -103
- package/commands/DeleteRateBasedRuleCommand.ts +0 -121
- package/commands/DeleteRegexMatchSetCommand.ts +0 -117
- package/commands/DeleteRegexPatternSetCommand.ts +0 -103
- package/commands/DeleteRuleCommand.ts +0 -117
- package/commands/DeleteRuleGroupCommand.ts +0 -117
- package/commands/DeleteSizeConstraintSetCommand.ts +0 -117
- package/commands/DeleteSqlInjectionMatchSetCommand.ts +0 -121
- package/commands/DeleteWebACLCommand.ts +0 -115
- package/commands/DeleteXssMatchSetCommand.ts +0 -118
- package/commands/GetByteMatchSetCommand.ts +0 -102
- package/commands/GetChangeTokenCommand.ts +0 -108
- package/commands/GetChangeTokenStatusCommand.ts +0 -118
- package/commands/GetGeoMatchSetCommand.ts +0 -102
- package/commands/GetIPSetCommand.ts +0 -95
- package/commands/GetLoggingConfigurationCommand.ts +0 -102
- package/commands/GetPermissionPolicyCommand.ts +0 -102
- package/commands/GetRateBasedRuleCommand.ts +0 -104
- package/commands/GetRateBasedRuleManagedKeysCommand.ts +0 -109
- package/commands/GetRegexMatchSetCommand.ts +0 -102
- package/commands/GetRegexPatternSetCommand.ts +0 -102
- package/commands/GetRuleCommand.ts +0 -95
- package/commands/GetRuleGroupCommand.ts +0 -103
- package/commands/GetSampledRequestsCommand.ts +0 -106
- package/commands/GetSizeConstraintSetCommand.ts +0 -102
- package/commands/GetSqlInjectionMatchSetCommand.ts +0 -102
- package/commands/GetWebACLCommand.ts +0 -95
- package/commands/GetXssMatchSetCommand.ts +0 -102
- package/commands/ListActivatedRulesInRuleGroupCommand.ts +0 -107
- package/commands/ListByteMatchSetsCommand.ts +0 -102
- package/commands/ListGeoMatchSetsCommand.ts +0 -102
- package/commands/ListIPSetsCommand.ts +0 -102
- package/commands/ListLoggingConfigurationsCommand.ts +0 -105
- package/commands/ListRateBasedRulesCommand.ts +0 -102
- package/commands/ListRegexMatchSetsCommand.ts +0 -102
- package/commands/ListRegexPatternSetsCommand.ts +0 -102
- package/commands/ListRuleGroupsCommand.ts +0 -102
- package/commands/ListRulesCommand.ts +0 -95
- package/commands/ListSizeConstraintSetsCommand.ts +0 -102
- package/commands/ListSqlInjectionMatchSetsCommand.ts +0 -105
- package/commands/ListSubscribedRuleGroupsCommand.ts +0 -102
- package/commands/ListTagsForResourceCommand.ts +0 -103
- package/commands/ListWebACLsCommand.ts +0 -102
- package/commands/ListXssMatchSetsCommand.ts +0 -102
- package/commands/PutLoggingConfigurationCommand.ts +0 -119
- package/commands/PutPermissionPolicyCommand.ts +0 -134
- package/commands/TagResourceCommand.ts +0 -103
- package/commands/UntagResourceCommand.ts +0 -102
- package/commands/UpdateByteMatchSetCommand.ts +0 -140
- package/commands/UpdateGeoMatchSetCommand.ts +0 -132
- package/commands/UpdateIPSetCommand.ts +0 -167
- package/commands/UpdateRateBasedRuleCommand.ts +0 -148
- package/commands/UpdateRegexMatchSetCommand.ts +0 -136
- package/commands/UpdateRegexPatternSetCommand.ts +0 -141
- package/commands/UpdateRuleCommand.ts +0 -143
- package/commands/UpdateRuleGroupCommand.ts +0 -126
- package/commands/UpdateSizeConstraintSetCommand.ts +0 -144
- package/commands/UpdateSqlInjectionMatchSetCommand.ts +0 -146
- package/commands/UpdateWebACLCommand.ts +0 -173
- package/commands/UpdateXssMatchSetCommand.ts +0 -145
- package/dist/cjs/WAF.js +0 -1176
- package/dist/cjs/WAF.js.map +0 -1
- package/dist/cjs/WAFClient.js +0 -54
- package/dist/cjs/WAFClient.js.map +0 -1
- package/dist/cjs/commands/CreateByteMatchSetCommand.js +0 -92
- package/dist/cjs/commands/CreateByteMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateGeoMatchSetCommand.js +0 -89
- package/dist/cjs/commands/CreateGeoMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateIPSetCommand.js +0 -94
- package/dist/cjs/commands/CreateIPSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRateBasedRuleCommand.js +0 -154
- package/dist/cjs/commands/CreateRateBasedRuleCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRegexMatchSetCommand.js +0 -92
- package/dist/cjs/commands/CreateRegexMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRegexPatternSetCommand.js +0 -88
- package/dist/cjs/commands/CreateRegexPatternSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRuleCommand.js +0 -112
- package/dist/cjs/commands/CreateRuleCommand.js.map +0 -1
- package/dist/cjs/commands/CreateRuleGroupCommand.js +0 -83
- package/dist/cjs/commands/CreateRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/CreateSizeConstraintSetCommand.js +0 -92
- package/dist/cjs/commands/CreateSizeConstraintSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateSqlInjectionMatchSetCommand.js +0 -90
- package/dist/cjs/commands/CreateSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateWebACLCommand.js +0 -100
- package/dist/cjs/commands/CreateWebACLCommand.js.map +0 -1
- package/dist/cjs/commands/CreateWebACLMigrationStackCommand.js +0 -68
- package/dist/cjs/commands/CreateWebACLMigrationStackCommand.js.map +0 -1
- package/dist/cjs/commands/CreateXssMatchSetCommand.js +0 -90
- package/dist/cjs/commands/CreateXssMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteByteMatchSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteByteMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteGeoMatchSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteGeoMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteIPSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteIPSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteLoggingConfigurationCommand.js +0 -70
- package/dist/cjs/commands/DeleteLoggingConfigurationCommand.js.map +0 -1
- package/dist/cjs/commands/DeletePermissionPolicyCommand.js +0 -70
- package/dist/cjs/commands/DeletePermissionPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRateBasedRuleCommand.js +0 -88
- package/dist/cjs/commands/DeleteRateBasedRuleCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRegexMatchSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteRegexMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRegexPatternSetCommand.js +0 -70
- package/dist/cjs/commands/DeleteRegexPatternSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRuleCommand.js +0 -84
- package/dist/cjs/commands/DeleteRuleCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteRuleGroupCommand.js +0 -84
- package/dist/cjs/commands/DeleteRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteSizeConstraintSetCommand.js +0 -84
- package/dist/cjs/commands/DeleteSizeConstraintSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteSqlInjectionMatchSetCommand.js +0 -85
- package/dist/cjs/commands/DeleteSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteWebACLCommand.js +0 -82
- package/dist/cjs/commands/DeleteWebACLCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteXssMatchSetCommand.js +0 -85
- package/dist/cjs/commands/DeleteXssMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetByteMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetByteMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetChangeTokenCommand.js +0 -75
- package/dist/cjs/commands/GetChangeTokenCommand.js.map +0 -1
- package/dist/cjs/commands/GetChangeTokenStatusCommand.js +0 -85
- package/dist/cjs/commands/GetChangeTokenStatusCommand.js.map +0 -1
- package/dist/cjs/commands/GetGeoMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetGeoMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetIPSetCommand.js +0 -69
- package/dist/cjs/commands/GetIPSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetLoggingConfigurationCommand.js +0 -69
- package/dist/cjs/commands/GetLoggingConfigurationCommand.js.map +0 -1
- package/dist/cjs/commands/GetPermissionPolicyCommand.js +0 -69
- package/dist/cjs/commands/GetPermissionPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/GetRateBasedRuleCommand.js +0 -71
- package/dist/cjs/commands/GetRateBasedRuleCommand.js.map +0 -1
- package/dist/cjs/commands/GetRateBasedRuleManagedKeysCommand.js +0 -71
- package/dist/cjs/commands/GetRateBasedRuleManagedKeysCommand.js.map +0 -1
- package/dist/cjs/commands/GetRegexMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetRegexMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetRegexPatternSetCommand.js +0 -69
- package/dist/cjs/commands/GetRegexPatternSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetRuleCommand.js +0 -69
- package/dist/cjs/commands/GetRuleCommand.js.map +0 -1
- package/dist/cjs/commands/GetRuleGroupCommand.js +0 -70
- package/dist/cjs/commands/GetRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/GetSampledRequestsCommand.js +0 -73
- package/dist/cjs/commands/GetSampledRequestsCommand.js.map +0 -1
- package/dist/cjs/commands/GetSizeConstraintSetCommand.js +0 -69
- package/dist/cjs/commands/GetSizeConstraintSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetSqlInjectionMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/GetWebACLCommand.js +0 -69
- package/dist/cjs/commands/GetWebACLCommand.js.map +0 -1
- package/dist/cjs/commands/GetXssMatchSetCommand.js +0 -69
- package/dist/cjs/commands/GetXssMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/ListActivatedRulesInRuleGroupCommand.js +0 -69
- package/dist/cjs/commands/ListActivatedRulesInRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/ListByteMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListByteMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListGeoMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListGeoMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListIPSetsCommand.js +0 -69
- package/dist/cjs/commands/ListIPSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListLoggingConfigurationsCommand.js +0 -69
- package/dist/cjs/commands/ListLoggingConfigurationsCommand.js.map +0 -1
- package/dist/cjs/commands/ListRateBasedRulesCommand.js +0 -69
- package/dist/cjs/commands/ListRateBasedRulesCommand.js.map +0 -1
- package/dist/cjs/commands/ListRegexMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListRegexMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListRegexPatternSetsCommand.js +0 -69
- package/dist/cjs/commands/ListRegexPatternSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListRuleGroupsCommand.js +0 -69
- package/dist/cjs/commands/ListRuleGroupsCommand.js.map +0 -1
- package/dist/cjs/commands/ListRulesCommand.js +0 -69
- package/dist/cjs/commands/ListRulesCommand.js.map +0 -1
- package/dist/cjs/commands/ListSizeConstraintSetsCommand.js +0 -69
- package/dist/cjs/commands/ListSizeConstraintSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListSqlInjectionMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListSqlInjectionMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/ListSubscribedRuleGroupsCommand.js +0 -69
- package/dist/cjs/commands/ListSubscribedRuleGroupsCommand.js.map +0 -1
- package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -70
- package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/cjs/commands/ListWebACLsCommand.js +0 -69
- package/dist/cjs/commands/ListWebACLsCommand.js.map +0 -1
- package/dist/cjs/commands/ListXssMatchSetsCommand.js +0 -69
- package/dist/cjs/commands/ListXssMatchSetsCommand.js.map +0 -1
- package/dist/cjs/commands/PutLoggingConfigurationCommand.js +0 -86
- package/dist/cjs/commands/PutLoggingConfigurationCommand.js.map +0 -1
- package/dist/cjs/commands/PutPermissionPolicyCommand.js +0 -101
- package/dist/cjs/commands/PutPermissionPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/TagResourceCommand.js +0 -70
- package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UntagResourceCommand.js +0 -69
- package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateByteMatchSetCommand.js +0 -107
- package/dist/cjs/commands/UpdateByteMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateGeoMatchSetCommand.js +0 -99
- package/dist/cjs/commands/UpdateGeoMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateIPSetCommand.js +0 -134
- package/dist/cjs/commands/UpdateIPSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRateBasedRuleCommand.js +0 -115
- package/dist/cjs/commands/UpdateRateBasedRuleCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRegexMatchSetCommand.js +0 -103
- package/dist/cjs/commands/UpdateRegexMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRegexPatternSetCommand.js +0 -108
- package/dist/cjs/commands/UpdateRegexPatternSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRuleCommand.js +0 -110
- package/dist/cjs/commands/UpdateRuleCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateRuleGroupCommand.js +0 -93
- package/dist/cjs/commands/UpdateRuleGroupCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateSizeConstraintSetCommand.js +0 -111
- package/dist/cjs/commands/UpdateSizeConstraintSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateSqlInjectionMatchSetCommand.js +0 -110
- package/dist/cjs/commands/UpdateSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateWebACLCommand.js +0 -140
- package/dist/cjs/commands/UpdateWebACLCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateXssMatchSetCommand.js +0 -112
- package/dist/cjs/commands/UpdateXssMatchSetCommand.js.map +0 -1
- package/dist/cjs/endpoints.js +0 -68
- package/dist/cjs/endpoints.js.map +0 -1
- package/dist/cjs/index.js +0 -84
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/models/index.js +0 -5
- package/dist/cjs/models/index.js.map +0 -1
- package/dist/cjs/models/models_0.js +0 -2437
- package/dist/cjs/models/models_0.js.map +0 -1
- package/dist/cjs/package.json +0 -91
- package/dist/cjs/protocols/Aws_json1_1.js +0 -9200
- package/dist/cjs/protocols/Aws_json1_1.js.map +0 -1
- package/dist/cjs/runtimeConfig.browser.js +0 -41
- package/dist/cjs/runtimeConfig.browser.js.map +0 -1
- package/dist/cjs/runtimeConfig.js +0 -46
- package/dist/cjs/runtimeConfig.js.map +0 -1
- package/dist/cjs/runtimeConfig.native.js +0 -20
- package/dist/cjs/runtimeConfig.native.js.map +0 -1
- package/dist/cjs/runtimeConfig.shared.js +0 -21
- package/dist/cjs/runtimeConfig.shared.js.map +0 -1
- package/dist/es/WAF.js +0 -1179
- package/dist/es/WAF.js.map +0 -1
- package/dist/es/WAFClient.js +0 -56
- package/dist/es/WAFClient.js.map +0 -1
- package/dist/es/commands/CreateByteMatchSetCommand.js +0 -96
- package/dist/es/commands/CreateByteMatchSetCommand.js.map +0 -1
- package/dist/es/commands/CreateGeoMatchSetCommand.js +0 -93
- package/dist/es/commands/CreateGeoMatchSetCommand.js.map +0 -1
- package/dist/es/commands/CreateIPSetCommand.js +0 -98
- package/dist/es/commands/CreateIPSetCommand.js.map +0 -1
- package/dist/es/commands/CreateRateBasedRuleCommand.js +0 -158
- package/dist/es/commands/CreateRateBasedRuleCommand.js.map +0 -1
- package/dist/es/commands/CreateRegexMatchSetCommand.js +0 -96
- package/dist/es/commands/CreateRegexMatchSetCommand.js.map +0 -1
- package/dist/es/commands/CreateRegexPatternSetCommand.js +0 -92
- package/dist/es/commands/CreateRegexPatternSetCommand.js.map +0 -1
- package/dist/es/commands/CreateRuleCommand.js +0 -116
- package/dist/es/commands/CreateRuleCommand.js.map +0 -1
- package/dist/es/commands/CreateRuleGroupCommand.js +0 -87
- package/dist/es/commands/CreateRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/CreateSizeConstraintSetCommand.js +0 -96
- package/dist/es/commands/CreateSizeConstraintSetCommand.js.map +0 -1
- package/dist/es/commands/CreateSqlInjectionMatchSetCommand.js +0 -94
- package/dist/es/commands/CreateSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/es/commands/CreateWebACLCommand.js +0 -104
- package/dist/es/commands/CreateWebACLCommand.js.map +0 -1
- package/dist/es/commands/CreateWebACLMigrationStackCommand.js +0 -72
- package/dist/es/commands/CreateWebACLMigrationStackCommand.js.map +0 -1
- package/dist/es/commands/CreateXssMatchSetCommand.js +0 -94
- package/dist/es/commands/CreateXssMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteByteMatchSetCommand.js +0 -88
- package/dist/es/commands/DeleteByteMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteGeoMatchSetCommand.js +0 -88
- package/dist/es/commands/DeleteGeoMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteIPSetCommand.js +0 -88
- package/dist/es/commands/DeleteIPSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteLoggingConfigurationCommand.js +0 -74
- package/dist/es/commands/DeleteLoggingConfigurationCommand.js.map +0 -1
- package/dist/es/commands/DeletePermissionPolicyCommand.js +0 -74
- package/dist/es/commands/DeletePermissionPolicyCommand.js.map +0 -1
- package/dist/es/commands/DeleteRateBasedRuleCommand.js +0 -92
- package/dist/es/commands/DeleteRateBasedRuleCommand.js.map +0 -1
- package/dist/es/commands/DeleteRegexMatchSetCommand.js +0 -88
- package/dist/es/commands/DeleteRegexMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteRegexPatternSetCommand.js +0 -74
- package/dist/es/commands/DeleteRegexPatternSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteRuleCommand.js +0 -88
- package/dist/es/commands/DeleteRuleCommand.js.map +0 -1
- package/dist/es/commands/DeleteRuleGroupCommand.js +0 -88
- package/dist/es/commands/DeleteRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/DeleteSizeConstraintSetCommand.js +0 -88
- package/dist/es/commands/DeleteSizeConstraintSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteSqlInjectionMatchSetCommand.js +0 -89
- package/dist/es/commands/DeleteSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/es/commands/DeleteWebACLCommand.js +0 -86
- package/dist/es/commands/DeleteWebACLCommand.js.map +0 -1
- package/dist/es/commands/DeleteXssMatchSetCommand.js +0 -89
- package/dist/es/commands/DeleteXssMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetByteMatchSetCommand.js +0 -73
- package/dist/es/commands/GetByteMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetChangeTokenCommand.js +0 -79
- package/dist/es/commands/GetChangeTokenCommand.js.map +0 -1
- package/dist/es/commands/GetChangeTokenStatusCommand.js +0 -89
- package/dist/es/commands/GetChangeTokenStatusCommand.js.map +0 -1
- package/dist/es/commands/GetGeoMatchSetCommand.js +0 -73
- package/dist/es/commands/GetGeoMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetIPSetCommand.js +0 -73
- package/dist/es/commands/GetIPSetCommand.js.map +0 -1
- package/dist/es/commands/GetLoggingConfigurationCommand.js +0 -73
- package/dist/es/commands/GetLoggingConfigurationCommand.js.map +0 -1
- package/dist/es/commands/GetPermissionPolicyCommand.js +0 -73
- package/dist/es/commands/GetPermissionPolicyCommand.js.map +0 -1
- package/dist/es/commands/GetRateBasedRuleCommand.js +0 -75
- package/dist/es/commands/GetRateBasedRuleCommand.js.map +0 -1
- package/dist/es/commands/GetRateBasedRuleManagedKeysCommand.js +0 -75
- package/dist/es/commands/GetRateBasedRuleManagedKeysCommand.js.map +0 -1
- package/dist/es/commands/GetRegexMatchSetCommand.js +0 -73
- package/dist/es/commands/GetRegexMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetRegexPatternSetCommand.js +0 -73
- package/dist/es/commands/GetRegexPatternSetCommand.js.map +0 -1
- package/dist/es/commands/GetRuleCommand.js +0 -73
- package/dist/es/commands/GetRuleCommand.js.map +0 -1
- package/dist/es/commands/GetRuleGroupCommand.js +0 -74
- package/dist/es/commands/GetRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/GetSampledRequestsCommand.js +0 -77
- package/dist/es/commands/GetSampledRequestsCommand.js.map +0 -1
- package/dist/es/commands/GetSizeConstraintSetCommand.js +0 -73
- package/dist/es/commands/GetSizeConstraintSetCommand.js.map +0 -1
- package/dist/es/commands/GetSqlInjectionMatchSetCommand.js +0 -73
- package/dist/es/commands/GetSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/es/commands/GetWebACLCommand.js +0 -73
- package/dist/es/commands/GetWebACLCommand.js.map +0 -1
- package/dist/es/commands/GetXssMatchSetCommand.js +0 -73
- package/dist/es/commands/GetXssMatchSetCommand.js.map +0 -1
- package/dist/es/commands/ListActivatedRulesInRuleGroupCommand.js +0 -73
- package/dist/es/commands/ListActivatedRulesInRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/ListByteMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListByteMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/ListGeoMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListGeoMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/ListIPSetsCommand.js +0 -73
- package/dist/es/commands/ListIPSetsCommand.js.map +0 -1
- package/dist/es/commands/ListLoggingConfigurationsCommand.js +0 -73
- package/dist/es/commands/ListLoggingConfigurationsCommand.js.map +0 -1
- package/dist/es/commands/ListRateBasedRulesCommand.js +0 -73
- package/dist/es/commands/ListRateBasedRulesCommand.js.map +0 -1
- package/dist/es/commands/ListRegexMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListRegexMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/ListRegexPatternSetsCommand.js +0 -73
- package/dist/es/commands/ListRegexPatternSetsCommand.js.map +0 -1
- package/dist/es/commands/ListRuleGroupsCommand.js +0 -73
- package/dist/es/commands/ListRuleGroupsCommand.js.map +0 -1
- package/dist/es/commands/ListRulesCommand.js +0 -73
- package/dist/es/commands/ListRulesCommand.js.map +0 -1
- package/dist/es/commands/ListSizeConstraintSetsCommand.js +0 -73
- package/dist/es/commands/ListSizeConstraintSetsCommand.js.map +0 -1
- package/dist/es/commands/ListSqlInjectionMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListSqlInjectionMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/ListSubscribedRuleGroupsCommand.js +0 -73
- package/dist/es/commands/ListSubscribedRuleGroupsCommand.js.map +0 -1
- package/dist/es/commands/ListTagsForResourceCommand.js +0 -74
- package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/es/commands/ListWebACLsCommand.js +0 -73
- package/dist/es/commands/ListWebACLsCommand.js.map +0 -1
- package/dist/es/commands/ListXssMatchSetsCommand.js +0 -73
- package/dist/es/commands/ListXssMatchSetsCommand.js.map +0 -1
- package/dist/es/commands/PutLoggingConfigurationCommand.js +0 -90
- package/dist/es/commands/PutLoggingConfigurationCommand.js.map +0 -1
- package/dist/es/commands/PutPermissionPolicyCommand.js +0 -105
- package/dist/es/commands/PutPermissionPolicyCommand.js.map +0 -1
- package/dist/es/commands/TagResourceCommand.js +0 -74
- package/dist/es/commands/TagResourceCommand.js.map +0 -1
- package/dist/es/commands/UntagResourceCommand.js +0 -73
- package/dist/es/commands/UntagResourceCommand.js.map +0 -1
- package/dist/es/commands/UpdateByteMatchSetCommand.js +0 -111
- package/dist/es/commands/UpdateByteMatchSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateGeoMatchSetCommand.js +0 -103
- package/dist/es/commands/UpdateGeoMatchSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateIPSetCommand.js +0 -138
- package/dist/es/commands/UpdateIPSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateRateBasedRuleCommand.js +0 -119
- package/dist/es/commands/UpdateRateBasedRuleCommand.js.map +0 -1
- package/dist/es/commands/UpdateRegexMatchSetCommand.js +0 -107
- package/dist/es/commands/UpdateRegexMatchSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateRegexPatternSetCommand.js +0 -112
- package/dist/es/commands/UpdateRegexPatternSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateRuleCommand.js +0 -114
- package/dist/es/commands/UpdateRuleCommand.js.map +0 -1
- package/dist/es/commands/UpdateRuleGroupCommand.js +0 -97
- package/dist/es/commands/UpdateRuleGroupCommand.js.map +0 -1
- package/dist/es/commands/UpdateSizeConstraintSetCommand.js +0 -115
- package/dist/es/commands/UpdateSizeConstraintSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateSqlInjectionMatchSetCommand.js +0 -114
- package/dist/es/commands/UpdateSqlInjectionMatchSetCommand.js.map +0 -1
- package/dist/es/commands/UpdateWebACLCommand.js +0 -144
- package/dist/es/commands/UpdateWebACLCommand.js.map +0 -1
- package/dist/es/commands/UpdateXssMatchSetCommand.js +0 -116
- package/dist/es/commands/UpdateXssMatchSetCommand.js.map +0 -1
- package/dist/es/endpoints.js +0 -64
- package/dist/es/endpoints.js.map +0 -1
- package/dist/es/index.js +0 -81
- package/dist/es/index.js.map +0 -1
- package/dist/es/models/index.js +0 -2
- package/dist/es/models/index.js.map +0 -1
- package/dist/es/models/models_0.js +0 -1975
- package/dist/es/models/models_0.js.map +0 -1
- package/dist/es/package.json +0 -91
- package/dist/es/protocols/Aws_json1_1.js +0 -9610
- package/dist/es/protocols/Aws_json1_1.js.map +0 -1
- package/dist/es/runtimeConfig.browser.js +0 -20
- package/dist/es/runtimeConfig.browser.js.map +0 -1
- package/dist/es/runtimeConfig.js +0 -25
- package/dist/es/runtimeConfig.js.map +0 -1
- package/dist/es/runtimeConfig.native.js +0 -12
- package/dist/es/runtimeConfig.native.js.map +0 -1
- package/dist/es/runtimeConfig.shared.js +0 -17
- package/dist/es/runtimeConfig.shared.js.map +0 -1
- package/dist/types/WAF.d.ts +0 -2287
- package/dist/types/WAFClient.d.ts +0 -219
- package/dist/types/commands/CreateByteMatchSetCommand.d.ts +0 -66
- package/dist/types/commands/CreateGeoMatchSetCommand.d.ts +0 -63
- package/dist/types/commands/CreateIPSetCommand.d.ts +0 -68
- package/dist/types/commands/CreateRateBasedRuleCommand.d.ts +0 -128
- package/dist/types/commands/CreateRegexMatchSetCommand.d.ts +0 -66
- package/dist/types/commands/CreateRegexPatternSetCommand.d.ts +0 -62
- package/dist/types/commands/CreateRuleCommand.d.ts +0 -86
- package/dist/types/commands/CreateRuleGroupCommand.d.ts +0 -57
- package/dist/types/commands/CreateSizeConstraintSetCommand.d.ts +0 -66
- package/dist/types/commands/CreateSqlInjectionMatchSetCommand.d.ts +0 -64
- package/dist/types/commands/CreateWebACLCommand.d.ts +0 -74
- package/dist/types/commands/CreateWebACLMigrationStackCommand.d.ts +0 -42
- package/dist/types/commands/CreateXssMatchSetCommand.d.ts +0 -64
- package/dist/types/commands/DeleteByteMatchSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteGeoMatchSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteIPSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteLoggingConfigurationCommand.d.ts +0 -44
- package/dist/types/commands/DeletePermissionPolicyCommand.d.ts +0 -44
- package/dist/types/commands/DeleteRateBasedRuleCommand.d.ts +0 -62
- package/dist/types/commands/DeleteRegexMatchSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteRegexPatternSetCommand.d.ts +0 -44
- package/dist/types/commands/DeleteRuleCommand.d.ts +0 -58
- package/dist/types/commands/DeleteRuleGroupCommand.d.ts +0 -58
- package/dist/types/commands/DeleteSizeConstraintSetCommand.d.ts +0 -58
- package/dist/types/commands/DeleteSqlInjectionMatchSetCommand.d.ts +0 -59
- package/dist/types/commands/DeleteWebACLCommand.d.ts +0 -56
- package/dist/types/commands/DeleteXssMatchSetCommand.d.ts +0 -59
- package/dist/types/commands/GetByteMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/GetChangeTokenCommand.d.ts +0 -49
- package/dist/types/commands/GetChangeTokenStatusCommand.d.ts +0 -59
- package/dist/types/commands/GetGeoMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/GetIPSetCommand.d.ts +0 -43
- package/dist/types/commands/GetLoggingConfigurationCommand.d.ts +0 -43
- package/dist/types/commands/GetPermissionPolicyCommand.d.ts +0 -43
- package/dist/types/commands/GetRateBasedRuleCommand.d.ts +0 -45
- package/dist/types/commands/GetRateBasedRuleManagedKeysCommand.d.ts +0 -45
- package/dist/types/commands/GetRegexMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/GetRegexPatternSetCommand.d.ts +0 -43
- package/dist/types/commands/GetRuleCommand.d.ts +0 -43
- package/dist/types/commands/GetRuleGroupCommand.d.ts +0 -44
- package/dist/types/commands/GetSampledRequestsCommand.d.ts +0 -47
- package/dist/types/commands/GetSizeConstraintSetCommand.d.ts +0 -43
- package/dist/types/commands/GetSqlInjectionMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/GetWebACLCommand.d.ts +0 -43
- package/dist/types/commands/GetXssMatchSetCommand.d.ts +0 -43
- package/dist/types/commands/ListActivatedRulesInRuleGroupCommand.d.ts +0 -43
- package/dist/types/commands/ListByteMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListGeoMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListIPSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListLoggingConfigurationsCommand.d.ts +0 -43
- package/dist/types/commands/ListRateBasedRulesCommand.d.ts +0 -43
- package/dist/types/commands/ListRegexMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListRegexPatternSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListRuleGroupsCommand.d.ts +0 -43
- package/dist/types/commands/ListRulesCommand.d.ts +0 -43
- package/dist/types/commands/ListSizeConstraintSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListSqlInjectionMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/ListSubscribedRuleGroupsCommand.d.ts +0 -43
- package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -44
- package/dist/types/commands/ListWebACLsCommand.d.ts +0 -43
- package/dist/types/commands/ListXssMatchSetsCommand.d.ts +0 -43
- package/dist/types/commands/PutLoggingConfigurationCommand.d.ts +0 -60
- package/dist/types/commands/PutPermissionPolicyCommand.d.ts +0 -75
- package/dist/types/commands/TagResourceCommand.d.ts +0 -44
- package/dist/types/commands/UntagResourceCommand.d.ts +0 -43
- package/dist/types/commands/UpdateByteMatchSetCommand.d.ts +0 -81
- package/dist/types/commands/UpdateGeoMatchSetCommand.d.ts +0 -73
- package/dist/types/commands/UpdateIPSetCommand.d.ts +0 -108
- package/dist/types/commands/UpdateRateBasedRuleCommand.d.ts +0 -89
- package/dist/types/commands/UpdateRegexMatchSetCommand.d.ts +0 -77
- package/dist/types/commands/UpdateRegexPatternSetCommand.d.ts +0 -82
- package/dist/types/commands/UpdateRuleCommand.d.ts +0 -84
- package/dist/types/commands/UpdateRuleGroupCommand.d.ts +0 -67
- package/dist/types/commands/UpdateSizeConstraintSetCommand.d.ts +0 -85
- package/dist/types/commands/UpdateSqlInjectionMatchSetCommand.d.ts +0 -84
- package/dist/types/commands/UpdateWebACLCommand.d.ts +0 -114
- package/dist/types/commands/UpdateXssMatchSetCommand.d.ts +0 -86
- package/dist/types/protocols/Aws_json1_1.d.ts +0 -233
- package/dist/types/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/runtimeConfig.d.ts +0 -36
- package/dist/types/runtimeConfig.native.d.ts +0 -35
- package/dist/types/ts3.4/WAF.d.ts +0 -2287
- package/dist/types/ts3.4/WAFClient.d.ts +0 -219
- package/dist/types/ts3.4/commands/CreateByteMatchSetCommand.d.ts +0 -66
- package/dist/types/ts3.4/commands/CreateGeoMatchSetCommand.d.ts +0 -63
- package/dist/types/ts3.4/commands/CreateIPSetCommand.d.ts +0 -68
- package/dist/types/ts3.4/commands/CreateRateBasedRuleCommand.d.ts +0 -128
- package/dist/types/ts3.4/commands/CreateRegexMatchSetCommand.d.ts +0 -66
- package/dist/types/ts3.4/commands/CreateRegexPatternSetCommand.d.ts +0 -62
- package/dist/types/ts3.4/commands/CreateRuleCommand.d.ts +0 -86
- package/dist/types/ts3.4/commands/CreateRuleGroupCommand.d.ts +0 -57
- package/dist/types/ts3.4/commands/CreateSizeConstraintSetCommand.d.ts +0 -66
- package/dist/types/ts3.4/commands/CreateSqlInjectionMatchSetCommand.d.ts +0 -64
- package/dist/types/ts3.4/commands/CreateWebACLCommand.d.ts +0 -74
- package/dist/types/ts3.4/commands/CreateWebACLMigrationStackCommand.d.ts +0 -42
- package/dist/types/ts3.4/commands/CreateXssMatchSetCommand.d.ts +0 -64
- package/dist/types/ts3.4/commands/DeleteByteMatchSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteGeoMatchSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteIPSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/DeletePermissionPolicyCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/DeleteRateBasedRuleCommand.d.ts +0 -62
- package/dist/types/ts3.4/commands/DeleteRegexMatchSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteRegexPatternSetCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/DeleteRuleCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteRuleGroupCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteSizeConstraintSetCommand.d.ts +0 -58
- package/dist/types/ts3.4/commands/DeleteSqlInjectionMatchSetCommand.d.ts +0 -59
- package/dist/types/ts3.4/commands/DeleteWebACLCommand.d.ts +0 -56
- package/dist/types/ts3.4/commands/DeleteXssMatchSetCommand.d.ts +0 -59
- package/dist/types/ts3.4/commands/GetByteMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetChangeTokenCommand.d.ts +0 -49
- package/dist/types/ts3.4/commands/GetChangeTokenStatusCommand.d.ts +0 -59
- package/dist/types/ts3.4/commands/GetGeoMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetIPSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetLoggingConfigurationCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetPermissionPolicyCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetRateBasedRuleCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/GetRateBasedRuleManagedKeysCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/GetRegexMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetRegexPatternSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetRuleCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetRuleGroupCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/GetSampledRequestsCommand.d.ts +0 -47
- package/dist/types/ts3.4/commands/GetSizeConstraintSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetSqlInjectionMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetWebACLCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/GetXssMatchSetCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListActivatedRulesInRuleGroupCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListByteMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListGeoMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListIPSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListLoggingConfigurationsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRateBasedRulesCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRegexMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRegexPatternSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRuleGroupsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListRulesCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListSizeConstraintSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListSqlInjectionMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListSubscribedRuleGroupsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/ListWebACLsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/ListXssMatchSetsCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/PutLoggingConfigurationCommand.d.ts +0 -60
- package/dist/types/ts3.4/commands/PutPermissionPolicyCommand.d.ts +0 -75
- package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -44
- package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -43
- package/dist/types/ts3.4/commands/UpdateByteMatchSetCommand.d.ts +0 -81
- package/dist/types/ts3.4/commands/UpdateGeoMatchSetCommand.d.ts +0 -73
- package/dist/types/ts3.4/commands/UpdateIPSetCommand.d.ts +0 -108
- package/dist/types/ts3.4/commands/UpdateRateBasedRuleCommand.d.ts +0 -89
- package/dist/types/ts3.4/commands/UpdateRegexMatchSetCommand.d.ts +0 -77
- package/dist/types/ts3.4/commands/UpdateRegexPatternSetCommand.d.ts +0 -82
- package/dist/types/ts3.4/commands/UpdateRuleCommand.d.ts +0 -84
- package/dist/types/ts3.4/commands/UpdateRuleGroupCommand.d.ts +0 -67
- package/dist/types/ts3.4/commands/UpdateSizeConstraintSetCommand.d.ts +0 -85
- package/dist/types/ts3.4/commands/UpdateSqlInjectionMatchSetCommand.d.ts +0 -84
- package/dist/types/ts3.4/commands/UpdateWebACLCommand.d.ts +0 -114
- package/dist/types/ts3.4/commands/UpdateXssMatchSetCommand.d.ts +0 -86
- package/dist/types/ts3.4/protocols/Aws_json1_1.d.ts +0 -233
- package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
- package/endpoints.ts +0 -68
- package/jest.config.js +0 -4
- package/models/models_0.ts +0 -7494
- package/protocols/Aws_json1_1.ts +0 -11231
- package/runtimeConfig.browser.ts +0 -40
- package/runtimeConfig.native.ts +0 -16
- package/runtimeConfig.shared.ts +0 -16
- package/runtimeConfig.ts +0 -45
- package/tsconfig.es.json +0 -12
- package/tsconfig.json +0 -32
|
@@ -1,1975 +0,0 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
2
|
-
export var WafActionType;
|
|
3
|
-
(function (WafActionType) {
|
|
4
|
-
WafActionType["ALLOW"] = "ALLOW";
|
|
5
|
-
WafActionType["BLOCK"] = "BLOCK";
|
|
6
|
-
WafActionType["COUNT"] = "COUNT";
|
|
7
|
-
})(WafActionType || (WafActionType = {}));
|
|
8
|
-
export var WafAction;
|
|
9
|
-
(function (WafAction) {
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
WafAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
14
|
-
})(WafAction || (WafAction = {}));
|
|
15
|
-
export var ExcludedRule;
|
|
16
|
-
(function (ExcludedRule) {
|
|
17
|
-
/**
|
|
18
|
-
* @internal
|
|
19
|
-
*/
|
|
20
|
-
ExcludedRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
21
|
-
})(ExcludedRule || (ExcludedRule = {}));
|
|
22
|
-
export var WafOverrideActionType;
|
|
23
|
-
(function (WafOverrideActionType) {
|
|
24
|
-
WafOverrideActionType["COUNT"] = "COUNT";
|
|
25
|
-
WafOverrideActionType["NONE"] = "NONE";
|
|
26
|
-
})(WafOverrideActionType || (WafOverrideActionType = {}));
|
|
27
|
-
export var WafOverrideAction;
|
|
28
|
-
(function (WafOverrideAction) {
|
|
29
|
-
/**
|
|
30
|
-
* @internal
|
|
31
|
-
*/
|
|
32
|
-
WafOverrideAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
33
|
-
})(WafOverrideAction || (WafOverrideAction = {}));
|
|
34
|
-
export var WafRuleType;
|
|
35
|
-
(function (WafRuleType) {
|
|
36
|
-
WafRuleType["GROUP"] = "GROUP";
|
|
37
|
-
WafRuleType["RATE_BASED"] = "RATE_BASED";
|
|
38
|
-
WafRuleType["REGULAR"] = "REGULAR";
|
|
39
|
-
})(WafRuleType || (WafRuleType = {}));
|
|
40
|
-
export var ActivatedRule;
|
|
41
|
-
(function (ActivatedRule) {
|
|
42
|
-
/**
|
|
43
|
-
* @internal
|
|
44
|
-
*/
|
|
45
|
-
ActivatedRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
46
|
-
})(ActivatedRule || (ActivatedRule = {}));
|
|
47
|
-
export var CreateByteMatchSetRequest;
|
|
48
|
-
(function (CreateByteMatchSetRequest) {
|
|
49
|
-
/**
|
|
50
|
-
* @internal
|
|
51
|
-
*/
|
|
52
|
-
CreateByteMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
|
-
})(CreateByteMatchSetRequest || (CreateByteMatchSetRequest = {}));
|
|
54
|
-
export var MatchFieldType;
|
|
55
|
-
(function (MatchFieldType) {
|
|
56
|
-
MatchFieldType["ALL_QUERY_ARGS"] = "ALL_QUERY_ARGS";
|
|
57
|
-
MatchFieldType["BODY"] = "BODY";
|
|
58
|
-
MatchFieldType["HEADER"] = "HEADER";
|
|
59
|
-
MatchFieldType["METHOD"] = "METHOD";
|
|
60
|
-
MatchFieldType["QUERY_STRING"] = "QUERY_STRING";
|
|
61
|
-
MatchFieldType["SINGLE_QUERY_ARG"] = "SINGLE_QUERY_ARG";
|
|
62
|
-
MatchFieldType["URI"] = "URI";
|
|
63
|
-
})(MatchFieldType || (MatchFieldType = {}));
|
|
64
|
-
export var FieldToMatch;
|
|
65
|
-
(function (FieldToMatch) {
|
|
66
|
-
/**
|
|
67
|
-
* @internal
|
|
68
|
-
*/
|
|
69
|
-
FieldToMatch.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
70
|
-
})(FieldToMatch || (FieldToMatch = {}));
|
|
71
|
-
export var PositionalConstraint;
|
|
72
|
-
(function (PositionalConstraint) {
|
|
73
|
-
PositionalConstraint["CONTAINS"] = "CONTAINS";
|
|
74
|
-
PositionalConstraint["CONTAINS_WORD"] = "CONTAINS_WORD";
|
|
75
|
-
PositionalConstraint["ENDS_WITH"] = "ENDS_WITH";
|
|
76
|
-
PositionalConstraint["EXACTLY"] = "EXACTLY";
|
|
77
|
-
PositionalConstraint["STARTS_WITH"] = "STARTS_WITH";
|
|
78
|
-
})(PositionalConstraint || (PositionalConstraint = {}));
|
|
79
|
-
export var TextTransformation;
|
|
80
|
-
(function (TextTransformation) {
|
|
81
|
-
TextTransformation["CMD_LINE"] = "CMD_LINE";
|
|
82
|
-
TextTransformation["COMPRESS_WHITE_SPACE"] = "COMPRESS_WHITE_SPACE";
|
|
83
|
-
TextTransformation["HTML_ENTITY_DECODE"] = "HTML_ENTITY_DECODE";
|
|
84
|
-
TextTransformation["LOWERCASE"] = "LOWERCASE";
|
|
85
|
-
TextTransformation["NONE"] = "NONE";
|
|
86
|
-
TextTransformation["URL_DECODE"] = "URL_DECODE";
|
|
87
|
-
})(TextTransformation || (TextTransformation = {}));
|
|
88
|
-
export var ByteMatchTuple;
|
|
89
|
-
(function (ByteMatchTuple) {
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
ByteMatchTuple.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
94
|
-
})(ByteMatchTuple || (ByteMatchTuple = {}));
|
|
95
|
-
export var ByteMatchSet;
|
|
96
|
-
(function (ByteMatchSet) {
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
ByteMatchSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
|
-
})(ByteMatchSet || (ByteMatchSet = {}));
|
|
102
|
-
export var CreateByteMatchSetResponse;
|
|
103
|
-
(function (CreateByteMatchSetResponse) {
|
|
104
|
-
/**
|
|
105
|
-
* @internal
|
|
106
|
-
*/
|
|
107
|
-
CreateByteMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
-
})(CreateByteMatchSetResponse || (CreateByteMatchSetResponse = {}));
|
|
109
|
-
export var WAFDisallowedNameException;
|
|
110
|
-
(function (WAFDisallowedNameException) {
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
WAFDisallowedNameException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
115
|
-
})(WAFDisallowedNameException || (WAFDisallowedNameException = {}));
|
|
116
|
-
export var WAFInternalErrorException;
|
|
117
|
-
(function (WAFInternalErrorException) {
|
|
118
|
-
/**
|
|
119
|
-
* @internal
|
|
120
|
-
*/
|
|
121
|
-
WAFInternalErrorException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
-
})(WAFInternalErrorException || (WAFInternalErrorException = {}));
|
|
123
|
-
export var WAFInvalidAccountException;
|
|
124
|
-
(function (WAFInvalidAccountException) {
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
WAFInvalidAccountException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
-
})(WAFInvalidAccountException || (WAFInvalidAccountException = {}));
|
|
130
|
-
export var ParameterExceptionField;
|
|
131
|
-
(function (ParameterExceptionField) {
|
|
132
|
-
ParameterExceptionField["BYTE_MATCH_FIELD_TYPE"] = "BYTE_MATCH_FIELD_TYPE";
|
|
133
|
-
ParameterExceptionField["BYTE_MATCH_POSITIONAL_CONSTRAINT"] = "BYTE_MATCH_POSITIONAL_CONSTRAINT";
|
|
134
|
-
ParameterExceptionField["BYTE_MATCH_TEXT_TRANSFORMATION"] = "BYTE_MATCH_TEXT_TRANSFORMATION";
|
|
135
|
-
ParameterExceptionField["CHANGE_ACTION"] = "CHANGE_ACTION";
|
|
136
|
-
ParameterExceptionField["GEO_MATCH_LOCATION_TYPE"] = "GEO_MATCH_LOCATION_TYPE";
|
|
137
|
-
ParameterExceptionField["GEO_MATCH_LOCATION_VALUE"] = "GEO_MATCH_LOCATION_VALUE";
|
|
138
|
-
ParameterExceptionField["IPSET_TYPE"] = "IPSET_TYPE";
|
|
139
|
-
ParameterExceptionField["NEXT_MARKER"] = "NEXT_MARKER";
|
|
140
|
-
ParameterExceptionField["PREDICATE_TYPE"] = "PREDICATE_TYPE";
|
|
141
|
-
ParameterExceptionField["RATE_KEY"] = "RATE_KEY";
|
|
142
|
-
ParameterExceptionField["RESOURCE_ARN"] = "RESOURCE_ARN";
|
|
143
|
-
ParameterExceptionField["RULE_TYPE"] = "RULE_TYPE";
|
|
144
|
-
ParameterExceptionField["SIZE_CONSTRAINT_COMPARISON_OPERATOR"] = "SIZE_CONSTRAINT_COMPARISON_OPERATOR";
|
|
145
|
-
ParameterExceptionField["SQL_INJECTION_MATCH_FIELD_TYPE"] = "SQL_INJECTION_MATCH_FIELD_TYPE";
|
|
146
|
-
ParameterExceptionField["TAGS"] = "TAGS";
|
|
147
|
-
ParameterExceptionField["TAG_KEYS"] = "TAG_KEYS";
|
|
148
|
-
ParameterExceptionField["WAF_ACTION"] = "WAF_ACTION";
|
|
149
|
-
ParameterExceptionField["WAF_OVERRIDE_ACTION"] = "WAF_OVERRIDE_ACTION";
|
|
150
|
-
})(ParameterExceptionField || (ParameterExceptionField = {}));
|
|
151
|
-
export var ParameterExceptionReason;
|
|
152
|
-
(function (ParameterExceptionReason) {
|
|
153
|
-
ParameterExceptionReason["ILLEGAL_ARGUMENT"] = "ILLEGAL_ARGUMENT";
|
|
154
|
-
ParameterExceptionReason["ILLEGAL_COMBINATION"] = "ILLEGAL_COMBINATION";
|
|
155
|
-
ParameterExceptionReason["INVALID_OPTION"] = "INVALID_OPTION";
|
|
156
|
-
ParameterExceptionReason["INVALID_TAG_KEY"] = "INVALID_TAG_KEY";
|
|
157
|
-
})(ParameterExceptionReason || (ParameterExceptionReason = {}));
|
|
158
|
-
export var WAFInvalidParameterException;
|
|
159
|
-
(function (WAFInvalidParameterException) {
|
|
160
|
-
/**
|
|
161
|
-
* @internal
|
|
162
|
-
*/
|
|
163
|
-
WAFInvalidParameterException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
164
|
-
})(WAFInvalidParameterException || (WAFInvalidParameterException = {}));
|
|
165
|
-
export var WAFLimitsExceededException;
|
|
166
|
-
(function (WAFLimitsExceededException) {
|
|
167
|
-
/**
|
|
168
|
-
* @internal
|
|
169
|
-
*/
|
|
170
|
-
WAFLimitsExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
|
-
})(WAFLimitsExceededException || (WAFLimitsExceededException = {}));
|
|
172
|
-
export var WAFStaleDataException;
|
|
173
|
-
(function (WAFStaleDataException) {
|
|
174
|
-
/**
|
|
175
|
-
* @internal
|
|
176
|
-
*/
|
|
177
|
-
WAFStaleDataException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
-
})(WAFStaleDataException || (WAFStaleDataException = {}));
|
|
179
|
-
export var CreateGeoMatchSetRequest;
|
|
180
|
-
(function (CreateGeoMatchSetRequest) {
|
|
181
|
-
/**
|
|
182
|
-
* @internal
|
|
183
|
-
*/
|
|
184
|
-
CreateGeoMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
-
})(CreateGeoMatchSetRequest || (CreateGeoMatchSetRequest = {}));
|
|
186
|
-
export var GeoMatchConstraintType;
|
|
187
|
-
(function (GeoMatchConstraintType) {
|
|
188
|
-
GeoMatchConstraintType["Country"] = "Country";
|
|
189
|
-
})(GeoMatchConstraintType || (GeoMatchConstraintType = {}));
|
|
190
|
-
export var GeoMatchConstraintValue;
|
|
191
|
-
(function (GeoMatchConstraintValue) {
|
|
192
|
-
GeoMatchConstraintValue["AD"] = "AD";
|
|
193
|
-
GeoMatchConstraintValue["AE"] = "AE";
|
|
194
|
-
GeoMatchConstraintValue["AF"] = "AF";
|
|
195
|
-
GeoMatchConstraintValue["AG"] = "AG";
|
|
196
|
-
GeoMatchConstraintValue["AI"] = "AI";
|
|
197
|
-
GeoMatchConstraintValue["AL"] = "AL";
|
|
198
|
-
GeoMatchConstraintValue["AM"] = "AM";
|
|
199
|
-
GeoMatchConstraintValue["AO"] = "AO";
|
|
200
|
-
GeoMatchConstraintValue["AQ"] = "AQ";
|
|
201
|
-
GeoMatchConstraintValue["AR"] = "AR";
|
|
202
|
-
GeoMatchConstraintValue["AS"] = "AS";
|
|
203
|
-
GeoMatchConstraintValue["AT"] = "AT";
|
|
204
|
-
GeoMatchConstraintValue["AU"] = "AU";
|
|
205
|
-
GeoMatchConstraintValue["AW"] = "AW";
|
|
206
|
-
GeoMatchConstraintValue["AX"] = "AX";
|
|
207
|
-
GeoMatchConstraintValue["AZ"] = "AZ";
|
|
208
|
-
GeoMatchConstraintValue["BA"] = "BA";
|
|
209
|
-
GeoMatchConstraintValue["BB"] = "BB";
|
|
210
|
-
GeoMatchConstraintValue["BD"] = "BD";
|
|
211
|
-
GeoMatchConstraintValue["BE"] = "BE";
|
|
212
|
-
GeoMatchConstraintValue["BF"] = "BF";
|
|
213
|
-
GeoMatchConstraintValue["BG"] = "BG";
|
|
214
|
-
GeoMatchConstraintValue["BH"] = "BH";
|
|
215
|
-
GeoMatchConstraintValue["BI"] = "BI";
|
|
216
|
-
GeoMatchConstraintValue["BJ"] = "BJ";
|
|
217
|
-
GeoMatchConstraintValue["BL"] = "BL";
|
|
218
|
-
GeoMatchConstraintValue["BM"] = "BM";
|
|
219
|
-
GeoMatchConstraintValue["BN"] = "BN";
|
|
220
|
-
GeoMatchConstraintValue["BO"] = "BO";
|
|
221
|
-
GeoMatchConstraintValue["BQ"] = "BQ";
|
|
222
|
-
GeoMatchConstraintValue["BR"] = "BR";
|
|
223
|
-
GeoMatchConstraintValue["BS"] = "BS";
|
|
224
|
-
GeoMatchConstraintValue["BT"] = "BT";
|
|
225
|
-
GeoMatchConstraintValue["BV"] = "BV";
|
|
226
|
-
GeoMatchConstraintValue["BW"] = "BW";
|
|
227
|
-
GeoMatchConstraintValue["BY"] = "BY";
|
|
228
|
-
GeoMatchConstraintValue["BZ"] = "BZ";
|
|
229
|
-
GeoMatchConstraintValue["CA"] = "CA";
|
|
230
|
-
GeoMatchConstraintValue["CC"] = "CC";
|
|
231
|
-
GeoMatchConstraintValue["CD"] = "CD";
|
|
232
|
-
GeoMatchConstraintValue["CF"] = "CF";
|
|
233
|
-
GeoMatchConstraintValue["CG"] = "CG";
|
|
234
|
-
GeoMatchConstraintValue["CH"] = "CH";
|
|
235
|
-
GeoMatchConstraintValue["CI"] = "CI";
|
|
236
|
-
GeoMatchConstraintValue["CK"] = "CK";
|
|
237
|
-
GeoMatchConstraintValue["CL"] = "CL";
|
|
238
|
-
GeoMatchConstraintValue["CM"] = "CM";
|
|
239
|
-
GeoMatchConstraintValue["CN"] = "CN";
|
|
240
|
-
GeoMatchConstraintValue["CO"] = "CO";
|
|
241
|
-
GeoMatchConstraintValue["CR"] = "CR";
|
|
242
|
-
GeoMatchConstraintValue["CU"] = "CU";
|
|
243
|
-
GeoMatchConstraintValue["CV"] = "CV";
|
|
244
|
-
GeoMatchConstraintValue["CW"] = "CW";
|
|
245
|
-
GeoMatchConstraintValue["CX"] = "CX";
|
|
246
|
-
GeoMatchConstraintValue["CY"] = "CY";
|
|
247
|
-
GeoMatchConstraintValue["CZ"] = "CZ";
|
|
248
|
-
GeoMatchConstraintValue["DE"] = "DE";
|
|
249
|
-
GeoMatchConstraintValue["DJ"] = "DJ";
|
|
250
|
-
GeoMatchConstraintValue["DK"] = "DK";
|
|
251
|
-
GeoMatchConstraintValue["DM"] = "DM";
|
|
252
|
-
GeoMatchConstraintValue["DO"] = "DO";
|
|
253
|
-
GeoMatchConstraintValue["DZ"] = "DZ";
|
|
254
|
-
GeoMatchConstraintValue["EC"] = "EC";
|
|
255
|
-
GeoMatchConstraintValue["EE"] = "EE";
|
|
256
|
-
GeoMatchConstraintValue["EG"] = "EG";
|
|
257
|
-
GeoMatchConstraintValue["EH"] = "EH";
|
|
258
|
-
GeoMatchConstraintValue["ER"] = "ER";
|
|
259
|
-
GeoMatchConstraintValue["ES"] = "ES";
|
|
260
|
-
GeoMatchConstraintValue["ET"] = "ET";
|
|
261
|
-
GeoMatchConstraintValue["FI"] = "FI";
|
|
262
|
-
GeoMatchConstraintValue["FJ"] = "FJ";
|
|
263
|
-
GeoMatchConstraintValue["FK"] = "FK";
|
|
264
|
-
GeoMatchConstraintValue["FM"] = "FM";
|
|
265
|
-
GeoMatchConstraintValue["FO"] = "FO";
|
|
266
|
-
GeoMatchConstraintValue["FR"] = "FR";
|
|
267
|
-
GeoMatchConstraintValue["GA"] = "GA";
|
|
268
|
-
GeoMatchConstraintValue["GB"] = "GB";
|
|
269
|
-
GeoMatchConstraintValue["GD"] = "GD";
|
|
270
|
-
GeoMatchConstraintValue["GE"] = "GE";
|
|
271
|
-
GeoMatchConstraintValue["GF"] = "GF";
|
|
272
|
-
GeoMatchConstraintValue["GG"] = "GG";
|
|
273
|
-
GeoMatchConstraintValue["GH"] = "GH";
|
|
274
|
-
GeoMatchConstraintValue["GI"] = "GI";
|
|
275
|
-
GeoMatchConstraintValue["GL"] = "GL";
|
|
276
|
-
GeoMatchConstraintValue["GM"] = "GM";
|
|
277
|
-
GeoMatchConstraintValue["GN"] = "GN";
|
|
278
|
-
GeoMatchConstraintValue["GP"] = "GP";
|
|
279
|
-
GeoMatchConstraintValue["GQ"] = "GQ";
|
|
280
|
-
GeoMatchConstraintValue["GR"] = "GR";
|
|
281
|
-
GeoMatchConstraintValue["GS"] = "GS";
|
|
282
|
-
GeoMatchConstraintValue["GT"] = "GT";
|
|
283
|
-
GeoMatchConstraintValue["GU"] = "GU";
|
|
284
|
-
GeoMatchConstraintValue["GW"] = "GW";
|
|
285
|
-
GeoMatchConstraintValue["GY"] = "GY";
|
|
286
|
-
GeoMatchConstraintValue["HK"] = "HK";
|
|
287
|
-
GeoMatchConstraintValue["HM"] = "HM";
|
|
288
|
-
GeoMatchConstraintValue["HN"] = "HN";
|
|
289
|
-
GeoMatchConstraintValue["HR"] = "HR";
|
|
290
|
-
GeoMatchConstraintValue["HT"] = "HT";
|
|
291
|
-
GeoMatchConstraintValue["HU"] = "HU";
|
|
292
|
-
GeoMatchConstraintValue["ID"] = "ID";
|
|
293
|
-
GeoMatchConstraintValue["IE"] = "IE";
|
|
294
|
-
GeoMatchConstraintValue["IL"] = "IL";
|
|
295
|
-
GeoMatchConstraintValue["IM"] = "IM";
|
|
296
|
-
GeoMatchConstraintValue["IN"] = "IN";
|
|
297
|
-
GeoMatchConstraintValue["IO"] = "IO";
|
|
298
|
-
GeoMatchConstraintValue["IQ"] = "IQ";
|
|
299
|
-
GeoMatchConstraintValue["IR"] = "IR";
|
|
300
|
-
GeoMatchConstraintValue["IS"] = "IS";
|
|
301
|
-
GeoMatchConstraintValue["IT"] = "IT";
|
|
302
|
-
GeoMatchConstraintValue["JE"] = "JE";
|
|
303
|
-
GeoMatchConstraintValue["JM"] = "JM";
|
|
304
|
-
GeoMatchConstraintValue["JO"] = "JO";
|
|
305
|
-
GeoMatchConstraintValue["JP"] = "JP";
|
|
306
|
-
GeoMatchConstraintValue["KE"] = "KE";
|
|
307
|
-
GeoMatchConstraintValue["KG"] = "KG";
|
|
308
|
-
GeoMatchConstraintValue["KH"] = "KH";
|
|
309
|
-
GeoMatchConstraintValue["KI"] = "KI";
|
|
310
|
-
GeoMatchConstraintValue["KM"] = "KM";
|
|
311
|
-
GeoMatchConstraintValue["KN"] = "KN";
|
|
312
|
-
GeoMatchConstraintValue["KP"] = "KP";
|
|
313
|
-
GeoMatchConstraintValue["KR"] = "KR";
|
|
314
|
-
GeoMatchConstraintValue["KW"] = "KW";
|
|
315
|
-
GeoMatchConstraintValue["KY"] = "KY";
|
|
316
|
-
GeoMatchConstraintValue["KZ"] = "KZ";
|
|
317
|
-
GeoMatchConstraintValue["LA"] = "LA";
|
|
318
|
-
GeoMatchConstraintValue["LB"] = "LB";
|
|
319
|
-
GeoMatchConstraintValue["LC"] = "LC";
|
|
320
|
-
GeoMatchConstraintValue["LI"] = "LI";
|
|
321
|
-
GeoMatchConstraintValue["LK"] = "LK";
|
|
322
|
-
GeoMatchConstraintValue["LR"] = "LR";
|
|
323
|
-
GeoMatchConstraintValue["LS"] = "LS";
|
|
324
|
-
GeoMatchConstraintValue["LT"] = "LT";
|
|
325
|
-
GeoMatchConstraintValue["LU"] = "LU";
|
|
326
|
-
GeoMatchConstraintValue["LV"] = "LV";
|
|
327
|
-
GeoMatchConstraintValue["LY"] = "LY";
|
|
328
|
-
GeoMatchConstraintValue["MA"] = "MA";
|
|
329
|
-
GeoMatchConstraintValue["MC"] = "MC";
|
|
330
|
-
GeoMatchConstraintValue["MD"] = "MD";
|
|
331
|
-
GeoMatchConstraintValue["ME"] = "ME";
|
|
332
|
-
GeoMatchConstraintValue["MF"] = "MF";
|
|
333
|
-
GeoMatchConstraintValue["MG"] = "MG";
|
|
334
|
-
GeoMatchConstraintValue["MH"] = "MH";
|
|
335
|
-
GeoMatchConstraintValue["MK"] = "MK";
|
|
336
|
-
GeoMatchConstraintValue["ML"] = "ML";
|
|
337
|
-
GeoMatchConstraintValue["MM"] = "MM";
|
|
338
|
-
GeoMatchConstraintValue["MN"] = "MN";
|
|
339
|
-
GeoMatchConstraintValue["MO"] = "MO";
|
|
340
|
-
GeoMatchConstraintValue["MP"] = "MP";
|
|
341
|
-
GeoMatchConstraintValue["MQ"] = "MQ";
|
|
342
|
-
GeoMatchConstraintValue["MR"] = "MR";
|
|
343
|
-
GeoMatchConstraintValue["MS"] = "MS";
|
|
344
|
-
GeoMatchConstraintValue["MT"] = "MT";
|
|
345
|
-
GeoMatchConstraintValue["MU"] = "MU";
|
|
346
|
-
GeoMatchConstraintValue["MV"] = "MV";
|
|
347
|
-
GeoMatchConstraintValue["MW"] = "MW";
|
|
348
|
-
GeoMatchConstraintValue["MX"] = "MX";
|
|
349
|
-
GeoMatchConstraintValue["MY"] = "MY";
|
|
350
|
-
GeoMatchConstraintValue["MZ"] = "MZ";
|
|
351
|
-
GeoMatchConstraintValue["NA"] = "NA";
|
|
352
|
-
GeoMatchConstraintValue["NC"] = "NC";
|
|
353
|
-
GeoMatchConstraintValue["NE"] = "NE";
|
|
354
|
-
GeoMatchConstraintValue["NF"] = "NF";
|
|
355
|
-
GeoMatchConstraintValue["NG"] = "NG";
|
|
356
|
-
GeoMatchConstraintValue["NI"] = "NI";
|
|
357
|
-
GeoMatchConstraintValue["NL"] = "NL";
|
|
358
|
-
GeoMatchConstraintValue["NO"] = "NO";
|
|
359
|
-
GeoMatchConstraintValue["NP"] = "NP";
|
|
360
|
-
GeoMatchConstraintValue["NR"] = "NR";
|
|
361
|
-
GeoMatchConstraintValue["NU"] = "NU";
|
|
362
|
-
GeoMatchConstraintValue["NZ"] = "NZ";
|
|
363
|
-
GeoMatchConstraintValue["OM"] = "OM";
|
|
364
|
-
GeoMatchConstraintValue["PA"] = "PA";
|
|
365
|
-
GeoMatchConstraintValue["PE"] = "PE";
|
|
366
|
-
GeoMatchConstraintValue["PF"] = "PF";
|
|
367
|
-
GeoMatchConstraintValue["PG"] = "PG";
|
|
368
|
-
GeoMatchConstraintValue["PH"] = "PH";
|
|
369
|
-
GeoMatchConstraintValue["PK"] = "PK";
|
|
370
|
-
GeoMatchConstraintValue["PL"] = "PL";
|
|
371
|
-
GeoMatchConstraintValue["PM"] = "PM";
|
|
372
|
-
GeoMatchConstraintValue["PN"] = "PN";
|
|
373
|
-
GeoMatchConstraintValue["PR"] = "PR";
|
|
374
|
-
GeoMatchConstraintValue["PS"] = "PS";
|
|
375
|
-
GeoMatchConstraintValue["PT"] = "PT";
|
|
376
|
-
GeoMatchConstraintValue["PW"] = "PW";
|
|
377
|
-
GeoMatchConstraintValue["PY"] = "PY";
|
|
378
|
-
GeoMatchConstraintValue["QA"] = "QA";
|
|
379
|
-
GeoMatchConstraintValue["RE"] = "RE";
|
|
380
|
-
GeoMatchConstraintValue["RO"] = "RO";
|
|
381
|
-
GeoMatchConstraintValue["RS"] = "RS";
|
|
382
|
-
GeoMatchConstraintValue["RU"] = "RU";
|
|
383
|
-
GeoMatchConstraintValue["RW"] = "RW";
|
|
384
|
-
GeoMatchConstraintValue["SA"] = "SA";
|
|
385
|
-
GeoMatchConstraintValue["SB"] = "SB";
|
|
386
|
-
GeoMatchConstraintValue["SC"] = "SC";
|
|
387
|
-
GeoMatchConstraintValue["SD"] = "SD";
|
|
388
|
-
GeoMatchConstraintValue["SE"] = "SE";
|
|
389
|
-
GeoMatchConstraintValue["SG"] = "SG";
|
|
390
|
-
GeoMatchConstraintValue["SH"] = "SH";
|
|
391
|
-
GeoMatchConstraintValue["SI"] = "SI";
|
|
392
|
-
GeoMatchConstraintValue["SJ"] = "SJ";
|
|
393
|
-
GeoMatchConstraintValue["SK"] = "SK";
|
|
394
|
-
GeoMatchConstraintValue["SL"] = "SL";
|
|
395
|
-
GeoMatchConstraintValue["SM"] = "SM";
|
|
396
|
-
GeoMatchConstraintValue["SN"] = "SN";
|
|
397
|
-
GeoMatchConstraintValue["SO"] = "SO";
|
|
398
|
-
GeoMatchConstraintValue["SR"] = "SR";
|
|
399
|
-
GeoMatchConstraintValue["SS"] = "SS";
|
|
400
|
-
GeoMatchConstraintValue["ST"] = "ST";
|
|
401
|
-
GeoMatchConstraintValue["SV"] = "SV";
|
|
402
|
-
GeoMatchConstraintValue["SX"] = "SX";
|
|
403
|
-
GeoMatchConstraintValue["SY"] = "SY";
|
|
404
|
-
GeoMatchConstraintValue["SZ"] = "SZ";
|
|
405
|
-
GeoMatchConstraintValue["TC"] = "TC";
|
|
406
|
-
GeoMatchConstraintValue["TD"] = "TD";
|
|
407
|
-
GeoMatchConstraintValue["TF"] = "TF";
|
|
408
|
-
GeoMatchConstraintValue["TG"] = "TG";
|
|
409
|
-
GeoMatchConstraintValue["TH"] = "TH";
|
|
410
|
-
GeoMatchConstraintValue["TJ"] = "TJ";
|
|
411
|
-
GeoMatchConstraintValue["TK"] = "TK";
|
|
412
|
-
GeoMatchConstraintValue["TL"] = "TL";
|
|
413
|
-
GeoMatchConstraintValue["TM"] = "TM";
|
|
414
|
-
GeoMatchConstraintValue["TN"] = "TN";
|
|
415
|
-
GeoMatchConstraintValue["TO"] = "TO";
|
|
416
|
-
GeoMatchConstraintValue["TR"] = "TR";
|
|
417
|
-
GeoMatchConstraintValue["TT"] = "TT";
|
|
418
|
-
GeoMatchConstraintValue["TV"] = "TV";
|
|
419
|
-
GeoMatchConstraintValue["TW"] = "TW";
|
|
420
|
-
GeoMatchConstraintValue["TZ"] = "TZ";
|
|
421
|
-
GeoMatchConstraintValue["UA"] = "UA";
|
|
422
|
-
GeoMatchConstraintValue["UG"] = "UG";
|
|
423
|
-
GeoMatchConstraintValue["UM"] = "UM";
|
|
424
|
-
GeoMatchConstraintValue["US"] = "US";
|
|
425
|
-
GeoMatchConstraintValue["UY"] = "UY";
|
|
426
|
-
GeoMatchConstraintValue["UZ"] = "UZ";
|
|
427
|
-
GeoMatchConstraintValue["VA"] = "VA";
|
|
428
|
-
GeoMatchConstraintValue["VC"] = "VC";
|
|
429
|
-
GeoMatchConstraintValue["VE"] = "VE";
|
|
430
|
-
GeoMatchConstraintValue["VG"] = "VG";
|
|
431
|
-
GeoMatchConstraintValue["VI"] = "VI";
|
|
432
|
-
GeoMatchConstraintValue["VN"] = "VN";
|
|
433
|
-
GeoMatchConstraintValue["VU"] = "VU";
|
|
434
|
-
GeoMatchConstraintValue["WF"] = "WF";
|
|
435
|
-
GeoMatchConstraintValue["WS"] = "WS";
|
|
436
|
-
GeoMatchConstraintValue["YE"] = "YE";
|
|
437
|
-
GeoMatchConstraintValue["YT"] = "YT";
|
|
438
|
-
GeoMatchConstraintValue["ZA"] = "ZA";
|
|
439
|
-
GeoMatchConstraintValue["ZM"] = "ZM";
|
|
440
|
-
GeoMatchConstraintValue["ZW"] = "ZW";
|
|
441
|
-
})(GeoMatchConstraintValue || (GeoMatchConstraintValue = {}));
|
|
442
|
-
export var GeoMatchConstraint;
|
|
443
|
-
(function (GeoMatchConstraint) {
|
|
444
|
-
/**
|
|
445
|
-
* @internal
|
|
446
|
-
*/
|
|
447
|
-
GeoMatchConstraint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
448
|
-
})(GeoMatchConstraint || (GeoMatchConstraint = {}));
|
|
449
|
-
export var GeoMatchSet;
|
|
450
|
-
(function (GeoMatchSet) {
|
|
451
|
-
/**
|
|
452
|
-
* @internal
|
|
453
|
-
*/
|
|
454
|
-
GeoMatchSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
455
|
-
})(GeoMatchSet || (GeoMatchSet = {}));
|
|
456
|
-
export var CreateGeoMatchSetResponse;
|
|
457
|
-
(function (CreateGeoMatchSetResponse) {
|
|
458
|
-
/**
|
|
459
|
-
* @internal
|
|
460
|
-
*/
|
|
461
|
-
CreateGeoMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
462
|
-
})(CreateGeoMatchSetResponse || (CreateGeoMatchSetResponse = {}));
|
|
463
|
-
export var CreateIPSetRequest;
|
|
464
|
-
(function (CreateIPSetRequest) {
|
|
465
|
-
/**
|
|
466
|
-
* @internal
|
|
467
|
-
*/
|
|
468
|
-
CreateIPSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
469
|
-
})(CreateIPSetRequest || (CreateIPSetRequest = {}));
|
|
470
|
-
export var IPSetDescriptorType;
|
|
471
|
-
(function (IPSetDescriptorType) {
|
|
472
|
-
IPSetDescriptorType["IPV4"] = "IPV4";
|
|
473
|
-
IPSetDescriptorType["IPV6"] = "IPV6";
|
|
474
|
-
})(IPSetDescriptorType || (IPSetDescriptorType = {}));
|
|
475
|
-
export var IPSetDescriptor;
|
|
476
|
-
(function (IPSetDescriptor) {
|
|
477
|
-
/**
|
|
478
|
-
* @internal
|
|
479
|
-
*/
|
|
480
|
-
IPSetDescriptor.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
481
|
-
})(IPSetDescriptor || (IPSetDescriptor = {}));
|
|
482
|
-
export var IPSet;
|
|
483
|
-
(function (IPSet) {
|
|
484
|
-
/**
|
|
485
|
-
* @internal
|
|
486
|
-
*/
|
|
487
|
-
IPSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
488
|
-
})(IPSet || (IPSet = {}));
|
|
489
|
-
export var CreateIPSetResponse;
|
|
490
|
-
(function (CreateIPSetResponse) {
|
|
491
|
-
/**
|
|
492
|
-
* @internal
|
|
493
|
-
*/
|
|
494
|
-
CreateIPSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
495
|
-
})(CreateIPSetResponse || (CreateIPSetResponse = {}));
|
|
496
|
-
export var RateKey;
|
|
497
|
-
(function (RateKey) {
|
|
498
|
-
RateKey["IP"] = "IP";
|
|
499
|
-
})(RateKey || (RateKey = {}));
|
|
500
|
-
export var Tag;
|
|
501
|
-
(function (Tag) {
|
|
502
|
-
/**
|
|
503
|
-
* @internal
|
|
504
|
-
*/
|
|
505
|
-
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
506
|
-
})(Tag || (Tag = {}));
|
|
507
|
-
export var CreateRateBasedRuleRequest;
|
|
508
|
-
(function (CreateRateBasedRuleRequest) {
|
|
509
|
-
/**
|
|
510
|
-
* @internal
|
|
511
|
-
*/
|
|
512
|
-
CreateRateBasedRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
513
|
-
})(CreateRateBasedRuleRequest || (CreateRateBasedRuleRequest = {}));
|
|
514
|
-
export var PredicateType;
|
|
515
|
-
(function (PredicateType) {
|
|
516
|
-
PredicateType["BYTE_MATCH"] = "ByteMatch";
|
|
517
|
-
PredicateType["GEO_MATCH"] = "GeoMatch";
|
|
518
|
-
PredicateType["IP_MATCH"] = "IPMatch";
|
|
519
|
-
PredicateType["REGEX_MATCH"] = "RegexMatch";
|
|
520
|
-
PredicateType["SIZE_CONSTRAINT"] = "SizeConstraint";
|
|
521
|
-
PredicateType["SQL_INJECTION_MATCH"] = "SqlInjectionMatch";
|
|
522
|
-
PredicateType["XSS_MATCH"] = "XssMatch";
|
|
523
|
-
})(PredicateType || (PredicateType = {}));
|
|
524
|
-
export var Predicate;
|
|
525
|
-
(function (Predicate) {
|
|
526
|
-
/**
|
|
527
|
-
* @internal
|
|
528
|
-
*/
|
|
529
|
-
Predicate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
530
|
-
})(Predicate || (Predicate = {}));
|
|
531
|
-
export var RateBasedRule;
|
|
532
|
-
(function (RateBasedRule) {
|
|
533
|
-
/**
|
|
534
|
-
* @internal
|
|
535
|
-
*/
|
|
536
|
-
RateBasedRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
537
|
-
})(RateBasedRule || (RateBasedRule = {}));
|
|
538
|
-
export var CreateRateBasedRuleResponse;
|
|
539
|
-
(function (CreateRateBasedRuleResponse) {
|
|
540
|
-
/**
|
|
541
|
-
* @internal
|
|
542
|
-
*/
|
|
543
|
-
CreateRateBasedRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
544
|
-
})(CreateRateBasedRuleResponse || (CreateRateBasedRuleResponse = {}));
|
|
545
|
-
export var WAFBadRequestException;
|
|
546
|
-
(function (WAFBadRequestException) {
|
|
547
|
-
/**
|
|
548
|
-
* @internal
|
|
549
|
-
*/
|
|
550
|
-
WAFBadRequestException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
551
|
-
})(WAFBadRequestException || (WAFBadRequestException = {}));
|
|
552
|
-
export var WAFTagOperationException;
|
|
553
|
-
(function (WAFTagOperationException) {
|
|
554
|
-
/**
|
|
555
|
-
* @internal
|
|
556
|
-
*/
|
|
557
|
-
WAFTagOperationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
558
|
-
})(WAFTagOperationException || (WAFTagOperationException = {}));
|
|
559
|
-
export var WAFTagOperationInternalErrorException;
|
|
560
|
-
(function (WAFTagOperationInternalErrorException) {
|
|
561
|
-
/**
|
|
562
|
-
* @internal
|
|
563
|
-
*/
|
|
564
|
-
WAFTagOperationInternalErrorException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
565
|
-
})(WAFTagOperationInternalErrorException || (WAFTagOperationInternalErrorException = {}));
|
|
566
|
-
export var CreateRegexMatchSetRequest;
|
|
567
|
-
(function (CreateRegexMatchSetRequest) {
|
|
568
|
-
/**
|
|
569
|
-
* @internal
|
|
570
|
-
*/
|
|
571
|
-
CreateRegexMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
572
|
-
})(CreateRegexMatchSetRequest || (CreateRegexMatchSetRequest = {}));
|
|
573
|
-
export var RegexMatchTuple;
|
|
574
|
-
(function (RegexMatchTuple) {
|
|
575
|
-
/**
|
|
576
|
-
* @internal
|
|
577
|
-
*/
|
|
578
|
-
RegexMatchTuple.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
579
|
-
})(RegexMatchTuple || (RegexMatchTuple = {}));
|
|
580
|
-
export var RegexMatchSet;
|
|
581
|
-
(function (RegexMatchSet) {
|
|
582
|
-
/**
|
|
583
|
-
* @internal
|
|
584
|
-
*/
|
|
585
|
-
RegexMatchSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
586
|
-
})(RegexMatchSet || (RegexMatchSet = {}));
|
|
587
|
-
export var CreateRegexMatchSetResponse;
|
|
588
|
-
(function (CreateRegexMatchSetResponse) {
|
|
589
|
-
/**
|
|
590
|
-
* @internal
|
|
591
|
-
*/
|
|
592
|
-
CreateRegexMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
593
|
-
})(CreateRegexMatchSetResponse || (CreateRegexMatchSetResponse = {}));
|
|
594
|
-
export var CreateRegexPatternSetRequest;
|
|
595
|
-
(function (CreateRegexPatternSetRequest) {
|
|
596
|
-
/**
|
|
597
|
-
* @internal
|
|
598
|
-
*/
|
|
599
|
-
CreateRegexPatternSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
600
|
-
})(CreateRegexPatternSetRequest || (CreateRegexPatternSetRequest = {}));
|
|
601
|
-
export var RegexPatternSet;
|
|
602
|
-
(function (RegexPatternSet) {
|
|
603
|
-
/**
|
|
604
|
-
* @internal
|
|
605
|
-
*/
|
|
606
|
-
RegexPatternSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
607
|
-
})(RegexPatternSet || (RegexPatternSet = {}));
|
|
608
|
-
export var CreateRegexPatternSetResponse;
|
|
609
|
-
(function (CreateRegexPatternSetResponse) {
|
|
610
|
-
/**
|
|
611
|
-
* @internal
|
|
612
|
-
*/
|
|
613
|
-
CreateRegexPatternSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
614
|
-
})(CreateRegexPatternSetResponse || (CreateRegexPatternSetResponse = {}));
|
|
615
|
-
export var CreateRuleRequest;
|
|
616
|
-
(function (CreateRuleRequest) {
|
|
617
|
-
/**
|
|
618
|
-
* @internal
|
|
619
|
-
*/
|
|
620
|
-
CreateRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
621
|
-
})(CreateRuleRequest || (CreateRuleRequest = {}));
|
|
622
|
-
export var Rule;
|
|
623
|
-
(function (Rule) {
|
|
624
|
-
/**
|
|
625
|
-
* @internal
|
|
626
|
-
*/
|
|
627
|
-
Rule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
628
|
-
})(Rule || (Rule = {}));
|
|
629
|
-
export var CreateRuleResponse;
|
|
630
|
-
(function (CreateRuleResponse) {
|
|
631
|
-
/**
|
|
632
|
-
* @internal
|
|
633
|
-
*/
|
|
634
|
-
CreateRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
635
|
-
})(CreateRuleResponse || (CreateRuleResponse = {}));
|
|
636
|
-
export var CreateRuleGroupRequest;
|
|
637
|
-
(function (CreateRuleGroupRequest) {
|
|
638
|
-
/**
|
|
639
|
-
* @internal
|
|
640
|
-
*/
|
|
641
|
-
CreateRuleGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
642
|
-
})(CreateRuleGroupRequest || (CreateRuleGroupRequest = {}));
|
|
643
|
-
export var RuleGroup;
|
|
644
|
-
(function (RuleGroup) {
|
|
645
|
-
/**
|
|
646
|
-
* @internal
|
|
647
|
-
*/
|
|
648
|
-
RuleGroup.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
649
|
-
})(RuleGroup || (RuleGroup = {}));
|
|
650
|
-
export var CreateRuleGroupResponse;
|
|
651
|
-
(function (CreateRuleGroupResponse) {
|
|
652
|
-
/**
|
|
653
|
-
* @internal
|
|
654
|
-
*/
|
|
655
|
-
CreateRuleGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
656
|
-
})(CreateRuleGroupResponse || (CreateRuleGroupResponse = {}));
|
|
657
|
-
export var CreateSizeConstraintSetRequest;
|
|
658
|
-
(function (CreateSizeConstraintSetRequest) {
|
|
659
|
-
/**
|
|
660
|
-
* @internal
|
|
661
|
-
*/
|
|
662
|
-
CreateSizeConstraintSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
663
|
-
})(CreateSizeConstraintSetRequest || (CreateSizeConstraintSetRequest = {}));
|
|
664
|
-
export var ComparisonOperator;
|
|
665
|
-
(function (ComparisonOperator) {
|
|
666
|
-
ComparisonOperator["EQ"] = "EQ";
|
|
667
|
-
ComparisonOperator["GE"] = "GE";
|
|
668
|
-
ComparisonOperator["GT"] = "GT";
|
|
669
|
-
ComparisonOperator["LE"] = "LE";
|
|
670
|
-
ComparisonOperator["LT"] = "LT";
|
|
671
|
-
ComparisonOperator["NE"] = "NE";
|
|
672
|
-
})(ComparisonOperator || (ComparisonOperator = {}));
|
|
673
|
-
export var SizeConstraint;
|
|
674
|
-
(function (SizeConstraint) {
|
|
675
|
-
/**
|
|
676
|
-
* @internal
|
|
677
|
-
*/
|
|
678
|
-
SizeConstraint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
679
|
-
})(SizeConstraint || (SizeConstraint = {}));
|
|
680
|
-
export var SizeConstraintSet;
|
|
681
|
-
(function (SizeConstraintSet) {
|
|
682
|
-
/**
|
|
683
|
-
* @internal
|
|
684
|
-
*/
|
|
685
|
-
SizeConstraintSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
686
|
-
})(SizeConstraintSet || (SizeConstraintSet = {}));
|
|
687
|
-
export var CreateSizeConstraintSetResponse;
|
|
688
|
-
(function (CreateSizeConstraintSetResponse) {
|
|
689
|
-
/**
|
|
690
|
-
* @internal
|
|
691
|
-
*/
|
|
692
|
-
CreateSizeConstraintSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
693
|
-
})(CreateSizeConstraintSetResponse || (CreateSizeConstraintSetResponse = {}));
|
|
694
|
-
export var CreateSqlInjectionMatchSetRequest;
|
|
695
|
-
(function (CreateSqlInjectionMatchSetRequest) {
|
|
696
|
-
/**
|
|
697
|
-
* @internal
|
|
698
|
-
*/
|
|
699
|
-
CreateSqlInjectionMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
700
|
-
})(CreateSqlInjectionMatchSetRequest || (CreateSqlInjectionMatchSetRequest = {}));
|
|
701
|
-
export var SqlInjectionMatchTuple;
|
|
702
|
-
(function (SqlInjectionMatchTuple) {
|
|
703
|
-
/**
|
|
704
|
-
* @internal
|
|
705
|
-
*/
|
|
706
|
-
SqlInjectionMatchTuple.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
707
|
-
})(SqlInjectionMatchTuple || (SqlInjectionMatchTuple = {}));
|
|
708
|
-
export var SqlInjectionMatchSet;
|
|
709
|
-
(function (SqlInjectionMatchSet) {
|
|
710
|
-
/**
|
|
711
|
-
* @internal
|
|
712
|
-
*/
|
|
713
|
-
SqlInjectionMatchSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
714
|
-
})(SqlInjectionMatchSet || (SqlInjectionMatchSet = {}));
|
|
715
|
-
export var CreateSqlInjectionMatchSetResponse;
|
|
716
|
-
(function (CreateSqlInjectionMatchSetResponse) {
|
|
717
|
-
/**
|
|
718
|
-
* @internal
|
|
719
|
-
*/
|
|
720
|
-
CreateSqlInjectionMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
721
|
-
})(CreateSqlInjectionMatchSetResponse || (CreateSqlInjectionMatchSetResponse = {}));
|
|
722
|
-
export var CreateWebACLRequest;
|
|
723
|
-
(function (CreateWebACLRequest) {
|
|
724
|
-
/**
|
|
725
|
-
* @internal
|
|
726
|
-
*/
|
|
727
|
-
CreateWebACLRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
728
|
-
})(CreateWebACLRequest || (CreateWebACLRequest = {}));
|
|
729
|
-
export var WebACL;
|
|
730
|
-
(function (WebACL) {
|
|
731
|
-
/**
|
|
732
|
-
* @internal
|
|
733
|
-
*/
|
|
734
|
-
WebACL.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
735
|
-
})(WebACL || (WebACL = {}));
|
|
736
|
-
export var CreateWebACLResponse;
|
|
737
|
-
(function (CreateWebACLResponse) {
|
|
738
|
-
/**
|
|
739
|
-
* @internal
|
|
740
|
-
*/
|
|
741
|
-
CreateWebACLResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
742
|
-
})(CreateWebACLResponse || (CreateWebACLResponse = {}));
|
|
743
|
-
export var CreateWebACLMigrationStackRequest;
|
|
744
|
-
(function (CreateWebACLMigrationStackRequest) {
|
|
745
|
-
/**
|
|
746
|
-
* @internal
|
|
747
|
-
*/
|
|
748
|
-
CreateWebACLMigrationStackRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
749
|
-
})(CreateWebACLMigrationStackRequest || (CreateWebACLMigrationStackRequest = {}));
|
|
750
|
-
export var CreateWebACLMigrationStackResponse;
|
|
751
|
-
(function (CreateWebACLMigrationStackResponse) {
|
|
752
|
-
/**
|
|
753
|
-
* @internal
|
|
754
|
-
*/
|
|
755
|
-
CreateWebACLMigrationStackResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
756
|
-
})(CreateWebACLMigrationStackResponse || (CreateWebACLMigrationStackResponse = {}));
|
|
757
|
-
export var MigrationErrorType;
|
|
758
|
-
(function (MigrationErrorType) {
|
|
759
|
-
MigrationErrorType["ENTITY_NOT_FOUND"] = "ENTITY_NOT_FOUND";
|
|
760
|
-
MigrationErrorType["ENTITY_NOT_SUPPORTED"] = "ENTITY_NOT_SUPPORTED";
|
|
761
|
-
MigrationErrorType["S3_BUCKET_INVALID_REGION"] = "S3_BUCKET_INVALID_REGION";
|
|
762
|
-
MigrationErrorType["S3_BUCKET_NOT_ACCESSIBLE"] = "S3_BUCKET_NOT_ACCESSIBLE";
|
|
763
|
-
MigrationErrorType["S3_BUCKET_NOT_FOUND"] = "S3_BUCKET_NOT_FOUND";
|
|
764
|
-
MigrationErrorType["S3_BUCKET_NO_PERMISSION"] = "S3_BUCKET_NO_PERMISSION";
|
|
765
|
-
MigrationErrorType["S3_INTERNAL_ERROR"] = "S3_INTERNAL_ERROR";
|
|
766
|
-
})(MigrationErrorType || (MigrationErrorType = {}));
|
|
767
|
-
export var WAFEntityMigrationException;
|
|
768
|
-
(function (WAFEntityMigrationException) {
|
|
769
|
-
/**
|
|
770
|
-
* @internal
|
|
771
|
-
*/
|
|
772
|
-
WAFEntityMigrationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
773
|
-
})(WAFEntityMigrationException || (WAFEntityMigrationException = {}));
|
|
774
|
-
export var WAFInvalidOperationException;
|
|
775
|
-
(function (WAFInvalidOperationException) {
|
|
776
|
-
/**
|
|
777
|
-
* @internal
|
|
778
|
-
*/
|
|
779
|
-
WAFInvalidOperationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
780
|
-
})(WAFInvalidOperationException || (WAFInvalidOperationException = {}));
|
|
781
|
-
export var WAFNonexistentItemException;
|
|
782
|
-
(function (WAFNonexistentItemException) {
|
|
783
|
-
/**
|
|
784
|
-
* @internal
|
|
785
|
-
*/
|
|
786
|
-
WAFNonexistentItemException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
787
|
-
})(WAFNonexistentItemException || (WAFNonexistentItemException = {}));
|
|
788
|
-
export var CreateXssMatchSetRequest;
|
|
789
|
-
(function (CreateXssMatchSetRequest) {
|
|
790
|
-
/**
|
|
791
|
-
* @internal
|
|
792
|
-
*/
|
|
793
|
-
CreateXssMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
794
|
-
})(CreateXssMatchSetRequest || (CreateXssMatchSetRequest = {}));
|
|
795
|
-
export var XssMatchTuple;
|
|
796
|
-
(function (XssMatchTuple) {
|
|
797
|
-
/**
|
|
798
|
-
* @internal
|
|
799
|
-
*/
|
|
800
|
-
XssMatchTuple.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
801
|
-
})(XssMatchTuple || (XssMatchTuple = {}));
|
|
802
|
-
export var XssMatchSet;
|
|
803
|
-
(function (XssMatchSet) {
|
|
804
|
-
/**
|
|
805
|
-
* @internal
|
|
806
|
-
*/
|
|
807
|
-
XssMatchSet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
808
|
-
})(XssMatchSet || (XssMatchSet = {}));
|
|
809
|
-
export var CreateXssMatchSetResponse;
|
|
810
|
-
(function (CreateXssMatchSetResponse) {
|
|
811
|
-
/**
|
|
812
|
-
* @internal
|
|
813
|
-
*/
|
|
814
|
-
CreateXssMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
815
|
-
})(CreateXssMatchSetResponse || (CreateXssMatchSetResponse = {}));
|
|
816
|
-
export var DeleteByteMatchSetRequest;
|
|
817
|
-
(function (DeleteByteMatchSetRequest) {
|
|
818
|
-
/**
|
|
819
|
-
* @internal
|
|
820
|
-
*/
|
|
821
|
-
DeleteByteMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
822
|
-
})(DeleteByteMatchSetRequest || (DeleteByteMatchSetRequest = {}));
|
|
823
|
-
export var DeleteByteMatchSetResponse;
|
|
824
|
-
(function (DeleteByteMatchSetResponse) {
|
|
825
|
-
/**
|
|
826
|
-
* @internal
|
|
827
|
-
*/
|
|
828
|
-
DeleteByteMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
829
|
-
})(DeleteByteMatchSetResponse || (DeleteByteMatchSetResponse = {}));
|
|
830
|
-
export var WAFNonEmptyEntityException;
|
|
831
|
-
(function (WAFNonEmptyEntityException) {
|
|
832
|
-
/**
|
|
833
|
-
* @internal
|
|
834
|
-
*/
|
|
835
|
-
WAFNonEmptyEntityException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
836
|
-
})(WAFNonEmptyEntityException || (WAFNonEmptyEntityException = {}));
|
|
837
|
-
export var WAFReferencedItemException;
|
|
838
|
-
(function (WAFReferencedItemException) {
|
|
839
|
-
/**
|
|
840
|
-
* @internal
|
|
841
|
-
*/
|
|
842
|
-
WAFReferencedItemException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
843
|
-
})(WAFReferencedItemException || (WAFReferencedItemException = {}));
|
|
844
|
-
export var DeleteGeoMatchSetRequest;
|
|
845
|
-
(function (DeleteGeoMatchSetRequest) {
|
|
846
|
-
/**
|
|
847
|
-
* @internal
|
|
848
|
-
*/
|
|
849
|
-
DeleteGeoMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
850
|
-
})(DeleteGeoMatchSetRequest || (DeleteGeoMatchSetRequest = {}));
|
|
851
|
-
export var DeleteGeoMatchSetResponse;
|
|
852
|
-
(function (DeleteGeoMatchSetResponse) {
|
|
853
|
-
/**
|
|
854
|
-
* @internal
|
|
855
|
-
*/
|
|
856
|
-
DeleteGeoMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
857
|
-
})(DeleteGeoMatchSetResponse || (DeleteGeoMatchSetResponse = {}));
|
|
858
|
-
export var DeleteIPSetRequest;
|
|
859
|
-
(function (DeleteIPSetRequest) {
|
|
860
|
-
/**
|
|
861
|
-
* @internal
|
|
862
|
-
*/
|
|
863
|
-
DeleteIPSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
864
|
-
})(DeleteIPSetRequest || (DeleteIPSetRequest = {}));
|
|
865
|
-
export var DeleteIPSetResponse;
|
|
866
|
-
(function (DeleteIPSetResponse) {
|
|
867
|
-
/**
|
|
868
|
-
* @internal
|
|
869
|
-
*/
|
|
870
|
-
DeleteIPSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
871
|
-
})(DeleteIPSetResponse || (DeleteIPSetResponse = {}));
|
|
872
|
-
export var DeleteLoggingConfigurationRequest;
|
|
873
|
-
(function (DeleteLoggingConfigurationRequest) {
|
|
874
|
-
/**
|
|
875
|
-
* @internal
|
|
876
|
-
*/
|
|
877
|
-
DeleteLoggingConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
878
|
-
})(DeleteLoggingConfigurationRequest || (DeleteLoggingConfigurationRequest = {}));
|
|
879
|
-
export var DeleteLoggingConfigurationResponse;
|
|
880
|
-
(function (DeleteLoggingConfigurationResponse) {
|
|
881
|
-
/**
|
|
882
|
-
* @internal
|
|
883
|
-
*/
|
|
884
|
-
DeleteLoggingConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
885
|
-
})(DeleteLoggingConfigurationResponse || (DeleteLoggingConfigurationResponse = {}));
|
|
886
|
-
export var DeletePermissionPolicyRequest;
|
|
887
|
-
(function (DeletePermissionPolicyRequest) {
|
|
888
|
-
/**
|
|
889
|
-
* @internal
|
|
890
|
-
*/
|
|
891
|
-
DeletePermissionPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
892
|
-
})(DeletePermissionPolicyRequest || (DeletePermissionPolicyRequest = {}));
|
|
893
|
-
export var DeletePermissionPolicyResponse;
|
|
894
|
-
(function (DeletePermissionPolicyResponse) {
|
|
895
|
-
/**
|
|
896
|
-
* @internal
|
|
897
|
-
*/
|
|
898
|
-
DeletePermissionPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
899
|
-
})(DeletePermissionPolicyResponse || (DeletePermissionPolicyResponse = {}));
|
|
900
|
-
export var DeleteRateBasedRuleRequest;
|
|
901
|
-
(function (DeleteRateBasedRuleRequest) {
|
|
902
|
-
/**
|
|
903
|
-
* @internal
|
|
904
|
-
*/
|
|
905
|
-
DeleteRateBasedRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
906
|
-
})(DeleteRateBasedRuleRequest || (DeleteRateBasedRuleRequest = {}));
|
|
907
|
-
export var DeleteRateBasedRuleResponse;
|
|
908
|
-
(function (DeleteRateBasedRuleResponse) {
|
|
909
|
-
/**
|
|
910
|
-
* @internal
|
|
911
|
-
*/
|
|
912
|
-
DeleteRateBasedRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
913
|
-
})(DeleteRateBasedRuleResponse || (DeleteRateBasedRuleResponse = {}));
|
|
914
|
-
export var DeleteRegexMatchSetRequest;
|
|
915
|
-
(function (DeleteRegexMatchSetRequest) {
|
|
916
|
-
/**
|
|
917
|
-
* @internal
|
|
918
|
-
*/
|
|
919
|
-
DeleteRegexMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
920
|
-
})(DeleteRegexMatchSetRequest || (DeleteRegexMatchSetRequest = {}));
|
|
921
|
-
export var DeleteRegexMatchSetResponse;
|
|
922
|
-
(function (DeleteRegexMatchSetResponse) {
|
|
923
|
-
/**
|
|
924
|
-
* @internal
|
|
925
|
-
*/
|
|
926
|
-
DeleteRegexMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
927
|
-
})(DeleteRegexMatchSetResponse || (DeleteRegexMatchSetResponse = {}));
|
|
928
|
-
export var DeleteRegexPatternSetRequest;
|
|
929
|
-
(function (DeleteRegexPatternSetRequest) {
|
|
930
|
-
/**
|
|
931
|
-
* @internal
|
|
932
|
-
*/
|
|
933
|
-
DeleteRegexPatternSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
934
|
-
})(DeleteRegexPatternSetRequest || (DeleteRegexPatternSetRequest = {}));
|
|
935
|
-
export var DeleteRegexPatternSetResponse;
|
|
936
|
-
(function (DeleteRegexPatternSetResponse) {
|
|
937
|
-
/**
|
|
938
|
-
* @internal
|
|
939
|
-
*/
|
|
940
|
-
DeleteRegexPatternSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
941
|
-
})(DeleteRegexPatternSetResponse || (DeleteRegexPatternSetResponse = {}));
|
|
942
|
-
export var DeleteRuleRequest;
|
|
943
|
-
(function (DeleteRuleRequest) {
|
|
944
|
-
/**
|
|
945
|
-
* @internal
|
|
946
|
-
*/
|
|
947
|
-
DeleteRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
948
|
-
})(DeleteRuleRequest || (DeleteRuleRequest = {}));
|
|
949
|
-
export var DeleteRuleResponse;
|
|
950
|
-
(function (DeleteRuleResponse) {
|
|
951
|
-
/**
|
|
952
|
-
* @internal
|
|
953
|
-
*/
|
|
954
|
-
DeleteRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
955
|
-
})(DeleteRuleResponse || (DeleteRuleResponse = {}));
|
|
956
|
-
export var DeleteRuleGroupRequest;
|
|
957
|
-
(function (DeleteRuleGroupRequest) {
|
|
958
|
-
/**
|
|
959
|
-
* @internal
|
|
960
|
-
*/
|
|
961
|
-
DeleteRuleGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
962
|
-
})(DeleteRuleGroupRequest || (DeleteRuleGroupRequest = {}));
|
|
963
|
-
export var DeleteRuleGroupResponse;
|
|
964
|
-
(function (DeleteRuleGroupResponse) {
|
|
965
|
-
/**
|
|
966
|
-
* @internal
|
|
967
|
-
*/
|
|
968
|
-
DeleteRuleGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
969
|
-
})(DeleteRuleGroupResponse || (DeleteRuleGroupResponse = {}));
|
|
970
|
-
export var DeleteSizeConstraintSetRequest;
|
|
971
|
-
(function (DeleteSizeConstraintSetRequest) {
|
|
972
|
-
/**
|
|
973
|
-
* @internal
|
|
974
|
-
*/
|
|
975
|
-
DeleteSizeConstraintSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
976
|
-
})(DeleteSizeConstraintSetRequest || (DeleteSizeConstraintSetRequest = {}));
|
|
977
|
-
export var DeleteSizeConstraintSetResponse;
|
|
978
|
-
(function (DeleteSizeConstraintSetResponse) {
|
|
979
|
-
/**
|
|
980
|
-
* @internal
|
|
981
|
-
*/
|
|
982
|
-
DeleteSizeConstraintSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
983
|
-
})(DeleteSizeConstraintSetResponse || (DeleteSizeConstraintSetResponse = {}));
|
|
984
|
-
export var DeleteSqlInjectionMatchSetRequest;
|
|
985
|
-
(function (DeleteSqlInjectionMatchSetRequest) {
|
|
986
|
-
/**
|
|
987
|
-
* @internal
|
|
988
|
-
*/
|
|
989
|
-
DeleteSqlInjectionMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
990
|
-
})(DeleteSqlInjectionMatchSetRequest || (DeleteSqlInjectionMatchSetRequest = {}));
|
|
991
|
-
export var DeleteSqlInjectionMatchSetResponse;
|
|
992
|
-
(function (DeleteSqlInjectionMatchSetResponse) {
|
|
993
|
-
/**
|
|
994
|
-
* @internal
|
|
995
|
-
*/
|
|
996
|
-
DeleteSqlInjectionMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
997
|
-
})(DeleteSqlInjectionMatchSetResponse || (DeleteSqlInjectionMatchSetResponse = {}));
|
|
998
|
-
export var DeleteWebACLRequest;
|
|
999
|
-
(function (DeleteWebACLRequest) {
|
|
1000
|
-
/**
|
|
1001
|
-
* @internal
|
|
1002
|
-
*/
|
|
1003
|
-
DeleteWebACLRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1004
|
-
})(DeleteWebACLRequest || (DeleteWebACLRequest = {}));
|
|
1005
|
-
export var DeleteWebACLResponse;
|
|
1006
|
-
(function (DeleteWebACLResponse) {
|
|
1007
|
-
/**
|
|
1008
|
-
* @internal
|
|
1009
|
-
*/
|
|
1010
|
-
DeleteWebACLResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1011
|
-
})(DeleteWebACLResponse || (DeleteWebACLResponse = {}));
|
|
1012
|
-
export var DeleteXssMatchSetRequest;
|
|
1013
|
-
(function (DeleteXssMatchSetRequest) {
|
|
1014
|
-
/**
|
|
1015
|
-
* @internal
|
|
1016
|
-
*/
|
|
1017
|
-
DeleteXssMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1018
|
-
})(DeleteXssMatchSetRequest || (DeleteXssMatchSetRequest = {}));
|
|
1019
|
-
export var DeleteXssMatchSetResponse;
|
|
1020
|
-
(function (DeleteXssMatchSetResponse) {
|
|
1021
|
-
/**
|
|
1022
|
-
* @internal
|
|
1023
|
-
*/
|
|
1024
|
-
DeleteXssMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1025
|
-
})(DeleteXssMatchSetResponse || (DeleteXssMatchSetResponse = {}));
|
|
1026
|
-
export var GetByteMatchSetRequest;
|
|
1027
|
-
(function (GetByteMatchSetRequest) {
|
|
1028
|
-
/**
|
|
1029
|
-
* @internal
|
|
1030
|
-
*/
|
|
1031
|
-
GetByteMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1032
|
-
})(GetByteMatchSetRequest || (GetByteMatchSetRequest = {}));
|
|
1033
|
-
export var GetByteMatchSetResponse;
|
|
1034
|
-
(function (GetByteMatchSetResponse) {
|
|
1035
|
-
/**
|
|
1036
|
-
* @internal
|
|
1037
|
-
*/
|
|
1038
|
-
GetByteMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1039
|
-
})(GetByteMatchSetResponse || (GetByteMatchSetResponse = {}));
|
|
1040
|
-
export var GetChangeTokenRequest;
|
|
1041
|
-
(function (GetChangeTokenRequest) {
|
|
1042
|
-
/**
|
|
1043
|
-
* @internal
|
|
1044
|
-
*/
|
|
1045
|
-
GetChangeTokenRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1046
|
-
})(GetChangeTokenRequest || (GetChangeTokenRequest = {}));
|
|
1047
|
-
export var GetChangeTokenResponse;
|
|
1048
|
-
(function (GetChangeTokenResponse) {
|
|
1049
|
-
/**
|
|
1050
|
-
* @internal
|
|
1051
|
-
*/
|
|
1052
|
-
GetChangeTokenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1053
|
-
})(GetChangeTokenResponse || (GetChangeTokenResponse = {}));
|
|
1054
|
-
export var GetChangeTokenStatusRequest;
|
|
1055
|
-
(function (GetChangeTokenStatusRequest) {
|
|
1056
|
-
/**
|
|
1057
|
-
* @internal
|
|
1058
|
-
*/
|
|
1059
|
-
GetChangeTokenStatusRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1060
|
-
})(GetChangeTokenStatusRequest || (GetChangeTokenStatusRequest = {}));
|
|
1061
|
-
export var ChangeTokenStatus;
|
|
1062
|
-
(function (ChangeTokenStatus) {
|
|
1063
|
-
ChangeTokenStatus["INSYNC"] = "INSYNC";
|
|
1064
|
-
ChangeTokenStatus["PENDING"] = "PENDING";
|
|
1065
|
-
ChangeTokenStatus["PROVISIONED"] = "PROVISIONED";
|
|
1066
|
-
})(ChangeTokenStatus || (ChangeTokenStatus = {}));
|
|
1067
|
-
export var GetChangeTokenStatusResponse;
|
|
1068
|
-
(function (GetChangeTokenStatusResponse) {
|
|
1069
|
-
/**
|
|
1070
|
-
* @internal
|
|
1071
|
-
*/
|
|
1072
|
-
GetChangeTokenStatusResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1073
|
-
})(GetChangeTokenStatusResponse || (GetChangeTokenStatusResponse = {}));
|
|
1074
|
-
export var GetGeoMatchSetRequest;
|
|
1075
|
-
(function (GetGeoMatchSetRequest) {
|
|
1076
|
-
/**
|
|
1077
|
-
* @internal
|
|
1078
|
-
*/
|
|
1079
|
-
GetGeoMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1080
|
-
})(GetGeoMatchSetRequest || (GetGeoMatchSetRequest = {}));
|
|
1081
|
-
export var GetGeoMatchSetResponse;
|
|
1082
|
-
(function (GetGeoMatchSetResponse) {
|
|
1083
|
-
/**
|
|
1084
|
-
* @internal
|
|
1085
|
-
*/
|
|
1086
|
-
GetGeoMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1087
|
-
})(GetGeoMatchSetResponse || (GetGeoMatchSetResponse = {}));
|
|
1088
|
-
export var GetIPSetRequest;
|
|
1089
|
-
(function (GetIPSetRequest) {
|
|
1090
|
-
/**
|
|
1091
|
-
* @internal
|
|
1092
|
-
*/
|
|
1093
|
-
GetIPSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1094
|
-
})(GetIPSetRequest || (GetIPSetRequest = {}));
|
|
1095
|
-
export var GetIPSetResponse;
|
|
1096
|
-
(function (GetIPSetResponse) {
|
|
1097
|
-
/**
|
|
1098
|
-
* @internal
|
|
1099
|
-
*/
|
|
1100
|
-
GetIPSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1101
|
-
})(GetIPSetResponse || (GetIPSetResponse = {}));
|
|
1102
|
-
export var GetLoggingConfigurationRequest;
|
|
1103
|
-
(function (GetLoggingConfigurationRequest) {
|
|
1104
|
-
/**
|
|
1105
|
-
* @internal
|
|
1106
|
-
*/
|
|
1107
|
-
GetLoggingConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1108
|
-
})(GetLoggingConfigurationRequest || (GetLoggingConfigurationRequest = {}));
|
|
1109
|
-
export var LoggingConfiguration;
|
|
1110
|
-
(function (LoggingConfiguration) {
|
|
1111
|
-
/**
|
|
1112
|
-
* @internal
|
|
1113
|
-
*/
|
|
1114
|
-
LoggingConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1115
|
-
})(LoggingConfiguration || (LoggingConfiguration = {}));
|
|
1116
|
-
export var GetLoggingConfigurationResponse;
|
|
1117
|
-
(function (GetLoggingConfigurationResponse) {
|
|
1118
|
-
/**
|
|
1119
|
-
* @internal
|
|
1120
|
-
*/
|
|
1121
|
-
GetLoggingConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1122
|
-
})(GetLoggingConfigurationResponse || (GetLoggingConfigurationResponse = {}));
|
|
1123
|
-
export var GetPermissionPolicyRequest;
|
|
1124
|
-
(function (GetPermissionPolicyRequest) {
|
|
1125
|
-
/**
|
|
1126
|
-
* @internal
|
|
1127
|
-
*/
|
|
1128
|
-
GetPermissionPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1129
|
-
})(GetPermissionPolicyRequest || (GetPermissionPolicyRequest = {}));
|
|
1130
|
-
export var GetPermissionPolicyResponse;
|
|
1131
|
-
(function (GetPermissionPolicyResponse) {
|
|
1132
|
-
/**
|
|
1133
|
-
* @internal
|
|
1134
|
-
*/
|
|
1135
|
-
GetPermissionPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1136
|
-
})(GetPermissionPolicyResponse || (GetPermissionPolicyResponse = {}));
|
|
1137
|
-
export var GetRateBasedRuleRequest;
|
|
1138
|
-
(function (GetRateBasedRuleRequest) {
|
|
1139
|
-
/**
|
|
1140
|
-
* @internal
|
|
1141
|
-
*/
|
|
1142
|
-
GetRateBasedRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1143
|
-
})(GetRateBasedRuleRequest || (GetRateBasedRuleRequest = {}));
|
|
1144
|
-
export var GetRateBasedRuleResponse;
|
|
1145
|
-
(function (GetRateBasedRuleResponse) {
|
|
1146
|
-
/**
|
|
1147
|
-
* @internal
|
|
1148
|
-
*/
|
|
1149
|
-
GetRateBasedRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1150
|
-
})(GetRateBasedRuleResponse || (GetRateBasedRuleResponse = {}));
|
|
1151
|
-
export var GetRateBasedRuleManagedKeysRequest;
|
|
1152
|
-
(function (GetRateBasedRuleManagedKeysRequest) {
|
|
1153
|
-
/**
|
|
1154
|
-
* @internal
|
|
1155
|
-
*/
|
|
1156
|
-
GetRateBasedRuleManagedKeysRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1157
|
-
})(GetRateBasedRuleManagedKeysRequest || (GetRateBasedRuleManagedKeysRequest = {}));
|
|
1158
|
-
export var GetRateBasedRuleManagedKeysResponse;
|
|
1159
|
-
(function (GetRateBasedRuleManagedKeysResponse) {
|
|
1160
|
-
/**
|
|
1161
|
-
* @internal
|
|
1162
|
-
*/
|
|
1163
|
-
GetRateBasedRuleManagedKeysResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1164
|
-
})(GetRateBasedRuleManagedKeysResponse || (GetRateBasedRuleManagedKeysResponse = {}));
|
|
1165
|
-
export var GetRegexMatchSetRequest;
|
|
1166
|
-
(function (GetRegexMatchSetRequest) {
|
|
1167
|
-
/**
|
|
1168
|
-
* @internal
|
|
1169
|
-
*/
|
|
1170
|
-
GetRegexMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1171
|
-
})(GetRegexMatchSetRequest || (GetRegexMatchSetRequest = {}));
|
|
1172
|
-
export var GetRegexMatchSetResponse;
|
|
1173
|
-
(function (GetRegexMatchSetResponse) {
|
|
1174
|
-
/**
|
|
1175
|
-
* @internal
|
|
1176
|
-
*/
|
|
1177
|
-
GetRegexMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1178
|
-
})(GetRegexMatchSetResponse || (GetRegexMatchSetResponse = {}));
|
|
1179
|
-
export var GetRegexPatternSetRequest;
|
|
1180
|
-
(function (GetRegexPatternSetRequest) {
|
|
1181
|
-
/**
|
|
1182
|
-
* @internal
|
|
1183
|
-
*/
|
|
1184
|
-
GetRegexPatternSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1185
|
-
})(GetRegexPatternSetRequest || (GetRegexPatternSetRequest = {}));
|
|
1186
|
-
export var GetRegexPatternSetResponse;
|
|
1187
|
-
(function (GetRegexPatternSetResponse) {
|
|
1188
|
-
/**
|
|
1189
|
-
* @internal
|
|
1190
|
-
*/
|
|
1191
|
-
GetRegexPatternSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1192
|
-
})(GetRegexPatternSetResponse || (GetRegexPatternSetResponse = {}));
|
|
1193
|
-
export var GetRuleRequest;
|
|
1194
|
-
(function (GetRuleRequest) {
|
|
1195
|
-
/**
|
|
1196
|
-
* @internal
|
|
1197
|
-
*/
|
|
1198
|
-
GetRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1199
|
-
})(GetRuleRequest || (GetRuleRequest = {}));
|
|
1200
|
-
export var GetRuleResponse;
|
|
1201
|
-
(function (GetRuleResponse) {
|
|
1202
|
-
/**
|
|
1203
|
-
* @internal
|
|
1204
|
-
*/
|
|
1205
|
-
GetRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1206
|
-
})(GetRuleResponse || (GetRuleResponse = {}));
|
|
1207
|
-
export var GetRuleGroupRequest;
|
|
1208
|
-
(function (GetRuleGroupRequest) {
|
|
1209
|
-
/**
|
|
1210
|
-
* @internal
|
|
1211
|
-
*/
|
|
1212
|
-
GetRuleGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1213
|
-
})(GetRuleGroupRequest || (GetRuleGroupRequest = {}));
|
|
1214
|
-
export var GetRuleGroupResponse;
|
|
1215
|
-
(function (GetRuleGroupResponse) {
|
|
1216
|
-
/**
|
|
1217
|
-
* @internal
|
|
1218
|
-
*/
|
|
1219
|
-
GetRuleGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1220
|
-
})(GetRuleGroupResponse || (GetRuleGroupResponse = {}));
|
|
1221
|
-
export var TimeWindow;
|
|
1222
|
-
(function (TimeWindow) {
|
|
1223
|
-
/**
|
|
1224
|
-
* @internal
|
|
1225
|
-
*/
|
|
1226
|
-
TimeWindow.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1227
|
-
})(TimeWindow || (TimeWindow = {}));
|
|
1228
|
-
export var GetSampledRequestsRequest;
|
|
1229
|
-
(function (GetSampledRequestsRequest) {
|
|
1230
|
-
/**
|
|
1231
|
-
* @internal
|
|
1232
|
-
*/
|
|
1233
|
-
GetSampledRequestsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1234
|
-
})(GetSampledRequestsRequest || (GetSampledRequestsRequest = {}));
|
|
1235
|
-
export var HTTPHeader;
|
|
1236
|
-
(function (HTTPHeader) {
|
|
1237
|
-
/**
|
|
1238
|
-
* @internal
|
|
1239
|
-
*/
|
|
1240
|
-
HTTPHeader.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1241
|
-
})(HTTPHeader || (HTTPHeader = {}));
|
|
1242
|
-
export var HTTPRequest;
|
|
1243
|
-
(function (HTTPRequest) {
|
|
1244
|
-
/**
|
|
1245
|
-
* @internal
|
|
1246
|
-
*/
|
|
1247
|
-
HTTPRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1248
|
-
})(HTTPRequest || (HTTPRequest = {}));
|
|
1249
|
-
export var SampledHTTPRequest;
|
|
1250
|
-
(function (SampledHTTPRequest) {
|
|
1251
|
-
/**
|
|
1252
|
-
* @internal
|
|
1253
|
-
*/
|
|
1254
|
-
SampledHTTPRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1255
|
-
})(SampledHTTPRequest || (SampledHTTPRequest = {}));
|
|
1256
|
-
export var GetSampledRequestsResponse;
|
|
1257
|
-
(function (GetSampledRequestsResponse) {
|
|
1258
|
-
/**
|
|
1259
|
-
* @internal
|
|
1260
|
-
*/
|
|
1261
|
-
GetSampledRequestsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1262
|
-
})(GetSampledRequestsResponse || (GetSampledRequestsResponse = {}));
|
|
1263
|
-
export var GetSizeConstraintSetRequest;
|
|
1264
|
-
(function (GetSizeConstraintSetRequest) {
|
|
1265
|
-
/**
|
|
1266
|
-
* @internal
|
|
1267
|
-
*/
|
|
1268
|
-
GetSizeConstraintSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1269
|
-
})(GetSizeConstraintSetRequest || (GetSizeConstraintSetRequest = {}));
|
|
1270
|
-
export var GetSizeConstraintSetResponse;
|
|
1271
|
-
(function (GetSizeConstraintSetResponse) {
|
|
1272
|
-
/**
|
|
1273
|
-
* @internal
|
|
1274
|
-
*/
|
|
1275
|
-
GetSizeConstraintSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1276
|
-
})(GetSizeConstraintSetResponse || (GetSizeConstraintSetResponse = {}));
|
|
1277
|
-
export var GetSqlInjectionMatchSetRequest;
|
|
1278
|
-
(function (GetSqlInjectionMatchSetRequest) {
|
|
1279
|
-
/**
|
|
1280
|
-
* @internal
|
|
1281
|
-
*/
|
|
1282
|
-
GetSqlInjectionMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1283
|
-
})(GetSqlInjectionMatchSetRequest || (GetSqlInjectionMatchSetRequest = {}));
|
|
1284
|
-
export var GetSqlInjectionMatchSetResponse;
|
|
1285
|
-
(function (GetSqlInjectionMatchSetResponse) {
|
|
1286
|
-
/**
|
|
1287
|
-
* @internal
|
|
1288
|
-
*/
|
|
1289
|
-
GetSqlInjectionMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1290
|
-
})(GetSqlInjectionMatchSetResponse || (GetSqlInjectionMatchSetResponse = {}));
|
|
1291
|
-
export var GetWebACLRequest;
|
|
1292
|
-
(function (GetWebACLRequest) {
|
|
1293
|
-
/**
|
|
1294
|
-
* @internal
|
|
1295
|
-
*/
|
|
1296
|
-
GetWebACLRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1297
|
-
})(GetWebACLRequest || (GetWebACLRequest = {}));
|
|
1298
|
-
export var GetWebACLResponse;
|
|
1299
|
-
(function (GetWebACLResponse) {
|
|
1300
|
-
/**
|
|
1301
|
-
* @internal
|
|
1302
|
-
*/
|
|
1303
|
-
GetWebACLResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1304
|
-
})(GetWebACLResponse || (GetWebACLResponse = {}));
|
|
1305
|
-
export var GetXssMatchSetRequest;
|
|
1306
|
-
(function (GetXssMatchSetRequest) {
|
|
1307
|
-
/**
|
|
1308
|
-
* @internal
|
|
1309
|
-
*/
|
|
1310
|
-
GetXssMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1311
|
-
})(GetXssMatchSetRequest || (GetXssMatchSetRequest = {}));
|
|
1312
|
-
export var GetXssMatchSetResponse;
|
|
1313
|
-
(function (GetXssMatchSetResponse) {
|
|
1314
|
-
/**
|
|
1315
|
-
* @internal
|
|
1316
|
-
*/
|
|
1317
|
-
GetXssMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1318
|
-
})(GetXssMatchSetResponse || (GetXssMatchSetResponse = {}));
|
|
1319
|
-
export var ListActivatedRulesInRuleGroupRequest;
|
|
1320
|
-
(function (ListActivatedRulesInRuleGroupRequest) {
|
|
1321
|
-
/**
|
|
1322
|
-
* @internal
|
|
1323
|
-
*/
|
|
1324
|
-
ListActivatedRulesInRuleGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1325
|
-
})(ListActivatedRulesInRuleGroupRequest || (ListActivatedRulesInRuleGroupRequest = {}));
|
|
1326
|
-
export var ListActivatedRulesInRuleGroupResponse;
|
|
1327
|
-
(function (ListActivatedRulesInRuleGroupResponse) {
|
|
1328
|
-
/**
|
|
1329
|
-
* @internal
|
|
1330
|
-
*/
|
|
1331
|
-
ListActivatedRulesInRuleGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1332
|
-
})(ListActivatedRulesInRuleGroupResponse || (ListActivatedRulesInRuleGroupResponse = {}));
|
|
1333
|
-
export var ListByteMatchSetsRequest;
|
|
1334
|
-
(function (ListByteMatchSetsRequest) {
|
|
1335
|
-
/**
|
|
1336
|
-
* @internal
|
|
1337
|
-
*/
|
|
1338
|
-
ListByteMatchSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1339
|
-
})(ListByteMatchSetsRequest || (ListByteMatchSetsRequest = {}));
|
|
1340
|
-
export var ByteMatchSetSummary;
|
|
1341
|
-
(function (ByteMatchSetSummary) {
|
|
1342
|
-
/**
|
|
1343
|
-
* @internal
|
|
1344
|
-
*/
|
|
1345
|
-
ByteMatchSetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1346
|
-
})(ByteMatchSetSummary || (ByteMatchSetSummary = {}));
|
|
1347
|
-
export var ListByteMatchSetsResponse;
|
|
1348
|
-
(function (ListByteMatchSetsResponse) {
|
|
1349
|
-
/**
|
|
1350
|
-
* @internal
|
|
1351
|
-
*/
|
|
1352
|
-
ListByteMatchSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1353
|
-
})(ListByteMatchSetsResponse || (ListByteMatchSetsResponse = {}));
|
|
1354
|
-
export var ListGeoMatchSetsRequest;
|
|
1355
|
-
(function (ListGeoMatchSetsRequest) {
|
|
1356
|
-
/**
|
|
1357
|
-
* @internal
|
|
1358
|
-
*/
|
|
1359
|
-
ListGeoMatchSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1360
|
-
})(ListGeoMatchSetsRequest || (ListGeoMatchSetsRequest = {}));
|
|
1361
|
-
export var GeoMatchSetSummary;
|
|
1362
|
-
(function (GeoMatchSetSummary) {
|
|
1363
|
-
/**
|
|
1364
|
-
* @internal
|
|
1365
|
-
*/
|
|
1366
|
-
GeoMatchSetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1367
|
-
})(GeoMatchSetSummary || (GeoMatchSetSummary = {}));
|
|
1368
|
-
export var ListGeoMatchSetsResponse;
|
|
1369
|
-
(function (ListGeoMatchSetsResponse) {
|
|
1370
|
-
/**
|
|
1371
|
-
* @internal
|
|
1372
|
-
*/
|
|
1373
|
-
ListGeoMatchSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1374
|
-
})(ListGeoMatchSetsResponse || (ListGeoMatchSetsResponse = {}));
|
|
1375
|
-
export var ListIPSetsRequest;
|
|
1376
|
-
(function (ListIPSetsRequest) {
|
|
1377
|
-
/**
|
|
1378
|
-
* @internal
|
|
1379
|
-
*/
|
|
1380
|
-
ListIPSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1381
|
-
})(ListIPSetsRequest || (ListIPSetsRequest = {}));
|
|
1382
|
-
export var IPSetSummary;
|
|
1383
|
-
(function (IPSetSummary) {
|
|
1384
|
-
/**
|
|
1385
|
-
* @internal
|
|
1386
|
-
*/
|
|
1387
|
-
IPSetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1388
|
-
})(IPSetSummary || (IPSetSummary = {}));
|
|
1389
|
-
export var ListIPSetsResponse;
|
|
1390
|
-
(function (ListIPSetsResponse) {
|
|
1391
|
-
/**
|
|
1392
|
-
* @internal
|
|
1393
|
-
*/
|
|
1394
|
-
ListIPSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1395
|
-
})(ListIPSetsResponse || (ListIPSetsResponse = {}));
|
|
1396
|
-
export var ListLoggingConfigurationsRequest;
|
|
1397
|
-
(function (ListLoggingConfigurationsRequest) {
|
|
1398
|
-
/**
|
|
1399
|
-
* @internal
|
|
1400
|
-
*/
|
|
1401
|
-
ListLoggingConfigurationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1402
|
-
})(ListLoggingConfigurationsRequest || (ListLoggingConfigurationsRequest = {}));
|
|
1403
|
-
export var ListLoggingConfigurationsResponse;
|
|
1404
|
-
(function (ListLoggingConfigurationsResponse) {
|
|
1405
|
-
/**
|
|
1406
|
-
* @internal
|
|
1407
|
-
*/
|
|
1408
|
-
ListLoggingConfigurationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1409
|
-
})(ListLoggingConfigurationsResponse || (ListLoggingConfigurationsResponse = {}));
|
|
1410
|
-
export var ListRateBasedRulesRequest;
|
|
1411
|
-
(function (ListRateBasedRulesRequest) {
|
|
1412
|
-
/**
|
|
1413
|
-
* @internal
|
|
1414
|
-
*/
|
|
1415
|
-
ListRateBasedRulesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1416
|
-
})(ListRateBasedRulesRequest || (ListRateBasedRulesRequest = {}));
|
|
1417
|
-
export var RuleSummary;
|
|
1418
|
-
(function (RuleSummary) {
|
|
1419
|
-
/**
|
|
1420
|
-
* @internal
|
|
1421
|
-
*/
|
|
1422
|
-
RuleSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1423
|
-
})(RuleSummary || (RuleSummary = {}));
|
|
1424
|
-
export var ListRateBasedRulesResponse;
|
|
1425
|
-
(function (ListRateBasedRulesResponse) {
|
|
1426
|
-
/**
|
|
1427
|
-
* @internal
|
|
1428
|
-
*/
|
|
1429
|
-
ListRateBasedRulesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1430
|
-
})(ListRateBasedRulesResponse || (ListRateBasedRulesResponse = {}));
|
|
1431
|
-
export var ListRegexMatchSetsRequest;
|
|
1432
|
-
(function (ListRegexMatchSetsRequest) {
|
|
1433
|
-
/**
|
|
1434
|
-
* @internal
|
|
1435
|
-
*/
|
|
1436
|
-
ListRegexMatchSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1437
|
-
})(ListRegexMatchSetsRequest || (ListRegexMatchSetsRequest = {}));
|
|
1438
|
-
export var RegexMatchSetSummary;
|
|
1439
|
-
(function (RegexMatchSetSummary) {
|
|
1440
|
-
/**
|
|
1441
|
-
* @internal
|
|
1442
|
-
*/
|
|
1443
|
-
RegexMatchSetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1444
|
-
})(RegexMatchSetSummary || (RegexMatchSetSummary = {}));
|
|
1445
|
-
export var ListRegexMatchSetsResponse;
|
|
1446
|
-
(function (ListRegexMatchSetsResponse) {
|
|
1447
|
-
/**
|
|
1448
|
-
* @internal
|
|
1449
|
-
*/
|
|
1450
|
-
ListRegexMatchSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1451
|
-
})(ListRegexMatchSetsResponse || (ListRegexMatchSetsResponse = {}));
|
|
1452
|
-
export var ListRegexPatternSetsRequest;
|
|
1453
|
-
(function (ListRegexPatternSetsRequest) {
|
|
1454
|
-
/**
|
|
1455
|
-
* @internal
|
|
1456
|
-
*/
|
|
1457
|
-
ListRegexPatternSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1458
|
-
})(ListRegexPatternSetsRequest || (ListRegexPatternSetsRequest = {}));
|
|
1459
|
-
export var RegexPatternSetSummary;
|
|
1460
|
-
(function (RegexPatternSetSummary) {
|
|
1461
|
-
/**
|
|
1462
|
-
* @internal
|
|
1463
|
-
*/
|
|
1464
|
-
RegexPatternSetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1465
|
-
})(RegexPatternSetSummary || (RegexPatternSetSummary = {}));
|
|
1466
|
-
export var ListRegexPatternSetsResponse;
|
|
1467
|
-
(function (ListRegexPatternSetsResponse) {
|
|
1468
|
-
/**
|
|
1469
|
-
* @internal
|
|
1470
|
-
*/
|
|
1471
|
-
ListRegexPatternSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1472
|
-
})(ListRegexPatternSetsResponse || (ListRegexPatternSetsResponse = {}));
|
|
1473
|
-
export var ListRuleGroupsRequest;
|
|
1474
|
-
(function (ListRuleGroupsRequest) {
|
|
1475
|
-
/**
|
|
1476
|
-
* @internal
|
|
1477
|
-
*/
|
|
1478
|
-
ListRuleGroupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1479
|
-
})(ListRuleGroupsRequest || (ListRuleGroupsRequest = {}));
|
|
1480
|
-
export var RuleGroupSummary;
|
|
1481
|
-
(function (RuleGroupSummary) {
|
|
1482
|
-
/**
|
|
1483
|
-
* @internal
|
|
1484
|
-
*/
|
|
1485
|
-
RuleGroupSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1486
|
-
})(RuleGroupSummary || (RuleGroupSummary = {}));
|
|
1487
|
-
export var ListRuleGroupsResponse;
|
|
1488
|
-
(function (ListRuleGroupsResponse) {
|
|
1489
|
-
/**
|
|
1490
|
-
* @internal
|
|
1491
|
-
*/
|
|
1492
|
-
ListRuleGroupsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1493
|
-
})(ListRuleGroupsResponse || (ListRuleGroupsResponse = {}));
|
|
1494
|
-
export var ListRulesRequest;
|
|
1495
|
-
(function (ListRulesRequest) {
|
|
1496
|
-
/**
|
|
1497
|
-
* @internal
|
|
1498
|
-
*/
|
|
1499
|
-
ListRulesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1500
|
-
})(ListRulesRequest || (ListRulesRequest = {}));
|
|
1501
|
-
export var ListRulesResponse;
|
|
1502
|
-
(function (ListRulesResponse) {
|
|
1503
|
-
/**
|
|
1504
|
-
* @internal
|
|
1505
|
-
*/
|
|
1506
|
-
ListRulesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1507
|
-
})(ListRulesResponse || (ListRulesResponse = {}));
|
|
1508
|
-
export var ListSizeConstraintSetsRequest;
|
|
1509
|
-
(function (ListSizeConstraintSetsRequest) {
|
|
1510
|
-
/**
|
|
1511
|
-
* @internal
|
|
1512
|
-
*/
|
|
1513
|
-
ListSizeConstraintSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1514
|
-
})(ListSizeConstraintSetsRequest || (ListSizeConstraintSetsRequest = {}));
|
|
1515
|
-
export var SizeConstraintSetSummary;
|
|
1516
|
-
(function (SizeConstraintSetSummary) {
|
|
1517
|
-
/**
|
|
1518
|
-
* @internal
|
|
1519
|
-
*/
|
|
1520
|
-
SizeConstraintSetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1521
|
-
})(SizeConstraintSetSummary || (SizeConstraintSetSummary = {}));
|
|
1522
|
-
export var ListSizeConstraintSetsResponse;
|
|
1523
|
-
(function (ListSizeConstraintSetsResponse) {
|
|
1524
|
-
/**
|
|
1525
|
-
* @internal
|
|
1526
|
-
*/
|
|
1527
|
-
ListSizeConstraintSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1528
|
-
})(ListSizeConstraintSetsResponse || (ListSizeConstraintSetsResponse = {}));
|
|
1529
|
-
export var ListSqlInjectionMatchSetsRequest;
|
|
1530
|
-
(function (ListSqlInjectionMatchSetsRequest) {
|
|
1531
|
-
/**
|
|
1532
|
-
* @internal
|
|
1533
|
-
*/
|
|
1534
|
-
ListSqlInjectionMatchSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1535
|
-
})(ListSqlInjectionMatchSetsRequest || (ListSqlInjectionMatchSetsRequest = {}));
|
|
1536
|
-
export var SqlInjectionMatchSetSummary;
|
|
1537
|
-
(function (SqlInjectionMatchSetSummary) {
|
|
1538
|
-
/**
|
|
1539
|
-
* @internal
|
|
1540
|
-
*/
|
|
1541
|
-
SqlInjectionMatchSetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1542
|
-
})(SqlInjectionMatchSetSummary || (SqlInjectionMatchSetSummary = {}));
|
|
1543
|
-
export var ListSqlInjectionMatchSetsResponse;
|
|
1544
|
-
(function (ListSqlInjectionMatchSetsResponse) {
|
|
1545
|
-
/**
|
|
1546
|
-
* @internal
|
|
1547
|
-
*/
|
|
1548
|
-
ListSqlInjectionMatchSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1549
|
-
})(ListSqlInjectionMatchSetsResponse || (ListSqlInjectionMatchSetsResponse = {}));
|
|
1550
|
-
export var ListSubscribedRuleGroupsRequest;
|
|
1551
|
-
(function (ListSubscribedRuleGroupsRequest) {
|
|
1552
|
-
/**
|
|
1553
|
-
* @internal
|
|
1554
|
-
*/
|
|
1555
|
-
ListSubscribedRuleGroupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1556
|
-
})(ListSubscribedRuleGroupsRequest || (ListSubscribedRuleGroupsRequest = {}));
|
|
1557
|
-
export var SubscribedRuleGroupSummary;
|
|
1558
|
-
(function (SubscribedRuleGroupSummary) {
|
|
1559
|
-
/**
|
|
1560
|
-
* @internal
|
|
1561
|
-
*/
|
|
1562
|
-
SubscribedRuleGroupSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1563
|
-
})(SubscribedRuleGroupSummary || (SubscribedRuleGroupSummary = {}));
|
|
1564
|
-
export var ListSubscribedRuleGroupsResponse;
|
|
1565
|
-
(function (ListSubscribedRuleGroupsResponse) {
|
|
1566
|
-
/**
|
|
1567
|
-
* @internal
|
|
1568
|
-
*/
|
|
1569
|
-
ListSubscribedRuleGroupsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1570
|
-
})(ListSubscribedRuleGroupsResponse || (ListSubscribedRuleGroupsResponse = {}));
|
|
1571
|
-
export var ListTagsForResourceRequest;
|
|
1572
|
-
(function (ListTagsForResourceRequest) {
|
|
1573
|
-
/**
|
|
1574
|
-
* @internal
|
|
1575
|
-
*/
|
|
1576
|
-
ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1577
|
-
})(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
|
|
1578
|
-
export var TagInfoForResource;
|
|
1579
|
-
(function (TagInfoForResource) {
|
|
1580
|
-
/**
|
|
1581
|
-
* @internal
|
|
1582
|
-
*/
|
|
1583
|
-
TagInfoForResource.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1584
|
-
})(TagInfoForResource || (TagInfoForResource = {}));
|
|
1585
|
-
export var ListTagsForResourceResponse;
|
|
1586
|
-
(function (ListTagsForResourceResponse) {
|
|
1587
|
-
/**
|
|
1588
|
-
* @internal
|
|
1589
|
-
*/
|
|
1590
|
-
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1591
|
-
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
1592
|
-
export var ListWebACLsRequest;
|
|
1593
|
-
(function (ListWebACLsRequest) {
|
|
1594
|
-
/**
|
|
1595
|
-
* @internal
|
|
1596
|
-
*/
|
|
1597
|
-
ListWebACLsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1598
|
-
})(ListWebACLsRequest || (ListWebACLsRequest = {}));
|
|
1599
|
-
export var WebACLSummary;
|
|
1600
|
-
(function (WebACLSummary) {
|
|
1601
|
-
/**
|
|
1602
|
-
* @internal
|
|
1603
|
-
*/
|
|
1604
|
-
WebACLSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1605
|
-
})(WebACLSummary || (WebACLSummary = {}));
|
|
1606
|
-
export var ListWebACLsResponse;
|
|
1607
|
-
(function (ListWebACLsResponse) {
|
|
1608
|
-
/**
|
|
1609
|
-
* @internal
|
|
1610
|
-
*/
|
|
1611
|
-
ListWebACLsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1612
|
-
})(ListWebACLsResponse || (ListWebACLsResponse = {}));
|
|
1613
|
-
export var ListXssMatchSetsRequest;
|
|
1614
|
-
(function (ListXssMatchSetsRequest) {
|
|
1615
|
-
/**
|
|
1616
|
-
* @internal
|
|
1617
|
-
*/
|
|
1618
|
-
ListXssMatchSetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1619
|
-
})(ListXssMatchSetsRequest || (ListXssMatchSetsRequest = {}));
|
|
1620
|
-
export var XssMatchSetSummary;
|
|
1621
|
-
(function (XssMatchSetSummary) {
|
|
1622
|
-
/**
|
|
1623
|
-
* @internal
|
|
1624
|
-
*/
|
|
1625
|
-
XssMatchSetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1626
|
-
})(XssMatchSetSummary || (XssMatchSetSummary = {}));
|
|
1627
|
-
export var ListXssMatchSetsResponse;
|
|
1628
|
-
(function (ListXssMatchSetsResponse) {
|
|
1629
|
-
/**
|
|
1630
|
-
* @internal
|
|
1631
|
-
*/
|
|
1632
|
-
ListXssMatchSetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1633
|
-
})(ListXssMatchSetsResponse || (ListXssMatchSetsResponse = {}));
|
|
1634
|
-
export var PutLoggingConfigurationRequest;
|
|
1635
|
-
(function (PutLoggingConfigurationRequest) {
|
|
1636
|
-
/**
|
|
1637
|
-
* @internal
|
|
1638
|
-
*/
|
|
1639
|
-
PutLoggingConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1640
|
-
})(PutLoggingConfigurationRequest || (PutLoggingConfigurationRequest = {}));
|
|
1641
|
-
export var PutLoggingConfigurationResponse;
|
|
1642
|
-
(function (PutLoggingConfigurationResponse) {
|
|
1643
|
-
/**
|
|
1644
|
-
* @internal
|
|
1645
|
-
*/
|
|
1646
|
-
PutLoggingConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1647
|
-
})(PutLoggingConfigurationResponse || (PutLoggingConfigurationResponse = {}));
|
|
1648
|
-
export var WAFServiceLinkedRoleErrorException;
|
|
1649
|
-
(function (WAFServiceLinkedRoleErrorException) {
|
|
1650
|
-
/**
|
|
1651
|
-
* @internal
|
|
1652
|
-
*/
|
|
1653
|
-
WAFServiceLinkedRoleErrorException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1654
|
-
})(WAFServiceLinkedRoleErrorException || (WAFServiceLinkedRoleErrorException = {}));
|
|
1655
|
-
export var PutPermissionPolicyRequest;
|
|
1656
|
-
(function (PutPermissionPolicyRequest) {
|
|
1657
|
-
/**
|
|
1658
|
-
* @internal
|
|
1659
|
-
*/
|
|
1660
|
-
PutPermissionPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1661
|
-
})(PutPermissionPolicyRequest || (PutPermissionPolicyRequest = {}));
|
|
1662
|
-
export var PutPermissionPolicyResponse;
|
|
1663
|
-
(function (PutPermissionPolicyResponse) {
|
|
1664
|
-
/**
|
|
1665
|
-
* @internal
|
|
1666
|
-
*/
|
|
1667
|
-
PutPermissionPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1668
|
-
})(PutPermissionPolicyResponse || (PutPermissionPolicyResponse = {}));
|
|
1669
|
-
export var WAFInvalidPermissionPolicyException;
|
|
1670
|
-
(function (WAFInvalidPermissionPolicyException) {
|
|
1671
|
-
/**
|
|
1672
|
-
* @internal
|
|
1673
|
-
*/
|
|
1674
|
-
WAFInvalidPermissionPolicyException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1675
|
-
})(WAFInvalidPermissionPolicyException || (WAFInvalidPermissionPolicyException = {}));
|
|
1676
|
-
export var TagResourceRequest;
|
|
1677
|
-
(function (TagResourceRequest) {
|
|
1678
|
-
/**
|
|
1679
|
-
* @internal
|
|
1680
|
-
*/
|
|
1681
|
-
TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1682
|
-
})(TagResourceRequest || (TagResourceRequest = {}));
|
|
1683
|
-
export var TagResourceResponse;
|
|
1684
|
-
(function (TagResourceResponse) {
|
|
1685
|
-
/**
|
|
1686
|
-
* @internal
|
|
1687
|
-
*/
|
|
1688
|
-
TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1689
|
-
})(TagResourceResponse || (TagResourceResponse = {}));
|
|
1690
|
-
export var UntagResourceRequest;
|
|
1691
|
-
(function (UntagResourceRequest) {
|
|
1692
|
-
/**
|
|
1693
|
-
* @internal
|
|
1694
|
-
*/
|
|
1695
|
-
UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1696
|
-
})(UntagResourceRequest || (UntagResourceRequest = {}));
|
|
1697
|
-
export var UntagResourceResponse;
|
|
1698
|
-
(function (UntagResourceResponse) {
|
|
1699
|
-
/**
|
|
1700
|
-
* @internal
|
|
1701
|
-
*/
|
|
1702
|
-
UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1703
|
-
})(UntagResourceResponse || (UntagResourceResponse = {}));
|
|
1704
|
-
export var ChangeAction;
|
|
1705
|
-
(function (ChangeAction) {
|
|
1706
|
-
ChangeAction["DELETE"] = "DELETE";
|
|
1707
|
-
ChangeAction["INSERT"] = "INSERT";
|
|
1708
|
-
})(ChangeAction || (ChangeAction = {}));
|
|
1709
|
-
export var ByteMatchSetUpdate;
|
|
1710
|
-
(function (ByteMatchSetUpdate) {
|
|
1711
|
-
/**
|
|
1712
|
-
* @internal
|
|
1713
|
-
*/
|
|
1714
|
-
ByteMatchSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1715
|
-
})(ByteMatchSetUpdate || (ByteMatchSetUpdate = {}));
|
|
1716
|
-
export var UpdateByteMatchSetRequest;
|
|
1717
|
-
(function (UpdateByteMatchSetRequest) {
|
|
1718
|
-
/**
|
|
1719
|
-
* @internal
|
|
1720
|
-
*/
|
|
1721
|
-
UpdateByteMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1722
|
-
})(UpdateByteMatchSetRequest || (UpdateByteMatchSetRequest = {}));
|
|
1723
|
-
export var UpdateByteMatchSetResponse;
|
|
1724
|
-
(function (UpdateByteMatchSetResponse) {
|
|
1725
|
-
/**
|
|
1726
|
-
* @internal
|
|
1727
|
-
*/
|
|
1728
|
-
UpdateByteMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1729
|
-
})(UpdateByteMatchSetResponse || (UpdateByteMatchSetResponse = {}));
|
|
1730
|
-
export var WAFNonexistentContainerException;
|
|
1731
|
-
(function (WAFNonexistentContainerException) {
|
|
1732
|
-
/**
|
|
1733
|
-
* @internal
|
|
1734
|
-
*/
|
|
1735
|
-
WAFNonexistentContainerException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1736
|
-
})(WAFNonexistentContainerException || (WAFNonexistentContainerException = {}));
|
|
1737
|
-
export var GeoMatchSetUpdate;
|
|
1738
|
-
(function (GeoMatchSetUpdate) {
|
|
1739
|
-
/**
|
|
1740
|
-
* @internal
|
|
1741
|
-
*/
|
|
1742
|
-
GeoMatchSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1743
|
-
})(GeoMatchSetUpdate || (GeoMatchSetUpdate = {}));
|
|
1744
|
-
export var UpdateGeoMatchSetRequest;
|
|
1745
|
-
(function (UpdateGeoMatchSetRequest) {
|
|
1746
|
-
/**
|
|
1747
|
-
* @internal
|
|
1748
|
-
*/
|
|
1749
|
-
UpdateGeoMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1750
|
-
})(UpdateGeoMatchSetRequest || (UpdateGeoMatchSetRequest = {}));
|
|
1751
|
-
export var UpdateGeoMatchSetResponse;
|
|
1752
|
-
(function (UpdateGeoMatchSetResponse) {
|
|
1753
|
-
/**
|
|
1754
|
-
* @internal
|
|
1755
|
-
*/
|
|
1756
|
-
UpdateGeoMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1757
|
-
})(UpdateGeoMatchSetResponse || (UpdateGeoMatchSetResponse = {}));
|
|
1758
|
-
export var IPSetUpdate;
|
|
1759
|
-
(function (IPSetUpdate) {
|
|
1760
|
-
/**
|
|
1761
|
-
* @internal
|
|
1762
|
-
*/
|
|
1763
|
-
IPSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1764
|
-
})(IPSetUpdate || (IPSetUpdate = {}));
|
|
1765
|
-
export var UpdateIPSetRequest;
|
|
1766
|
-
(function (UpdateIPSetRequest) {
|
|
1767
|
-
/**
|
|
1768
|
-
* @internal
|
|
1769
|
-
*/
|
|
1770
|
-
UpdateIPSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1771
|
-
})(UpdateIPSetRequest || (UpdateIPSetRequest = {}));
|
|
1772
|
-
export var UpdateIPSetResponse;
|
|
1773
|
-
(function (UpdateIPSetResponse) {
|
|
1774
|
-
/**
|
|
1775
|
-
* @internal
|
|
1776
|
-
*/
|
|
1777
|
-
UpdateIPSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1778
|
-
})(UpdateIPSetResponse || (UpdateIPSetResponse = {}));
|
|
1779
|
-
export var RuleUpdate;
|
|
1780
|
-
(function (RuleUpdate) {
|
|
1781
|
-
/**
|
|
1782
|
-
* @internal
|
|
1783
|
-
*/
|
|
1784
|
-
RuleUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1785
|
-
})(RuleUpdate || (RuleUpdate = {}));
|
|
1786
|
-
export var UpdateRateBasedRuleRequest;
|
|
1787
|
-
(function (UpdateRateBasedRuleRequest) {
|
|
1788
|
-
/**
|
|
1789
|
-
* @internal
|
|
1790
|
-
*/
|
|
1791
|
-
UpdateRateBasedRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1792
|
-
})(UpdateRateBasedRuleRequest || (UpdateRateBasedRuleRequest = {}));
|
|
1793
|
-
export var UpdateRateBasedRuleResponse;
|
|
1794
|
-
(function (UpdateRateBasedRuleResponse) {
|
|
1795
|
-
/**
|
|
1796
|
-
* @internal
|
|
1797
|
-
*/
|
|
1798
|
-
UpdateRateBasedRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1799
|
-
})(UpdateRateBasedRuleResponse || (UpdateRateBasedRuleResponse = {}));
|
|
1800
|
-
export var RegexMatchSetUpdate;
|
|
1801
|
-
(function (RegexMatchSetUpdate) {
|
|
1802
|
-
/**
|
|
1803
|
-
* @internal
|
|
1804
|
-
*/
|
|
1805
|
-
RegexMatchSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1806
|
-
})(RegexMatchSetUpdate || (RegexMatchSetUpdate = {}));
|
|
1807
|
-
export var UpdateRegexMatchSetRequest;
|
|
1808
|
-
(function (UpdateRegexMatchSetRequest) {
|
|
1809
|
-
/**
|
|
1810
|
-
* @internal
|
|
1811
|
-
*/
|
|
1812
|
-
UpdateRegexMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1813
|
-
})(UpdateRegexMatchSetRequest || (UpdateRegexMatchSetRequest = {}));
|
|
1814
|
-
export var UpdateRegexMatchSetResponse;
|
|
1815
|
-
(function (UpdateRegexMatchSetResponse) {
|
|
1816
|
-
/**
|
|
1817
|
-
* @internal
|
|
1818
|
-
*/
|
|
1819
|
-
UpdateRegexMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1820
|
-
})(UpdateRegexMatchSetResponse || (UpdateRegexMatchSetResponse = {}));
|
|
1821
|
-
export var RegexPatternSetUpdate;
|
|
1822
|
-
(function (RegexPatternSetUpdate) {
|
|
1823
|
-
/**
|
|
1824
|
-
* @internal
|
|
1825
|
-
*/
|
|
1826
|
-
RegexPatternSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1827
|
-
})(RegexPatternSetUpdate || (RegexPatternSetUpdate = {}));
|
|
1828
|
-
export var UpdateRegexPatternSetRequest;
|
|
1829
|
-
(function (UpdateRegexPatternSetRequest) {
|
|
1830
|
-
/**
|
|
1831
|
-
* @internal
|
|
1832
|
-
*/
|
|
1833
|
-
UpdateRegexPatternSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1834
|
-
})(UpdateRegexPatternSetRequest || (UpdateRegexPatternSetRequest = {}));
|
|
1835
|
-
export var UpdateRegexPatternSetResponse;
|
|
1836
|
-
(function (UpdateRegexPatternSetResponse) {
|
|
1837
|
-
/**
|
|
1838
|
-
* @internal
|
|
1839
|
-
*/
|
|
1840
|
-
UpdateRegexPatternSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1841
|
-
})(UpdateRegexPatternSetResponse || (UpdateRegexPatternSetResponse = {}));
|
|
1842
|
-
export var WAFInvalidRegexPatternException;
|
|
1843
|
-
(function (WAFInvalidRegexPatternException) {
|
|
1844
|
-
/**
|
|
1845
|
-
* @internal
|
|
1846
|
-
*/
|
|
1847
|
-
WAFInvalidRegexPatternException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1848
|
-
})(WAFInvalidRegexPatternException || (WAFInvalidRegexPatternException = {}));
|
|
1849
|
-
export var UpdateRuleRequest;
|
|
1850
|
-
(function (UpdateRuleRequest) {
|
|
1851
|
-
/**
|
|
1852
|
-
* @internal
|
|
1853
|
-
*/
|
|
1854
|
-
UpdateRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1855
|
-
})(UpdateRuleRequest || (UpdateRuleRequest = {}));
|
|
1856
|
-
export var UpdateRuleResponse;
|
|
1857
|
-
(function (UpdateRuleResponse) {
|
|
1858
|
-
/**
|
|
1859
|
-
* @internal
|
|
1860
|
-
*/
|
|
1861
|
-
UpdateRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1862
|
-
})(UpdateRuleResponse || (UpdateRuleResponse = {}));
|
|
1863
|
-
export var RuleGroupUpdate;
|
|
1864
|
-
(function (RuleGroupUpdate) {
|
|
1865
|
-
/**
|
|
1866
|
-
* @internal
|
|
1867
|
-
*/
|
|
1868
|
-
RuleGroupUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1869
|
-
})(RuleGroupUpdate || (RuleGroupUpdate = {}));
|
|
1870
|
-
export var UpdateRuleGroupRequest;
|
|
1871
|
-
(function (UpdateRuleGroupRequest) {
|
|
1872
|
-
/**
|
|
1873
|
-
* @internal
|
|
1874
|
-
*/
|
|
1875
|
-
UpdateRuleGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1876
|
-
})(UpdateRuleGroupRequest || (UpdateRuleGroupRequest = {}));
|
|
1877
|
-
export var UpdateRuleGroupResponse;
|
|
1878
|
-
(function (UpdateRuleGroupResponse) {
|
|
1879
|
-
/**
|
|
1880
|
-
* @internal
|
|
1881
|
-
*/
|
|
1882
|
-
UpdateRuleGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1883
|
-
})(UpdateRuleGroupResponse || (UpdateRuleGroupResponse = {}));
|
|
1884
|
-
export var SizeConstraintSetUpdate;
|
|
1885
|
-
(function (SizeConstraintSetUpdate) {
|
|
1886
|
-
/**
|
|
1887
|
-
* @internal
|
|
1888
|
-
*/
|
|
1889
|
-
SizeConstraintSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1890
|
-
})(SizeConstraintSetUpdate || (SizeConstraintSetUpdate = {}));
|
|
1891
|
-
export var UpdateSizeConstraintSetRequest;
|
|
1892
|
-
(function (UpdateSizeConstraintSetRequest) {
|
|
1893
|
-
/**
|
|
1894
|
-
* @internal
|
|
1895
|
-
*/
|
|
1896
|
-
UpdateSizeConstraintSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1897
|
-
})(UpdateSizeConstraintSetRequest || (UpdateSizeConstraintSetRequest = {}));
|
|
1898
|
-
export var UpdateSizeConstraintSetResponse;
|
|
1899
|
-
(function (UpdateSizeConstraintSetResponse) {
|
|
1900
|
-
/**
|
|
1901
|
-
* @internal
|
|
1902
|
-
*/
|
|
1903
|
-
UpdateSizeConstraintSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1904
|
-
})(UpdateSizeConstraintSetResponse || (UpdateSizeConstraintSetResponse = {}));
|
|
1905
|
-
export var SqlInjectionMatchSetUpdate;
|
|
1906
|
-
(function (SqlInjectionMatchSetUpdate) {
|
|
1907
|
-
/**
|
|
1908
|
-
* @internal
|
|
1909
|
-
*/
|
|
1910
|
-
SqlInjectionMatchSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1911
|
-
})(SqlInjectionMatchSetUpdate || (SqlInjectionMatchSetUpdate = {}));
|
|
1912
|
-
export var UpdateSqlInjectionMatchSetRequest;
|
|
1913
|
-
(function (UpdateSqlInjectionMatchSetRequest) {
|
|
1914
|
-
/**
|
|
1915
|
-
* @internal
|
|
1916
|
-
*/
|
|
1917
|
-
UpdateSqlInjectionMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1918
|
-
})(UpdateSqlInjectionMatchSetRequest || (UpdateSqlInjectionMatchSetRequest = {}));
|
|
1919
|
-
export var UpdateSqlInjectionMatchSetResponse;
|
|
1920
|
-
(function (UpdateSqlInjectionMatchSetResponse) {
|
|
1921
|
-
/**
|
|
1922
|
-
* @internal
|
|
1923
|
-
*/
|
|
1924
|
-
UpdateSqlInjectionMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1925
|
-
})(UpdateSqlInjectionMatchSetResponse || (UpdateSqlInjectionMatchSetResponse = {}));
|
|
1926
|
-
export var WebACLUpdate;
|
|
1927
|
-
(function (WebACLUpdate) {
|
|
1928
|
-
/**
|
|
1929
|
-
* @internal
|
|
1930
|
-
*/
|
|
1931
|
-
WebACLUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1932
|
-
})(WebACLUpdate || (WebACLUpdate = {}));
|
|
1933
|
-
export var UpdateWebACLRequest;
|
|
1934
|
-
(function (UpdateWebACLRequest) {
|
|
1935
|
-
/**
|
|
1936
|
-
* @internal
|
|
1937
|
-
*/
|
|
1938
|
-
UpdateWebACLRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1939
|
-
})(UpdateWebACLRequest || (UpdateWebACLRequest = {}));
|
|
1940
|
-
export var UpdateWebACLResponse;
|
|
1941
|
-
(function (UpdateWebACLResponse) {
|
|
1942
|
-
/**
|
|
1943
|
-
* @internal
|
|
1944
|
-
*/
|
|
1945
|
-
UpdateWebACLResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1946
|
-
})(UpdateWebACLResponse || (UpdateWebACLResponse = {}));
|
|
1947
|
-
export var WAFSubscriptionNotFoundException;
|
|
1948
|
-
(function (WAFSubscriptionNotFoundException) {
|
|
1949
|
-
/**
|
|
1950
|
-
* @internal
|
|
1951
|
-
*/
|
|
1952
|
-
WAFSubscriptionNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1953
|
-
})(WAFSubscriptionNotFoundException || (WAFSubscriptionNotFoundException = {}));
|
|
1954
|
-
export var XssMatchSetUpdate;
|
|
1955
|
-
(function (XssMatchSetUpdate) {
|
|
1956
|
-
/**
|
|
1957
|
-
* @internal
|
|
1958
|
-
*/
|
|
1959
|
-
XssMatchSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1960
|
-
})(XssMatchSetUpdate || (XssMatchSetUpdate = {}));
|
|
1961
|
-
export var UpdateXssMatchSetRequest;
|
|
1962
|
-
(function (UpdateXssMatchSetRequest) {
|
|
1963
|
-
/**
|
|
1964
|
-
* @internal
|
|
1965
|
-
*/
|
|
1966
|
-
UpdateXssMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1967
|
-
})(UpdateXssMatchSetRequest || (UpdateXssMatchSetRequest = {}));
|
|
1968
|
-
export var UpdateXssMatchSetResponse;
|
|
1969
|
-
(function (UpdateXssMatchSetResponse) {
|
|
1970
|
-
/**
|
|
1971
|
-
* @internal
|
|
1972
|
-
*/
|
|
1973
|
-
UpdateXssMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1974
|
-
})(UpdateXssMatchSetResponse || (UpdateXssMatchSetResponse = {}));
|
|
1975
|
-
//# sourceMappingURL=models_0.js.map
|