Skip to content

Remote Zone File

GET remote zone file from primary DNS.

ToolDescription
f5xc-api-dns-remote-zone-file-listGET Remote Zone File.
ParameterDescriptionExample
dns_zone_nameName-
namespaceNamespace-

Ask Claude to help you work with Remote Zone File resources:

“List all remote-zone-files in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/remote_zone_files" \
-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}/remote_zone_files/<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}/remote_zone_files" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @remote_zone_file.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/remote_zone_files/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"