1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/docs/api/v2/compute/nat/projectsprojectidnatnodesnodeidadaptersadapternumberdportsportnumberdnio.rst

59 lines
2.1 KiB
ReStructuredText
Raw Normal View History

2016-08-25 12:43:19 +00:00
/v2/compute/projects/{project_id}/nat/nodes/{node_id}/adapters/{adapter_number:\d+}/ports/{port_number:\d+}/nio
------------------------------------------------------------------------------------------------------------------------------------------
.. contents::
POST /v2/compute/projects/**{project_id}**/nat/nodes/**{node_id}**/adapters/**{adapter_number:\d+}**/ports/**{port_number:\d+}**/nio
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Add a NIO to a nat instance
Parameters
**********
2017-03-06 13:35:39 +00:00
- **node_id**: Node UUID
2018-01-08 04:57:07 +00:00
- **project_id**: Project UUID
2016-11-03 17:20:51 +00:00
- **port_number**: Port on the nat
2018-01-08 04:57:07 +00:00
- **adapter_number**: Adapter on the nat (always 0)
2016-08-25 12:43:19 +00:00
Response status codes
**********************
2017-03-06 13:35:39 +00:00
- **400**: Invalid request
2018-01-08 04:57:07 +00:00
- **201**: NIO created
2016-08-25 12:43:19 +00:00
- **404**: Instance doesn't exist
2017-03-21 12:32:04 +00:00
2018-01-08 04:57:07 +00:00
PUT /v2/compute/projects/**{project_id}**/nat/nodes/**{node_id}**/adapters/**{adapter_number:\d+}**/ports/**{port_number:\d+}**/nio
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Update a NIO from a NAT instance
2017-03-21 12:32:04 +00:00
2018-01-08 04:57:07 +00:00
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
2017-03-21 12:32:04 +00:00
2016-08-25 12:43:19 +00:00
DELETE /v2/compute/projects/**{project_id}**/nat/nodes/**{node_id}**/adapters/**{adapter_number:\d+}**/ports/**{port_number:\d+}**/nio
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Remove a NIO from a nat instance
Parameters
**********
2017-03-06 13:35:39 +00:00
- **node_id**: Node UUID
2018-01-08 04:57:07 +00:00
- **project_id**: Project UUID
2016-11-03 17:20:51 +00:00
- **port_number**: Port on the nat
2018-01-08 04:57:07 +00:00
- **adapter_number**: Adapter on the nat (always 0)
2016-08-25 12:43:19 +00:00
Response status codes
**********************
- **400**: Invalid request
- **404**: Instance doesn't exist
2018-01-08 04:57:07 +00:00
- **204**: NIO deleted
2017-03-21 12:32:04 +00:00