-
Notifications
You must be signed in to change notification settings - Fork 20
/
nlb_delete.go
68 lines (51 loc) · 1.67 KB
/
nlb_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
67
68
package cmd
import (
"fmt"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type nlbDeleteCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"delete"`
NetworkLoadBalancer string `cli-arg:"#" cli-usage:"NAME|ID"`
Force bool `cli-short:"f" cli-usage:"don't prompt for confirmation"`
Zone string `cli-short:"z" cli-usage:"Network Load Balancer zone"`
}
func (c *nlbDeleteCmd) cmdAliases() []string { return gRemoveAlias }
func (c *nlbDeleteCmd) cmdShort() string { return "Delete a Network Load Balancer" }
func (c *nlbDeleteCmd) cmdLong() string { return "" }
func (c *nlbDeleteCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *nlbDeleteCmd) cmdRun(_ *cobra.Command, _ []string) error {
if !c.Force {
if !askQuestion(fmt.Sprintf(
"Are you sure you want to delete Network Load Balancer %q?",
c.NetworkLoadBalancer,
)) {
return nil
}
}
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
nlb, err := cs.FindNetworkLoadBalancer(ctx, c.Zone, c.NetworkLoadBalancer)
if err != nil {
return err
}
decorateAsyncOperation(fmt.Sprintf("Deleting Network Load Balancer %q...", c.NetworkLoadBalancer), func() {
err = cs.DeleteNetworkLoadBalancer(ctx, c.Zone, nlb)
})
if err != nil {
return err
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(nlbCmd, &nlbDeleteCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
// FIXME: remove this someday.
cobra.CheckErr(registerCLICommand(deprecatedNLBCmd, &nlbDeleteCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}