1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00
gns3-server/docs/api/examples/compute_put_projectsprojectiddockernodesnodeid.txt

42 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-01-08 02:52:15 +00:00
curl -i -X PUT 'http://localhost:3080/v2/compute/projects/a1e920ca-338a-4e9f-b363-aa607b09dd80/docker/nodes/1a59fa68-aef8-4220-9262-01d2063817a0' -d '{"console": 5006, "environment": "GNS3=1\nGNS4=0", "extra_hosts": "test:127.0.0.1", "name": "test", "start_command": "yes"}'
2018-01-08 08:26:44 +00:00
2020-01-08 02:52:15 +00:00
PUT /v2/compute/projects/a1e920ca-338a-4e9f-b363-aa607b09dd80/docker/nodes/1a59fa68-aef8-4220-9262-01d2063817a0 HTTP/1.1
2018-01-08 08:26:44 +00:00
{
"console": 5006,
"environment": "GNS3=1\nGNS4=0",
2018-06-07 08:26:06 +00:00
"extra_hosts": "test:127.0.0.1",
2018-01-08 08:26:44 +00:00
"name": "test",
"start_command": "yes"
}
HTTP/1.1 200
Connection: close
2020-01-08 02:52:15 +00:00
Content-Length: 681
2018-01-08 08:26:44 +00:00
Content-Type: application/json
2020-01-08 02:52:15 +00:00
Date: Wed, 08 Jan 2020 02:25:51 GMT
Server: Python/3.6 GNS3/2.2.4dev1
2018-01-08 08:26:44 +00:00
X-Route: /v2/compute/projects/{project_id}/docker/nodes/{node_id}
{
"adapters": 2,
"aux": 5005,
"console": 5006,
"console_http_path": "/",
"console_http_port": 80,
"console_resolution": "1280x1024",
"console_type": "telnet",
"container_id": "8bd8153ea8f5",
"environment": "GNS3=1\nGNS4=0",
2018-06-07 08:26:06 +00:00
"extra_hosts": "test:127.0.0.1",
2019-10-23 14:00:00 +00:00
"extra_volumes": [],
2018-01-08 08:26:44 +00:00
"image": "nginx:latest",
"name": "test",
2020-01-08 02:52:15 +00:00
"node_directory": "/tmp/pytest-of-grossmj/pytest-41/test_json4/project-files/docker/1a59fa68-aef8-4220-9262-01d2063817a0",
"node_id": "1a59fa68-aef8-4220-9262-01d2063817a0",
2018-01-08 08:26:44 +00:00
"project_id": "a1e920ca-338a-4e9f-b363-aa607b09dd80",
"start_command": "yes",
2019-03-30 08:56:26 +00:00
"status": "stopped",
"usage": ""
2018-01-08 08:26:44 +00:00
}