- Home
- API MCP Server
- tools
- dns
- Health Status Change Event
Health Status Change Event
GET DNS Load Balancer Pool Health Status Changes.
| Tool | Description |
|---|---|
f5xc-api-dns-health-status-change-event-list | DNS Load Balancer Pool Member Health Status Change Events. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
dns_lb_name | DNS Load Balancer Name | - |
dns_lb_pool_name | DNS Load Balancer Pool Name | - |
namespace | Namespace | - |
pool_member_address | DNS Load Balancer Pool Member Address | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Health Status Change Event resources:
List Health Status Change Events
Section titled “List Health Status Change Events”“List all health-status-change-events in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/health_status_change_events/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"