Detail
Detail provides tools for creating, listing, updating, and deleting resources in F5 Distributed Cloud.
| Tool | Description |
|---|---|
f5xc-api-ddos-detail-create | Add Event Detail. |
f5xc-api-ddos-detail-list | List of event details. |
f5xc-api-ddos-detail-update | Edit event detail. |
f5xc-api-ddos-detail-delete | Delete event detail. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
event_id | Event ID Event ID we want to list the event details for. | - |
namespace | Namespace This request is supported only in system namespace. | system |
event_detail_id | Event Detail ID Event detail ID we want to update. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Detail resources:
Create Detail
Section titled “Create Detail”“Create a detail named ‘example’ in the ‘production’ namespace”
List Details
Section titled “List Details”“List all details in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/infraprotect/namespaces/$${PARAM}/infraprotect/event/${PARAM}/details" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/infraprotect/namespaces/$${PARAM}/infraprotect/event/${PARAM}/details" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @detail.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/infraprotect/namespaces/$${PARAM}/infraprotect/event/${PARAM}/detail/${PARAM}" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"