Skip to content

Fast Acl Rule

Replace a given Fast ACL rule, fast_acl_rule has specification to match source IP, source port, protocol and action to apply.

ToolDescription
f5xc-api-networksecurity-fast-acl-rule-createCreate Fast ACL Rule.
f5xc-api-networksecurity-fast-acl-rule-getGET Fast ACL Rule.
f5xc-api-networksecurity-fast-acl-rule-listList Fast ACL Rule.
f5xc-api-networksecurity-fast-acl-rule-updateReplace Fast ACL Rule.
f5xc-api-networksecurity-fast-acl-rule-deleteDELETE Fast ACL Rule.
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.ip_prefix_set-
spec.prefix-
OptionDescriptionRecommended
spec.action.policer_action-
spec.action.protocol_policer_action-
spec.action.simple_action-
OptionDescriptionRecommended
spec.port[].all-
spec.port[].dns-
spec.port[].user_defined-

Ask Claude to help you work with Fast Acl Rule resources:

“Create a fast-acl-rule named ‘example’ in the ‘production’ namespace”

“List all fast-acl-rules in the ‘production’ namespace”

“Get details of the fast-acl-rule named ‘example’ in namespace ‘production‘“

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/fast_acl_rules" \
-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}/fast_acl_rules/<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}/fast_acl_rules" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @fast_acl_rule.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/fast_acl_rules/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"