mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-26 16:01:08 +00:00
7f72b90b0e
* A new one for controller related events (compute, appliance templates etc.) * The existing one for project related events (links, nodes etc.)
4.0 KiB
4.0 KiB
/v2/compute/qemu/img
POST /v2/compute/qemu/img
Create a Qemu image
Response status codes
- 201: Image created
Input
Name | Mandatory | Type | Description |
---|---|---|---|
adapter_type | enum | Possible values: ide, lsilogic, buslogic, legacyESX | |
cluster_size | integer | ||
format | ✔ | enum | Possible values: qcow2, qcow, vpc, vdi, vmdk, raw |
lazy_refcounts | enum | Possible values: on, off | |
path | ✔ | string | Absolute or relative path of the image |
preallocation | enum | Possible values: off, metadata, falloc, full | |
qemu_img | ✔ | string | Path to the qemu-img binary |
refcount_bits | integer | ||
size | ✔ | integer | Image size in Megabytes |
static | enum | Possible values: on, off | |
subformat | enum | Possible values: dynamic, fixed, streamOptimized, twoGbMaxExtentSparse, twoGbMaxExtentFlat, monolithicSparse, monolithicFlat | |
zeroed_grain | enum | Possible values: on, off |
Sample session
../../../examples/compute_post_qemuimg.txt
PUT /v2/compute/qemu/img
Update a Qemu image
Response status codes
- 201: Image Updated
Input
Name | Mandatory | Type | Description |
---|---|---|---|
extend | integer | Number of Megabytes to extend the image | |
path | ✔ | string | Absolute or relative path of the image |
qemu_img | ✔ | string | Path to the qemu-img binary |