Release an Image
Format
Method | POST |
---|---|
URL | /tasks/create |
Request content | ImageRelease Object |
Successful answer | TaskResult Object |
Unexpected error | HTTP 500 |
ImageRelease Object
Schema
repeat | String | Reserved |
---|---|---|
retries | String | Number of times this task will be retried, in case of an error |
type | String | Task type identifier. In this case, "image_release" |
image_id | String | Unique identifier of the Image to release |
image_storage_id | String | Unique identifier of the ImageStorage that contains Volume volume_id |
volume_id | String | Unique identifier of the Volume that contains Image image_id |
JSON example
{ "repeat": "0", "retries": "0", "type": "image_release", "image_id": "imported01_imported_0", "volume_id": "flexvm", "image_storage_id": "local" } |