- Home
- API MCP Server
- tools
- dns
- Clone From DNS Domain
Clone From DNS Domain
Cloning DNS domain to DNSZone.
| Tool | Description |
|---|---|
f5xc-api-dns-clone-from-dns-domain-create | Clone from DNSDomain. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Clone From DNS Domain resources:
Create Clone From DNS Domain
Section titled “Create Clone From DNS Domain”“Create a clone-from-dns-domain named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/clone_from_dns_domains" \ -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}/clone_from_dns_domains/<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}/clone_from_dns_domains" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @clone_from_dns_domain.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/clone_from_dns_domains/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"