Skip to content

Pool Members Health Statu

GET Health Status of all DNS Load Balancer Pool Members in a namespace.

ToolDescription
f5xc-api-dns-pool-members-health-statu-listDNS Load Balancer Pool Members Health Status List.
ParameterDescriptionExample
namespaceNamespace-

Ask Claude to help you work with Pool Members Health Statu resources:

“List all pool-members-health-status in the ‘production’ namespace”

Terminal window
# List resources
curl -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 resource
curl -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 resource
curl -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 resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/pool_members_health_status/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"