Skip to content

Fast Acl

High Risk Operation

This resource includes operations that may cause significant changes. Review carefully before executing.

Confirmation Required

Some operations on this resource require explicit confirmation before execution.

Replace a fast_acl object, fast_acl object contains rules to protect site from denial of service It has destination{destination IP, destination port) and references to fast_acl_rule

Tools

Tool Description
f5xc-api-networksecurity-fast-acl-create Create Fast ACL.
f5xc-api-networksecurity-fast-acl-get GET Fast ACL.
f5xc-api-networksecurity-fast-acl-list List Fast ACL.
f5xc-api-networksecurity-fast-acl-update Replace Fast ACL.
f5xc-api-networksecurity-fast-acl-delete DELETE Fast ACL.

Parameters

Path Parameters

Parameter Description Example
metadata.namespace Namespace -
name Name -
namespace Namespace -
metadata.name Name -

Query Parameters

Parameter Description Example
response_format The format in which the configuration object is to be fetched. This could be for example -
label_filter A LabelSelectorType expression that every item in list response will satisfy. -
report_fields The report_fields parameter -
report_status_fields The report_status_fields parameter -

Side Effects

Operations on this resource may have the following effects:

Creates:

  • fast-acl

Modifies:

  • fast-acl

Deletes:

  • fast-acl
  • contained_resources

Example Usage

Ask Claude to help you work with Fast Acl resources:

Create Fast Acl

"Create a fast-acl named 'example' in the 'production' namespace"

List Fast Acls

"List all fast-acls in the 'production' namespace"

Get Fast Acl Details

"Get details of the fast-acl named 'example' in namespace 'production'"

CURL Examples

# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/fast_acls" \
  -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_acls/<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_acls" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}" \
  -H "Content-Type: application/json" \
  -d @fast_acl.json

# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/fast_acls/<name>" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}"