Skip to content

WAF Exclusion Policy

List the set of waf_exclusion_policy in a namespace.

ToolDescription
f5xc-api-virtual-waf-exclusion-policy-createCreate WAF Exclusion Policy.
f5xc-api-virtual-waf-exclusion-policy-getGET WAF Exclusion Policy.
f5xc-api-virtual-waf-exclusion-policy-listList WAF Exclusion Policy.
f5xc-api-virtual-waf-exclusion-policy-updateReplace WAF Exclusion Policy.
f5xc-api-virtual-waf-exclusion-policy-deleteDELETE WAF Exclusion Policy.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.waf_exclusion_rules[].any_domain-
spec.waf_exclusion_rules[].exact_value-
spec.waf_exclusion_rules[].suffix_value-
OptionDescriptionRecommended
spec.waf_exclusion_rules[].any_path-
spec.waf_exclusion_rules[].path_prefix-
spec.waf_exclusion_rules[].path_regex-
OptionDescriptionRecommended
spec.waf_exclusion_rules[].app_firewall_detection_control-
spec.waf_exclusion_rules[].waf_skip_processing-

Ask Claude to help you work with WAF Exclusion Policy resources:

“Create a waf-exclusion-policy named ‘example’ in the ‘production’ namespace”

“List all waf-exclusion-policys in the ‘production’ namespace”

“Get details of the waf-exclusion-policy named ‘example’ in namespace ‘production‘“

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/waf_exclusion_policys" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/waf_exclusion_policys/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/waf_exclusion_policys" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @waf_exclusion_policy.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/waf_exclusion_policys/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"