- Home
- API MCP Server
- tools
- dns
- Import Axfr
Import Axfr
Import DNS Zone via AXFR.
| Tool | Description |
|---|---|
f5xc-api-dns-import-axfr-create | Import DNS Zone. |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
secret_info_oneof
Section titled “secret_info_oneof”| Option | Description | Recommended |
|---|---|---|
tsig_configuration.tsig_key_value.blindfold_secret_info | - | |
tsig_configuration.tsig_key_value.clear_secret_info | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Import Axfr resources:
Create Import Axfr
Section titled “Create Import Axfr”“Create a import-axfr 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}/import_axfrs" \ -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}/import_axfrs/<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}/import_axfrs" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @import_axfr.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/import_axfrs/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"