Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

MethodPOST
URL

/tasks/create

Request contentImageCopy Object
Successful answerTaskResult Object
Unexpected errorHTTP 500

ImageCopy Object

Schema

repeatStringReserved
retriesStringNumber of times this task will be retried, in case of an error
typeStringTask type identifier. In this case, "image_delete"
image_idStringNew unique identifier of the target Image
image_storage_idStringUnique identifier of the Image Storage that contains Volume volume_id
volume_idStringUnique identifier of the Volume where Image image_id will be created
source_image_idStringUnique identifier of the source Image
source_volume_idStringUnique identifier of the Volume that contains source_image_id

Ejemplo en JSON

Code Block
languagejs
{
    "repeat": "0",    
    "retries": "0",
    "type": "image_copy",
    "image_id": "debian_template3",
    "volume_id": "flexfs01",
    "image_storage_id": "istorage01",
    "source_image_id": "debian_template2",
    "source_volume_id": "flexfs01"
}

...