-
Notifications
You must be signed in to change notification settings - Fork 20
/
deploy_target_show.go
75 lines (57 loc) · 2.11 KB
/
deploy_target_show.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
package cmd
import (
"fmt"
"strings"
"github.com/spf13/cobra"
"github.com/exoscale/cli/pkg/account"
"github.com/exoscale/cli/pkg/globalstate"
"github.com/exoscale/cli/pkg/output"
"github.com/exoscale/cli/utils"
exoapi "github.com/exoscale/egoscale/v2/api"
)
type deployTargetShowOutput struct {
ID string `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Type string `json:"type"`
Zone string `json:"zone"`
}
func (o *deployTargetShowOutput) ToJSON() { output.JSON(o) }
func (o *deployTargetShowOutput) ToText() { output.Text(o) }
func (o *deployTargetShowOutput) ToTable() { output.Table(o) }
type deployTargetShowCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"show"`
DeployTarget string `cli-arg:"#" cli-usage:"NAME|ID"`
Zone string `cli-short:"z" cli-usage:"Deploy Target zone"`
}
func (c *deployTargetShowCmd) cmdAliases() []string { return gShowAlias }
func (c *deployTargetShowCmd) cmdShort() string { return "Show a Deploy Target details" }
func (c *deployTargetShowCmd) cmdLong() string {
return fmt.Sprintf(`This command shows a Deploy Target details.
Supported output template annotations: %s`,
strings.Join(output.TemplateAnnotations(&deployTargetShowOutput{}), ", "))
}
func (c *deployTargetShowCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *deployTargetShowCmd) cmdRun(_ *cobra.Command, _ []string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(account.CurrentAccount.Environment, c.Zone))
dt, err := globalstate.EgoscaleClient.FindDeployTarget(ctx, c.Zone, c.DeployTarget)
if err != nil {
return fmt.Errorf("error retrieving Deploy Target: %w", err)
}
return c.outputFunc(&deployTargetShowOutput{
ID: *dt.ID,
Name: *dt.Name,
Description: utils.DefaultString(dt.Description, ""),
Type: *dt.Type,
Zone: c.Zone,
}, nil)
}
func init() {
cobra.CheckErr(registerCLICommand(deployTargetCmd, &deployTargetShowCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}