mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-26 07:51:08 +00:00
5.9 KiB
5.9 KiB
/v2/computes/{compute_id}
PUT /v2/computes/{compute_id}
Get a compute server information
Response status codes
- 200: Compute server updated
- 400: Invalid request
- 404: Instance doesn't exist
Input
Name | Mandatory | Type | Description |
---|---|---|---|
compute_id | string | Server identifier | |
host | string | Server host | |
name | string | Server name | |
password | ['string', 'null'] | Password for authentication | |
port | integer | Server port | |
protocol | enum | Possible values: http, https | |
user | ['string', 'null'] | User for authentication |
Output
Name | Mandatory | Type | Description |
---|---|---|---|
compute_id | ✔ | string | Server identifier |
connected | ✔ | boolean | Whether the controller is connected to the compute server or not |
host | ✔ | string | Server host |
name | ✔ | string | Server name |
port | ✔ | integer | Server port |
protocol | ✔ | enum | Possible values: http, https |
user | ['string', 'null'] | User for authentication | |
version | ['string', 'null'] | Version of the GNS3 remote compute server |
GET /v2/computes/{compute_id}
Get a compute server information
Response status codes
- 200: Compute server information returned
Output
Name | Mandatory | Type | Description |
---|---|---|---|
compute_id | ✔ | string | Server identifier |
connected | ✔ | boolean | Whether the controller is connected to the compute server or not |
host | ✔ | string | Server host |
name | ✔ | string | Server name |
port | ✔ | integer | Server port |
protocol | ✔ | enum | Possible values: http, https |
user | ['string', 'null'] | User for authentication | |
version | ['string', 'null'] | Version of the GNS3 remote compute server |
DELETE /v2/computes/{compute_id}
Delete a compute instance
Parameters
- compute_id: Compute UUID
Response status codes
- 400: Invalid request
- 404: Instance doesn't exist
- 204: Instance deleted