Skip to content

Detail

Detail provides tools for creating, listing, updating, and deleting resources in F5 Distributed Cloud.

ToolDescription
f5xc-api-ddos-detail-createAdd Event Detail.
f5xc-api-ddos-detail-listList of event details.
f5xc-api-ddos-detail-updateEdit event detail.
f5xc-api-ddos-detail-deleteDelete event detail.
ParameterDescriptionExample
event_idEvent ID Event ID we want to list the event details for.-
namespaceNamespace This request is supported only in system namespace.system
event_detail_idEvent Detail ID Event detail ID we want to update.-

Ask Claude to help you work with Detail resources:

“Create a detail named ‘example’ in the ‘production’ namespace”

“List all details in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/infraprotect/namespaces/$${PARAM}/infraprotect/event/${PARAM}/details" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resource
curl -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 resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/infraprotect/namespaces/$${PARAM}/infraprotect/event/${PARAM}/detail/${PARAM}" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"