1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-07 06:30:56 +00:00
gns3-server/docs/api/v2/hypervisor/iou/projectsprojectidiouvmsvmidconfigs.rst

32 lines
1.4 KiB
ReStructuredText
Raw Normal View History

2016-03-07 16:57:12 +00:00
/v2/hypervisor/projects/{project_id}/iou/vms/{vm_id}/configs
------------------------------------------------------------------------------------------------------------------------------------------
2015-04-07 14:09:27 +00:00
.. contents::
2016-03-07 16:57:12 +00:00
GET /v2/hypervisor/projects/**{project_id}**/iou/vms/**{vm_id}**/configs
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-06-10 12:35:53 +00:00
Retrieve the startup and private configs content
2015-04-07 14:09:27 +00:00
Response status codes
**********************
2015-06-10 12:35:53 +00:00
- **200**: Configs retrieved
2015-04-07 14:09:27 +00:00
- **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>
2015-06-10 12:35:53 +00:00
<tr><td>private_config_content</td> <td> </td> <td>['string', 'null']</td> <td>Content of the private configuration file</td> </tr>
<tr><td>startup_config_content</td> <td> </td> <td>['string', 'null']</td> <td>Content of the startup configuration file</td> </tr>
2015-04-07 14:09:27 +00:00
</table>
Sample session
***************
.. literalinclude:: ../../../examples/hypervisor_get_projectsprojectidiouvmsvmidconfigs.txt
2015-04-07 14:09:27 +00:00