mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-21 05:43:12 +00:00
5.3 KiB
5.3 KiB
/v2/compute/projects/{project_id}/ethernet_hub/nodes/{node_id}
GET /v2/compute/projects/{project_id}/ethernet_hub/nodes/{node_id}
Get an Ethernet hub instance
Parameters
- project_id: Project UUID
- node_id: Node UUID
Response status codes
- 200: Success
- 400: Invalid request
- 404: Instance doesn't exist
Output
Name | Mandatory | Type | Description |
---|---|---|---|
name | string | Ethernet hub name | |
node_id | string | Node UUID | |
ports | array | ||
project_id | string | Project UUID | |
status | enum | Possible values: started, stopped, suspended |
PUT /v2/compute/projects/{project_id}/ethernet_hub/nodes/{node_id}
Update an Ethernet hub instance
Parameters
- project_id: Project UUID
- node_id: Node UUID
Response status codes
- 200: Instance updated
- 400: Invalid request
- 404: Instance doesn't exist
- 409: Conflict
Input
Types
EthernetHubPort
Ethernet port
Name | Mandatory | Type | Description |
---|---|---|---|
name | ✔ | string | Port name |
port_number | ✔ | integer | Port number |
Body
Name | Mandatory | Type | Description |
---|---|---|---|
name | string | Ethernet hub name | |
node_id | string | Node UUID | |
ports | array | ||
project_id | string | Project UUID | |
status | enum | Possible values: started, stopped, suspended |
Output
Name | Mandatory | Type | Description |
---|---|---|---|
name | string | Ethernet hub name | |
node_id | string | Node UUID | |
ports | array | ||
project_id | string | Project UUID | |
status | enum | Possible values: started, stopped, suspended |
DELETE /v2/compute/projects/{project_id}/ethernet_hub/nodes/{node_id}
Delete an Ethernet hub instance
Parameters
- project_id: Project UUID
- node_id: Node UUID
Response status codes
- 400: Invalid request
- 404: Instance doesn't exist
- 204: Instance deleted