mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-01 04:38:12 +00:00
49 lines
1.1 KiB
ReStructuredText
49 lines
1.1 KiB
ReStructuredText
|
/virtualbox/{uuid}/adapters/{adapter_id:\d+}/nio
|
||
|
---------------------------------------------
|
||
|
|
||
|
.. contents::
|
||
|
|
||
|
POST /virtualbox/**{uuid}**/adapters/**{adapter_id:\d+}**/nio
|
||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
Add a NIO to a VirtualBox VM instance
|
||
|
|
||
|
Parameters
|
||
|
**********
|
||
|
- **adapter_id**: Adapter where the nio should be added
|
||
|
- **uuid**: Instance UUID
|
||
|
|
||
|
Response status codes
|
||
|
**********************
|
||
|
- **400**: Invalid instance UUID
|
||
|
- **201**: NIO created
|
||
|
- **404**: Instance doesn't exist
|
||
|
|
||
|
Sample session
|
||
|
***************
|
||
|
|
||
|
|
||
|
.. literalinclude:: examples/post_virtualboxuuidadaptersadapteriddnio.txt
|
||
|
|
||
|
|
||
|
DELETE /virtualbox/**{uuid}**/adapters/**{adapter_id:\d+}**/nio
|
||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
Remove a NIO from a VirtualBox VM instance
|
||
|
|
||
|
Parameters
|
||
|
**********
|
||
|
- **adapter_id**: Adapter from where the nio should be removed
|
||
|
- **uuid**: Instance UUID
|
||
|
|
||
|
Response status codes
|
||
|
**********************
|
||
|
- **400**: Invalid instance UUID
|
||
|
- **404**: Instance doesn't exist
|
||
|
- **204**: NIO deleted
|
||
|
|
||
|
Sample session
|
||
|
***************
|
||
|
|
||
|
|
||
|
.. literalinclude:: examples/delete_virtualboxuuidadaptersadapteriddnio.txt
|
||
|
|