Deallocateip¶
High Risk Operation
This resource includes operations that may cause significant changes. Review carefully before executing.
Confirmation Required
Some operations on this resource require explicit confirmation before execution.
DeallocateIP will de-allocate the specified IP address for tenant.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-aiservices-deallocateip-delete | Deallocate IP through Global IP Allocator. |
Side Effects¶
Operations on this resource may have the following effects:
Deletes:
- deallocateip
Example Usage¶
Ask Claude to help you work with Deallocateip resources:
CURL Examples¶
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/deallocateips" \
-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}/deallocateips/<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}/deallocateips" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @deallocateip.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/deallocateips/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"