- Home
- API MCP Server
- tools
- dns
- DNS Load Balancer
DNS Load Balancer
Create DNS Load Balancer in a given namespace. If one already exist it will give a error.
| Tool | Description |
|---|---|
f5xc-api-dns-dns-load-balancer-create | Create DNS Load Balancer. |
f5xc-api-dns-dns-load-balancer-get | GET DNS Load Balancer. |
f5xc-api-dns-dns-load-balancer-list | List DNS Load Balancer. |
f5xc-api-dns-dns-load-balancer-update | Replace DNS Load Balancer. |
f5xc-api-dns-dns-load-balancer-delete | DELETE DNS Load Balancer. |
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:
response_cache_parameters_choice
Section titled “response_cache_parameters_choice”| Option | Description | Recommended |
|---|---|---|
spec.response_cache.default_response_cache_parameters | - | |
spec.response_cache.disable | - | |
spec.response_cache.response_cache_parameters | - |
action_choice
Section titled “action_choice”| Option | Description | Recommended |
|---|---|---|
spec.rule_list.rules[].pool | - |
client_choice
Section titled “client_choice”| Option | Description | Recommended |
|---|---|---|
spec.rule_list.rules[].asn_list | - | |
spec.rule_list.rules[].asn_matcher | - | |
spec.rule_list.rules[].geo_location_label_selector | - | |
spec.rule_list.rules[].geo_location_set | - | |
spec.rule_list.rules[].ip_prefix_list | - | |
spec.rule_list.rules[].ip_prefix_set | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with DNS Load Balancer resources:
Create DNS Load Balancer
Section titled “Create DNS Load Balancer”“Create a dns-load-balancer named ‘example’ in the ‘production’ namespace”
List DNS Load Balancers
Section titled “List DNS Load Balancers”“List all dns-load-balancers in the ‘production’ namespace”
Get DNS Load Balancer Details
Section titled “Get DNS Load Balancer Details”“Get details of the dns-load-balancer 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_load_balancers" \ -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_load_balancers/<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_load_balancers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @dns_load_balancer.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/dns_load_balancers/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"