Skip to content

Import

Import F5 Cloud Services DNS Zone.

ToolDescription
f5xc-api-dns-import-createImport F5 Cloud Services DNS Zone.

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
configuration.adns_service-
configuration.dns_service-

Ask Claude to help you work with Import resources:

“Create a import named ‘example’ in the ‘production’ namespace”

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