2015-02-13 19:27:08 +02:00
/v1/projects/{project_id}/vpcs/vms/{vm_id}
2015-02-17 11:37:09 +02:00
----------------------------------------------------------------------------------------------------------------------
2015-02-05 02:48:33 +02:00
.. contents ::
2015-02-13 19:27:08 +02:00
GET /v1/projects/**{project_id}** /vpcs/vms/**{vm_id}**
2015-02-17 11:37:09 +02:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-02-05 02:48:33 +02:00
Get a VPCS instance
Parameters
***** *****
2015-02-27 19:47:08 +02:00
- **vm_id** : UUID for the instance
2015-03-30 12:05:54 +03:00
- **project_id** : UUID for the project
2015-02-05 02:48:33 +02:00
Response status codes
***** ***** ***** ***** **
- **200** : Success
- **400** : Invalid request
- **404** : Instance doesn't exist
Output
***** **
.. raw :: html
<table>
<tr> <th>Name</th> <th>Mandatory</th> <th>Type</th> <th>Description</th> </tr>
<tr><td>console</td> <td>✔</td> <td>integer</td> <td>console TCP port</td> </tr>
<tr><td>name</td> <td>✔</td> <td>string</td> <td>VPCS VM name</td> </tr>
<tr><td>project_id</td> <td>✔</td> <td>string</td> <td>Project UUID</td> </tr>
<tr><td>startup_script</td> <td> </td> <td>['string', 'null']</td> <td>Content of the VPCS startup script</td> </tr>
2015-02-27 19:39:20 +02:00
<tr><td>startup_script_path</td> <td>✔</td> <td>['string', 'null']</td> <td>Path of the VPCS startup script relative to project directory</td> </tr>
2015-02-05 02:48:33 +02:00
<tr><td>vm_id</td> <td>✔</td> <td>string</td> <td>VPCS VM UUID</td> </tr>
</table>
2015-02-24 12:38:57 +02:00
Sample session
***** ***** *****
.. literalinclude :: ../../examples/get_projectsprojectidvpcsvmsvmid.txt
2015-02-05 02:48:33 +02:00
2015-02-13 19:27:08 +02:00
PUT /v1/projects/**{project_id}** /vpcs/vms/**{vm_id}**
2015-02-17 11:37:09 +02:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-02-05 02:48:33 +02:00
Update a VPCS instance
Parameters
***** *****
2015-02-27 19:47:08 +02:00
- **vm_id** : UUID for the instance
2015-03-30 12:05:54 +03:00
- **project_id** : UUID for the project
2015-02-05 02:48:33 +02:00
Response status codes
***** ***** ***** ***** **
- **200** : Instance updated
- **400** : Invalid request
- **404** : Instance doesn't exist
- **409** : Conflict
Input
***** **
.. raw :: html
<table>
<tr> <th>Name</th> <th>Mandatory</th> <th>Type</th> <th>Description</th> </tr>
<tr><td>console</td> <td> </td> <td>['integer', 'null']</td> <td>console TCP port</td> </tr>
<tr><td>name</td> <td> </td> <td>['string', 'null']</td> <td>VPCS VM name</td> </tr>
<tr><td>startup_script</td> <td> </td> <td>['string', 'null']</td> <td>Content of the VPCS startup script</td> </tr>
</table>
Output
***** **
.. raw :: html
<table>
<tr> <th>Name</th> <th>Mandatory</th> <th>Type</th> <th>Description</th> </tr>
<tr><td>console</td> <td>✔</td> <td>integer</td> <td>console TCP port</td> </tr>
<tr><td>name</td> <td>✔</td> <td>string</td> <td>VPCS VM name</td> </tr>
<tr><td>project_id</td> <td>✔</td> <td>string</td> <td>Project UUID</td> </tr>
<tr><td>startup_script</td> <td> </td> <td>['string', 'null']</td> <td>Content of the VPCS startup script</td> </tr>
2015-02-27 19:39:20 +02:00
<tr><td>startup_script_path</td> <td>✔</td> <td>['string', 'null']</td> <td>Path of the VPCS startup script relative to project directory</td> </tr>
2015-02-05 02:48:33 +02:00
<tr><td>vm_id</td> <td>✔</td> <td>string</td> <td>VPCS VM UUID</td> </tr>
</table>
2015-02-24 12:38:57 +02:00
Sample session
***** ***** *****
.. literalinclude :: ../../examples/put_projectsprojectidvpcsvmsvmid.txt
2015-02-05 02:48:33 +02:00
2015-02-13 19:27:08 +02:00
DELETE /v1/projects/**{project_id}** /vpcs/vms/**{vm_id}**
2015-02-17 11:37:09 +02:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-02-05 02:48:33 +02:00
Delete a VPCS instance
Parameters
***** *****
2015-02-27 19:47:08 +02:00
- **vm_id** : UUID for the instance
2015-03-30 12:05:54 +03:00
- **project_id** : UUID for the project
2015-02-05 02:48:33 +02:00
Response status codes
***** ***** ***** ***** **
- **400** : Invalid request
- **404** : Instance doesn't exist
- **204** : Instance deleted
2015-02-24 12:38:57 +02:00
Sample session
***** ***** *****
.. literalinclude :: ../../examples/delete_projectsprojectidvpcsvmsvmid.txt