- Home
- API MCP Server
- tools
- shape
- shape-security
- Update Domain
Update Domain
Update domain from mitigated domains to allowed domains and vice versa.
| Tool | Description |
|---|---|
f5xc-api-shape-update-domain-create | Update Domains. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
allowed_or_mitigated_domains
Section titled “allowed_or_mitigated_domains”| Option | Description | Recommended |
|---|---|---|
add_to_allowed_domains | - | |
add_to_mitigated_domains | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Update Domain resources:
Create Update Domain
Section titled “Create Update Domain”“Create a update-domain 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}/update_domains" \ -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}/update_domains/<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}/update_domains" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @update_domain.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/update_domains/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"