Get Image Download Url¶
Medium Risk
Some operations on this resource may modify or delete data.
Returns image download URL for each provider.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-cemanagement-get-image-download-url-create | GET Image Download URL. |
Side Effects¶
Operations on this resource may have the following effects:
Creates:
- get-image-download-url
Example Usage¶
Ask Claude to help you work with Get Image Download Url resources:
Create Get Image Download Url¶
"Create a get-image-download-url named 'example' in the 'production' namespace"
CURL Examples¶
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/get_image_download_urls" \
-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}/get_image_download_urls/<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}/get_image_download_urls" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @get_image_download_url.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/get_image_download_urls/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"