- Home
- API MCP Server
- tools
- ai-services
- Allocateip
Allocateip
AllocateIP will allocate an IP address for the tenant read from context.
| Tool | Description |
|---|---|
f5xc-api-aiservices-allocateip-create | Allocate IP through Global IP Allocator. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Allocateip resources:
Create Allocateip
Section titled “Create Allocateip”“Create a allocateip 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}/allocateips" \ -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}/allocateips/<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}/allocateips" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @allocateip.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/allocateips/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"