mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-19 06:48:10 +00:00
42 lines
2.4 KiB
ReStructuredText
42 lines
2.4 KiB
ReStructuredText
/v2/templates/{template_id}/duplicate
|
|
------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
.. contents::
|
|
|
|
POST /v2/templates/**{template_id}**/duplicate
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Duplicate an template
|
|
|
|
Parameters
|
|
**********
|
|
- **template_id**: Template UUID
|
|
|
|
Response status codes
|
|
**********************
|
|
- **201**: Template duplicated
|
|
- **400**: Invalid request
|
|
- **404**: Template doesn't exist
|
|
|
|
Output
|
|
*******
|
|
.. raw:: html
|
|
|
|
<table>
|
|
<tr> <th>Name</th> <th>Mandatory</th> <th>Type</th> <th>Description</th> </tr>
|
|
<tr><td>builtin</td> <td>✔</td> <td>boolean</td> <td>Template is builtin</td> </tr>
|
|
<tr><td>category</td> <td>✔</td> <td></td> <td>Template category</td> </tr>
|
|
<tr><td>compute_id</td> <td>✔</td> <td>['null', 'string']</td> <td>Compute identifier</td> </tr>
|
|
<tr><td>default_name_format</td> <td>✔</td> <td>string</td> <td>Default name format</td> </tr>
|
|
<tr><td>name</td> <td>✔</td> <td>string</td> <td>Template name</td> </tr>
|
|
<tr><td>symbol</td> <td>✔</td> <td>string</td> <td>Symbol of the template</td> </tr>
|
|
<tr><td>template_id</td> <td>✔</td> <td>string</td> <td>Template UUID</td> </tr>
|
|
<tr><td>template_type</td> <td>✔</td> <td>enum</td> <td>Possible values: cloud, ethernet_hub, ethernet_switch, docker, dynamips, vpcs, traceng, virtualbox, vmware, iou, qemu</td> </tr>
|
|
</table>
|
|
|
|
Sample session
|
|
***************
|
|
|
|
|
|
.. literalinclude:: ../../../examples/controller_post_templatestemplateidduplicate.txt
|
|
|