- Home
- API MCP Server
- tools
- network-security
- other
- Fast Acl Rule
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.
| Tool | Description |
|---|---|
f5xc-api-networksecurity-fast-acl-rule-create | Create Fast ACL Rule. |
f5xc-api-networksecurity-fast-acl-rule-get | GET Fast ACL Rule. |
f5xc-api-networksecurity-fast-acl-rule-list | List Fast ACL Rule. |
f5xc-api-networksecurity-fast-acl-rule-update | Replace Fast ACL Rule. |
f5xc-api-networksecurity-fast-acl-rule-delete | DELETE Fast ACL Rule. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
metadata.namespace | Namespace | - |
name | Name | - |
namespace | Namespace | - |
metadata.name | Name | - |
Query Parameters
Section titled “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 | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
source
Section titled “source”| Option | Description | Recommended |
|---|---|---|
spec.ip_prefix_set | - | |
spec.prefix | - |
action
Section titled “action”| Option | Description | Recommended |
|---|---|---|
spec.action.policer_action | - | |
spec.action.protocol_policer_action | - | |
spec.action.simple_action | - |
port_value_type_choice
Section titled “port_value_type_choice”| Option | Description | Recommended |
|---|---|---|
spec.port[].all | - | |
spec.port[].dns | - | |
spec.port[].user_defined | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Fast Acl Rule resources:
Create Fast Acl Rule
Section titled “Create Fast Acl Rule”“Create a fast-acl-rule named ‘example’ in the ‘production’ namespace”
List Fast Acl Rules
Section titled “List Fast Acl Rules”“List all fast-acl-rules in the ‘production’ namespace”
Get Fast Acl Rule Details
Section titled “Get Fast Acl Rule Details”“Get details of the fast-acl-rule named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/fast_acl_rules/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"