Skip to content

Update Domain

Update domain from mitigated domains to allowed domains and vice versa.

ToolDescription
f5xc-api-shape-update-domain-createUpdate Domains.
ParameterDescriptionExample
namespaceNamespace-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
add_to_allowed_domains-
add_to_mitigated_domains-

Ask Claude to help you work with Update Domain resources:

“Create a update-domain named ‘example’ in the ‘production’ namespace”

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