1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-12 02:48:55 +00:00
gns3-server/docs/api/examples/hypervisor_post_qemuimg.txt

23 lines
653 B
Plaintext
Raw Normal View History

2016-03-07 16:57:12 +00:00
curl -i -X POST 'http://localhost:8000/v2/qemu/img' -d '{"cluster_size": 64, "format": "qcow2", "lazy_refcounts": "off", "path": "/tmp/hda.qcow2", "preallocation": "metadata", "qemu_img": "/tmp/qemu-img", "refcount_bits": 12, "size": 100}'
2015-10-16 17:05:29 +00:00
2016-03-07 16:57:12 +00:00
POST /v2/qemu/img HTTP/1.1
2015-10-16 17:05:29 +00:00
{
"cluster_size": 64,
"format": "qcow2",
"lazy_refcounts": "off",
"path": "/tmp/hda.qcow2",
"preallocation": "metadata",
"qemu_img": "/tmp/qemu-img",
"refcount_bits": 12,
"size": 100
}
HTTP/1.1 201
ACCESS-CONTROL-ALLOW-ORIGIN: *
CONTENT-LENGTH: 0
DATE: Thu, 08 Jan 2015 16:09:15 GMT
2016-03-04 16:50:17 +00:00
SERVER: Python/3.5 GNS3/1.5.0dev1
2016-03-07 16:57:12 +00:00
X-ROUTE: /v2/hypervisor/qemu/img
2015-10-16 17:05:29 +00:00