- Home
- API MCP Server
- tools
- dns
- Pool Members Health Statu
Pool Members Health Statu
GET Health Status of all DNS Load Balancer Pool Members in a namespace.
| Tool | Description |
|---|---|
f5xc-api-dns-pool-members-health-statu-list | DNS Load Balancer Pool Members Health Status List. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Pool Members Health Statu resources:
List Pool Members Health Status
Section titled “List Pool Members Health Status”“List all pool-members-health-status in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/pool_members_health_status" \ -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}/pool_members_health_status/<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}/pool_members_health_status" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @pool_members_health_statu.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/pool_members_health_status/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"