- Home
- API MCP Server
- tools
- service-mesh
- Software Os Version
Software Os Version
API to GET OS IMAGE based on the software version.
| Tool | Description |
|---|---|
f5xc-api-servicemesh-software-os-version-create | GET OS based on SW_VERSION. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Software Os Version resources:
Create Software Os Version
Section titled “Create Software Os Version”“Create a software-os-version 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}/software_os_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}/software_os_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}/software_os_versions" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @software_os_version.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/software_os_versions/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"