- Home
- API MCP Server
- tools
- ddos
- infrastructure-protection
- Mitigation
Mitigation
Returns details of a single mitigation.
| Tool | Description |
|---|---|
f5xc-api-ddos-mitigation-create | List of mitigations. |
f5xc-api-ddos-mitigation-list | Mitigation details. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
mitigation_id | Mitigation ID | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Mitigation resources:
Create Mitigation
Section titled “Create Mitigation”“Create a mitigation named ‘example’ in the ‘production’ namespace”
List Mitigations
Section titled “List Mitigations”“List all mitigations in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/mitigations" \ -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}/mitigations/<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}/mitigations" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @mitigation.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/mitigations/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"