get

package
v0.3.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 23, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Command = &cobra.Command{
	Use:              "get",
	Short:            "Get an existing workflow",
	Long:             `Get an existing workflow`,
	Example:          "wfxctl workflow get --name=wfx.workflow.kanban",
	TraverseChildren: true,
	Run: func(cmd *cobra.Command, _ []string) {
		baseCmd := flags.NewBaseCmd()
		client := errutil.Must(baseCmd.CreateHTTPClient())
		params := workflows.NewGetWorkflowsNameParams().
			WithHTTPClient(client).
			WithName(flags.Koanf.String(nameFlag))

		if params.Name == "" {
			log.Fatal().Msg("No workflow name provided")
		}

		resp, err := baseCmd.CreateMgmtClient().Workflows.GetWorkflowsName(params)
		if err != nil {
			errutil.ProcessErrorResponse(cmd.OutOrStderr(), err)
			log.Fatal().Msg("Failed to get workflow")
		}
		if err := baseCmd.DumpResponse(cmd.OutOrStdout(), resp.GetPayload()); err != nil {
			log.Fatal().Err(err).Msg("Failed to dump response")
		}
	},
}

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL