mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
59 lines
2.1 KiB
ReStructuredText
59 lines
2.1 KiB
ReStructuredText
/v2/compute/projects/{project_id}/cloud/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio
|
|
------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
.. contents::
|
|
|
|
POST /v2/compute/projects/**{project_id}**/cloud/nodes/**{node_id}**/adapters/**{adapter_number:\d+}**/ports/**{port_number:\d+}**/nio
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Add a NIO to a cloud instance
|
|
|
|
Parameters
|
|
**********
|
|
- **node_id**: Node UUID
|
|
- **project_id**: Project UUID
|
|
- **port_number**: Port on the cloud
|
|
- **adapter_number**: Adapter on the cloud (always 0)
|
|
|
|
Response status codes
|
|
**********************
|
|
- **400**: Invalid request
|
|
- **201**: NIO created
|
|
- **404**: Instance doesn't exist
|
|
|
|
|
|
PUT /v2/compute/projects/**{project_id}**/cloud/nodes/**{node_id}**/adapters/**{adapter_number:\d+}**/ports/**{port_number:\d+}**/nio
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Update a NIO from a Cloud instance
|
|
|
|
Parameters
|
|
**********
|
|
- **node_id**: Node UUID
|
|
- **project_id**: Project UUID
|
|
- **port_number**: Port from where the nio should be updated
|
|
- **adapter_number**: Network adapter where the nio is located
|
|
|
|
Response status codes
|
|
**********************
|
|
- **400**: Invalid request
|
|
- **201**: NIO updated
|
|
- **404**: Instance doesn't exist
|
|
|
|
|
|
DELETE /v2/compute/projects/**{project_id}**/cloud/nodes/**{node_id}**/adapters/**{adapter_number:\d+}**/ports/**{port_number:\d+}**/nio
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Remove a NIO from a cloud instance
|
|
|
|
Parameters
|
|
**********
|
|
- **node_id**: Node UUID
|
|
- **project_id**: Project UUID
|
|
- **port_number**: Port on the cloud
|
|
- **adapter_number**: Adapter on the cloud (always 0)
|
|
|
|
Response status codes
|
|
**********************
|
|
- **400**: Invalid request
|
|
- **404**: Instance doesn't exist
|
|
- **204**: NIO deleted
|
|
|