mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-10 23:12:48 +00:00
49 lines
1.1 KiB
ReStructuredText
49 lines
1.1 KiB
ReStructuredText
|
/vpcs/{uuid}/ports/{port_number:\d+}/nio
|
||
|
---------------------------------------------
|
||
|
|
||
|
.. contents::
|
||
|
|
||
|
POST /vpcs/**{uuid}**/ports/**{port_number:\d+}**/nio
|
||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
Add a NIO to a VPCS instance
|
||
|
|
||
|
Parameters
|
||
|
**********
|
||
|
- **port_number**: Port 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_vpcsuuidportsportnumberdnio.txt
|
||
|
|
||
|
|
||
|
DELETE /vpcs/**{uuid}**/ports/**{port_number:\d+}**/nio
|
||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
Remove a NIO from a VPCS instance
|
||
|
|
||
|
Parameters
|
||
|
**********
|
||
|
- **port_number**: Port 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_vpcsuuidportsportnumberdnio.txt
|
||
|
|