-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_template_delete.go
66 lines (50 loc) · 1.57 KB
/
instance_template_delete.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package cmd
import (
"fmt"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type instanceTemplateDeleteCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"delete"`
TemplateID string `cli-arg:"#" cli-usage:"TEMPLATE-ID"`
Force bool `cli-short:"f" cli-usage:"don't prompt for confirmation"`
Zone string `cli-short:"z" cli-usage:"template zone"`
}
func (c *instanceTemplateDeleteCmd) cmdAliases() []string { return gRemoveAlias }
func (c *instanceTemplateDeleteCmd) cmdShort() string {
return "Delete a Compute instance template"
}
func (c *instanceTemplateDeleteCmd) cmdLong() string { return "" }
func (c *instanceTemplateDeleteCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *instanceTemplateDeleteCmd) cmdRun(_ *cobra.Command, _ []string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
template, err := cs.GetTemplate(ctx, c.Zone, c.TemplateID)
if err != nil {
return err
}
if !c.Force {
if !askQuestion(fmt.Sprintf(
"Are you sure you want to delete template %s (%q)?",
c.TemplateID,
*template.Name,
)) {
return nil
}
}
decorateAsyncOperation(fmt.Sprintf("Deleting template %s...", c.TemplateID), func() {
err = cs.DeleteTemplate(ctx, c.Zone, template)
})
if err != nil {
return err
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(instanceTemplateCmd, &instanceTemplateDeleteCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}