File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ Current commands supported in a `plan` file:
7676- cloud server create
7777- cloud server resize
7878- cloud template restore
79+ - ssh
7980
8081Example:
8182
Original file line number Diff line number Diff line change @@ -26,7 +26,19 @@ import (
2626var cloudTemplateRestoreCmd = & cobra.Command {
2727 Use : "restore" ,
2828 Short : "Restore a Cloud Template on a Cloud Server" ,
29- Long : `Restore a Cloud Template on a Cloud Server.` ,
29+ Long : `Restore a Cloud Template on a Cloud Server.
30+
31+ Plan Example:
32+
33+ ---
34+ cloud:
35+ template:
36+ restore:
37+ - uniq-id: ABC123
38+ template: DEBIAN_10_UNMANAGED
39+
40+ lw plan --file cloud.template.restore.yaml
41+ ` ,
3042 Run : func (cmd * cobra.Command , args []string ) {
3143 params := & instance.CloudTemplateRestoreParams {}
3244
Original file line number Diff line number Diff line change 1+ ---
2+ cloud :
3+ template :
4+ restore :
5+ - uniq-id : ABC123
6+ template : DEBIAN_10_UNMANAGED
You can’t perform that action at this time.
0 commit comments