- Home
- API MCP Server
- tools
- ce-management
- Upgradable Sw Version
Upgradable Sw Version
API to GET list of sw versions that can be upgraded to.
| Tool | Description |
|---|---|
f5xc-api-cemanagement-upgradable-sw-version-list | GET Upgradable SW Versions. |
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
current_os_version | Fetch upgradable sw versions for site. | - |
current_sw_version | Fetch upgradable sw versions for site. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Upgradable Sw Version resources:
List Upgradable Sw Versions
Section titled “List Upgradable Sw Versions”“List all upgradable-sw-versions in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/upgradable_sw_versions" \ -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}/upgradable_sw_versions/<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}/upgradable_sw_versions" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @upgradable_sw_version.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/upgradable_sw_versions/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"