You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/cmd/commands/targetscmd/ssh_targets.gen.go

281 lines
6.2 KiB

// Code generated by "make cli"; DO NOT EDIT.
package targetscmd
import (
"errors"
"fmt"
"github.com/hashicorp/boundary/api"
"github.com/hashicorp/boundary/api/targets"
"github.com/hashicorp/boundary/internal/cmd/base"
"github.com/hashicorp/boundary/internal/cmd/common"
"github.com/hashicorp/go-secure-stdlib/strutil"
"github.com/mitchellh/cli"
"github.com/posener/complete"
)
func initSshFlags() {
flagsOnce.Do(func() {
extraFlags := extraSshActionsFlagsMapFunc()
for k, v := range extraFlags {
flagsSshMap[k] = append(flagsSshMap[k], v...)
}
})
}
var (
_ cli.Command = (*SshCommand)(nil)
_ cli.CommandAutocomplete = (*SshCommand)(nil)
)
type SshCommand struct {
*base.Command
Func string
plural string
extraSshCmdVars
}
func (c *SshCommand) AutocompleteArgs() complete.Predictor {
initSshFlags()
return complete.PredictAnything
}
func (c *SshCommand) AutocompleteFlags() complete.Flags {
initSshFlags()
return c.Flags().Completions()
}
func (c *SshCommand) Synopsis() string {
if extra := extraSshSynopsisFunc(c); extra != "" {
return extra
}
synopsisStr := "target"
synopsisStr = fmt.Sprintf("%s %s", "ssh-type", synopsisStr)
return common.SynopsisFunc(c.Func, synopsisStr)
}
func (c *SshCommand) Help() string {
initSshFlags()
var helpStr string
helpMap := common.HelpMap("target")
switch c.Func {
default:
helpStr = c.extraSshHelpFunc(helpMap)
}
// Keep linter from complaining if we don't actually generate code using it
_ = helpMap
return helpStr
}
var flagsSshMap = map[string][]string{
"create": {"scope-id", "name", "description"},
"update": {"id", "name", "description", "version"},
}
func (c *SshCommand) Flags() *base.FlagSets {
if len(flagsSshMap[c.Func]) == 0 {
return c.FlagSet(base.FlagSetNone)
}
set := c.FlagSet(base.FlagSetHTTP | base.FlagSetClient | base.FlagSetOutputFormat)
f := set.NewFlagSet("Command Options")
common.PopulateCommonFlags(c.Command, f, "ssh-type target", flagsSshMap, c.Func)
extraSshFlagsFunc(c, set, f)
return set
}
func (c *SshCommand) Run(args []string) int {
initSshFlags()
switch c.Func {
case "":
return cli.RunResultHelp
}
c.plural = "ssh-type target"
switch c.Func {
case "list":
c.plural = "ssh-type targets"
}
f := c.Flags()
if err := f.Parse(args); err != nil {
c.PrintCliError(err)
return base.CommandUserError
}
if strutil.StrListContains(flagsSshMap[c.Func], "id") && c.FlagId == "" {
c.PrintCliError(errors.New("ID is required but not passed in via -id"))
return base.CommandUserError
}
var opts []targets.Option
if strutil.StrListContains(flagsSshMap[c.Func], "scope-id") {
switch c.Func {
case "create":
if c.FlagScopeId == "" {
c.PrintCliError(errors.New("Scope ID must be passed in via -scope-id or BOUNDARY_SCOPE_ID"))
return base.CommandUserError
}
}
}
client, err := c.Client()
if c.WrapperCleanupFunc != nil {
defer func() {
if err := c.WrapperCleanupFunc(); err != nil {
c.PrintCliError(fmt.Errorf("Error cleaning kms wrapper: %w", err))
}
}()
}
if err != nil {
c.PrintCliError(fmt.Errorf("Error creating API client: %w", err))
return base.CommandCliError
}
targetsClient := targets.NewClient(client)
switch c.FlagName {
case "":
case "null":
opts = append(opts, targets.DefaultName())
default:
opts = append(opts, targets.WithName(c.FlagName))
}
switch c.FlagDescription {
case "":
case "null":
opts = append(opts, targets.DefaultDescription())
default:
opts = append(opts, targets.WithDescription(c.FlagDescription))
}
switch c.FlagRecursive {
case true:
opts = append(opts, targets.WithRecursive(true))
}
if c.FlagFilter != "" {
opts = append(opts, targets.WithFilter(c.FlagFilter))
}
var version uint32
switch c.Func {
case "update":
switch c.FlagVersion {
case 0:
opts = append(opts, targets.WithAutomaticVersioning(true))
default:
version = uint32(c.FlagVersion)
}
}
if ok := extraSshFlagsHandlingFunc(c, f, &opts); !ok {
return base.CommandUserError
}
var resp *api.Response
var item *targets.Target
var createResult *targets.TargetCreateResult
var updateResult *targets.TargetUpdateResult
switch c.Func {
case "create":
createResult, err = targetsClient.Create(c.Context, "ssh", c.FlagScopeId, opts...)
if exitCode := c.checkFuncError(err); exitCode > 0 {
return exitCode
}
resp = createResult.GetResponse()
item = createResult.GetItem()
case "update":
updateResult, err = targetsClient.Update(c.Context, c.FlagId, version, opts...)
if exitCode := c.checkFuncError(err); exitCode > 0 {
return exitCode
}
resp = updateResult.GetResponse()
item = updateResult.GetItem()
}
resp, item, err = executeExtraSshActions(c, resp, item, err, targetsClient, version, opts)
if exitCode := c.checkFuncError(err); exitCode > 0 {
return exitCode
}
output, err := printCustomSshActionOutput(c)
if err != nil {
c.PrintCliError(err)
return base.CommandUserError
}
if output {
return base.CommandSuccess
}
switch c.Func {
}
switch base.Format(c.UI) {
case "table":
c.UI.Output(printItemTable(item, resp))
case "json":
if ok := c.PrintJsonItem(resp); !ok {
return base.CommandCliError
}
}
return base.CommandSuccess
}
func (c *SshCommand) checkFuncError(err error) int {
if err == nil {
return 0
}
if apiErr := api.AsServerError(err); apiErr != nil {
c.PrintApiError(apiErr, fmt.Sprintf("Error from controller when performing %s on %s", c.Func, c.plural))
return base.CommandApiError
}
c.PrintCliError(fmt.Errorf("Error trying to %s %s: %s", c.Func, c.plural, err.Error()))
return base.CommandCliError
}
var (
extraSshActionsFlagsMapFunc = func() map[string][]string { return nil }
extraSshSynopsisFunc = func(*SshCommand) string { return "" }
extraSshFlagsFunc = func(*SshCommand, *base.FlagSets, *base.FlagSet) {}
extraSshFlagsHandlingFunc = func(*SshCommand, *base.FlagSets, *[]targets.Option) bool { return true }
executeExtraSshActions = func(_ *SshCommand, inResp *api.Response, inItem *targets.Target, inErr error, _ *targets.Client, _ uint32, _ []targets.Option) (*api.Response, *targets.Target, error) {
return inResp, inItem, inErr
}
printCustomSshActionOutput = func(*SshCommand) (bool, error) { return false, nil }
)