- Home
- API MCP Server
- tools
- dns
- DNS Lb Health Check
DNS Lb Health Check
Create DNS Load Balancer Health Check in a given namespace. If one already exist it will give a error.
| Tool | Description |
|---|---|
f5xc-api-dns-dns-lb-health-check-create | Create DNS Load Balancer Health Check. |
f5xc-api-dns-dns-lb-health-check-get | GET DNS Load Balancer Health Check. |
f5xc-api-dns-dns-lb-health-check-list | List DNS Load Balancer Health Check. |
f5xc-api-dns-dns-lb-health-check-update | Replace DNS Load Balancer Health Check. |
f5xc-api-dns-dns-lb-health-check-delete | DELETE DNS Load Balancer Health Check. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
metadata.namespace | Namespace | - |
name | Name | - |
namespace | Namespace | - |
metadata.name | Name | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
response_format | The format in which the configuration object is to be fetched. This could be for example | - |
label_filter | A LabelSelectorType expression that every item in list response will satisfy. | - |
report_fields | The report_fields parameter | - |
report_status_fields | The report_status_fields parameter | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
health_check
Section titled “health_check”| Option | Description | Recommended |
|---|---|---|
spec.http_health_check | - | |
spec.https_health_check | - | |
spec.icmp_health_check | - | |
spec.tcp_health_check | - | |
spec.tcp_hex_health_check | - | |
spec.udp_health_check | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with DNS Lb Health Check resources:
Create DNS Lb Health Check
Section titled “Create DNS Lb Health Check”“Create a dns-lb-health-check named ‘example’ in the ‘production’ namespace”
List DNS Lb Health Checks
Section titled “List DNS Lb Health Checks”“List all dns-lb-health-checks in the ‘production’ namespace”
Get DNS Lb Health Check Details
Section titled “Get DNS Lb Health Check Details”“Get details of the dns-lb-health-check named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/dns_lb_health_checks" \ -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}/dns_lb_health_checks/<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}/dns_lb_health_checks" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @dns_lb_health_check.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/dns_lb_health_checks/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"