Skip to content

Health Status Change Event

GET DNS Load Balancer Pool Health Status Changes.

ToolDescription
f5xc-api-dns-health-status-change-event-listDNS Load Balancer Pool Member Health Status Change Events.
ParameterDescriptionExample
dns_lb_nameDNS Load Balancer Name-
dns_lb_pool_nameDNS Load Balancer Pool Name-
namespaceNamespace-
pool_member_addressDNS Load Balancer Pool Member Address-

Ask Claude to help you work with Health Status Change Event resources:

“List all health-status-change-events in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/health_status_change_events" \
-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}/health_status_change_events/<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}/health_status_change_events" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @health_status_change_event.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/health_status_change_events/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"