-
Notifications
You must be signed in to change notification settings - Fork 20
/
affinitygroup_delete.go
54 lines (43 loc) · 1.06 KB
/
affinitygroup_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
package cmd
import (
"fmt"
"github.com/exoscale/egoscale"
"github.com/spf13/cobra"
)
// deleteCmd represents the delete command
var affinitygroupDeleteCmd = &cobra.Command{
Use: "delete <name | id>",
Short: "Delete affinity group",
Aliases: gDeleteAlias,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return cmd.Usage()
}
force, err := cmd.Flags().GetBool("force")
if err != nil {
return err
}
if !force {
if !askQuestion(fmt.Sprintf("sure you want to delete %q affinity group", args[0])) {
return nil
}
}
return deleteAffinityGroup(args[0])
},
}
func deleteAffinityGroup(name string) error {
aff, err := getAffinityGroupByName(name)
if err != nil {
return err
}
_, err = cs.Request(&egoscale.DeleteAffinityGroup{ID: aff.ID})
if err != nil {
return err
}
fmt.Println(aff.ID)
return nil
}
func init() {
affinitygroupDeleteCmd.Flags().BoolP("force", "f", false, "Attempt to remove affinity group without prompting for confirmation")
affinitygroupCmd.AddCommand(affinitygroupDeleteCmd)
}