-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_private_network_detach.go
86 lines (68 loc) · 2.18 KB
/
instance_private_network_detach.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package cmd
import (
"errors"
"fmt"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type instancePrivnetDetachCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"detach"`
Instance string `cli-arg:"#" cli-usage:"INSTANCE-NAME|ID"`
PrivateNetwork string `cli-arg:"#" cli-usage:"PRIVATE-NETWORK-NAME|ID"`
Zone string `cli-short:"z" cli-usage:"instance zone"`
}
func (c *instancePrivnetDetachCmd) cmdAliases() []string { return nil }
func (c *instancePrivnetDetachCmd) cmdShort() string {
return "Detach a Compute instance from a Private Network"
}
func (c *instancePrivnetDetachCmd) cmdLong() string {
return fmt.Sprintf(`This command detaches a Compute instance from a Private Network.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&instanceShowOutput{}), ", "),
)
}
func (c *instancePrivnetDetachCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *instancePrivnetDetachCmd) cmdRun(_ *cobra.Command, _ []string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
instance, err := cs.FindInstance(ctx, c.Zone, c.Instance)
if err != nil {
if errors.Is(err, exoapi.ErrNotFound) {
return fmt.Errorf("resource not found in zone %q", c.Zone)
}
return err
}
privateNetwork, err := cs.FindPrivateNetwork(ctx, c.Zone, c.PrivateNetwork)
if err != nil {
return fmt.Errorf("error retrieving Private Network: %w", err)
}
decorateAsyncOperation(fmt.Sprintf(
"Detaching instance %q from Private Network %q...",
c.Instance,
c.PrivateNetwork,
), func() {
if err = cs.DetachInstanceFromPrivateNetwork(ctx, c.Zone, instance, privateNetwork); err != nil {
return
}
})
if err != nil {
return err
}
if !gQuiet {
return (&instanceShowCmd{
cliCommandSettings: c.cliCommandSettings,
Instance: *instance.ID,
Zone: c.Zone,
}).cmdRun(nil, nil)
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(instancePrivnetCmd, &instancePrivnetDetachCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}