1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-12 02:48:55 +00:00
gns3-server/docs/api/v1/qemu/projectsprojectidqemuvmsvmidadaptersadapternumberdportsportnumberdnio.rst

53 lines
1.8 KiB
ReStructuredText
Raw Normal View History

2015-02-20 13:39:13 +00:00
/v1/projects/{project_id}/qemu/vms/{vm_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio
----------------------------------------------------------------------------------------------------------------------
.. contents::
POST /v1/projects/**{project_id}**/qemu/vms/**{vm_id}**/adapters/**{adapter_number:\d+}**/ports/**{port_number:\d+}**/nio
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-05-01 09:20:55 +00:00
Add a NIO to a Qemu VM instance
2015-02-20 13:39:13 +00:00
Parameters
**********
2015-10-16 17:05:29 +00:00
- **adapter_number**: Network adapter where the nio is located
2015-07-09 14:16:43 +00:00
- **project_id**: UUID for the project
2015-10-16 17:05:29 +00:00
- **port_number**: Port on the adapter (always 0)
2015-07-09 14:16:43 +00:00
- **vm_id**: UUID for the instance
2015-02-20 13:39:13 +00:00
Response status codes
**********************
- **400**: Invalid request
- **201**: NIO created
- **404**: Instance doesn't exist
2015-02-24 10:38:57 +00:00
Sample session
***************
.. literalinclude:: ../../examples/post_projectsprojectidqemuvmsvmidadaptersadapternumberdportsportnumberdnio.txt
2015-02-20 13:39:13 +00:00
DELETE /v1/projects/**{project_id}**/qemu/vms/**{vm_id}**/adapters/**{adapter_number:\d+}**/ports/**{port_number:\d+}**/nio
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-05-01 09:20:55 +00:00
Remove a NIO from a Qemu VM instance
2015-02-20 13:39:13 +00:00
Parameters
**********
2015-10-16 17:05:29 +00:00
- **adapter_number**: Network adapter where the nio is located
2015-07-09 14:16:43 +00:00
- **project_id**: UUID for the project
2015-10-16 17:05:29 +00:00
- **port_number**: Port on the adapter (always 0)
2015-07-09 14:16:43 +00:00
- **vm_id**: UUID for the instance
2015-02-20 13:39:13 +00:00
Response status codes
**********************
- **400**: Invalid request
- **404**: Instance doesn't exist
- **204**: NIO deleted
2015-02-24 10:38:57 +00:00
Sample session
***************
.. literalinclude:: ../../examples/delete_projectsprojectidqemuvmsvmidadaptersadapternumberdportsportnumberdnio.txt