-
Notifications
You must be signed in to change notification settings - Fork 20
/
nlb_update.go
97 lines (75 loc) · 2.42 KB
/
nlb_update.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
87
88
89
90
91
92
93
94
95
96
97
package cmd
import (
"fmt"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type nlbUpdateCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"update"`
NetworkLoadBalancer string `cli-arg:"#" cli-usage:"NAME|ID"`
Description string `cli-usage:"Network Load Balancer description"`
Labels map[string]string `cli-flag:"label" cli-usage:"Network Load Balancer label (format: key=value)"`
Name string `cli-usage:"Network Load Balancer name"`
Zone string `cli-short:"z" cli-usage:"Network Load Balancer zone"`
}
func (c *nlbUpdateCmd) cmdAliases() []string { return nil }
func (c *nlbUpdateCmd) cmdShort() string { return "Update a Network Load Balancer" }
func (c *nlbUpdateCmd) cmdLong() string {
return fmt.Sprintf(`This command updates a Network Load Balancer.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&nlbShowOutput{}), ", "),
)
}
func (c *nlbUpdateCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *nlbUpdateCmd) cmdRun(cmd *cobra.Command, _ []string) error {
var updated bool
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
nlb, err := cs.FindNetworkLoadBalancer(ctx, c.Zone, c.NetworkLoadBalancer)
if err != nil {
return err
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.Description)) {
nlb.Description = &c.Description
updated = true
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.Labels)) {
nlb.Labels = &c.Labels
updated = true
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.Name)) {
nlb.Name = &c.Name
updated = true
}
if updated {
decorateAsyncOperation(
fmt.Sprintf("Updating Network Load Balancer %q...", c.NetworkLoadBalancer),
func() {
if err = cs.UpdateNetworkLoadBalancer(ctx, c.Zone, nlb); err != nil {
return
}
})
if err != nil {
return err
}
}
if !gQuiet {
return (&nlbShowCmd{
cliCommandSettings: c.cliCommandSettings,
NetworkLoadBalancer: *nlb.ID,
Zone: c.Zone,
}).cmdRun(nil, nil)
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(nlbCmd, &nlbUpdateCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
// FIXME: remove this someday.
cobra.CheckErr(registerCLICommand(deprecatedNLBCmd, &nlbUpdateCmd{}))
}