-
Notifications
You must be signed in to change notification settings - Fork 20
/
elastic_ip_delete.go
69 lines (52 loc) · 1.72 KB
/
elastic_ip_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
69
package cmd
import (
"errors"
"fmt"
"github.com/spf13/cobra"
"github.com/exoscale/cli/pkg/account"
"github.com/exoscale/cli/pkg/globalstate"
exoapi "github.com/exoscale/egoscale/v2/api"
)
type elasticIPDeleteCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"delete"`
ElasticIP string `cli-arg:"#" cli-usage:"IP-ADDRESS|ID"`
Force bool `cli-short:"f" cli-usage:"don't prompt for confirmation"`
Zone string `cli-short:"z" cli-usage:"Elastic IP zone"`
}
func (c *elasticIPDeleteCmd) cmdAliases() []string { return gRemoveAlias }
func (c *elasticIPDeleteCmd) cmdShort() string {
return "Delete an Elastic IP"
}
func (c *elasticIPDeleteCmd) cmdLong() string { return "" }
func (c *elasticIPDeleteCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *elasticIPDeleteCmd) cmdRun(_ *cobra.Command, _ []string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(account.CurrentAccount.Environment, c.Zone))
elasticIP, err := globalstate.EgoscaleClient.FindElasticIP(ctx, c.Zone, c.ElasticIP)
if err != nil {
if errors.Is(err, exoapi.ErrNotFound) {
return fmt.Errorf("resource not found in zone %q", c.Zone)
}
return err
}
if !c.Force {
if !askQuestion(fmt.Sprintf("Are you sure you want to delete Elastic IP %s?", c.ElasticIP)) {
return nil
}
}
decorateAsyncOperation(fmt.Sprintf("Deleting Elastic IP %s...", c.ElasticIP), func() {
err = globalstate.EgoscaleClient.DeleteElasticIP(ctx, c.Zone, elasticIP)
})
if err != nil {
return err
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(elasticIPCmd, &elasticIPDeleteCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}