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