Hit¶
Medium Risk
Some operations on this resource may modify or delete data.
GET the counter for Fast ACL hits for a given namespace.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-networksecurity-hit-create | Fast ACL Hits. |
Parameters¶
Path Parameters¶
| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Side Effects¶
Operations on this resource may have the following effects:
Creates:
- hit
Example Usage¶
Ask Claude to help you work with Hit resources:
Create Hit¶
"Create a hit named 'example' in the 'production' namespace"
CURL Examples¶
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/hits" \
-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}/hits/<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}/hits" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @hit.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/hits/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"