mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 17:24:51 +02:00
da00aa030a
Fix #116
31 lines
918 B
Plaintext
31 lines
918 B
Plaintext
curl -i -X PUT 'http://localhost:8000/v1/projects/a1e920ca-338a-4e9f-b363-aa607b09dd80/virtualbox/vms/e562f4e9-9951-446d-8f86-7fc2772cea87' -d '{"console": 2010, "name": "test"}'
|
|
|
|
PUT /v1/projects/a1e920ca-338a-4e9f-b363-aa607b09dd80/virtualbox/vms/e562f4e9-9951-446d-8f86-7fc2772cea87 HTTP/1.1
|
|
{
|
|
"console": 2010,
|
|
"name": "test"
|
|
}
|
|
|
|
|
|
HTTP/1.1 200
|
|
CONNECTION: keep-alive
|
|
CONTENT-LENGTH: 359
|
|
CONTENT-TYPE: application/json
|
|
DATE: Thu, 08 Jan 2015 16:09:15 GMT
|
|
SERVER: Python/3.4 GNS3/1.3.0.dev3
|
|
X-ROUTE: /v1/projects/{project_id}/virtualbox/vms/{vm_id}
|
|
|
|
{
|
|
"adapter_type": "Intel PRO/1000 MT Desktop (82540EM)",
|
|
"adapters": 0,
|
|
"console": 2010,
|
|
"enable_remote_console": false,
|
|
"headless": false,
|
|
"name": "test",
|
|
"project_id": "a1e920ca-338a-4e9f-b363-aa607b09dd80",
|
|
"ram": 0,
|
|
"use_any_adapter": false,
|
|
"vm_id": "e562f4e9-9951-446d-8f86-7fc2772cea87",
|
|
"vmname": "VMTEST"
|
|
}
|