list

package
v0.1.16 Latest Latest
Warning

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

Go to latest
Published: Feb 28, 2023 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	EnvironmentIDKey  = "env-id"
	IntentClientIDKey = "client-service-id"
	IntentServerIDKey = "server-service-id"
)

Variables

View Source
var ListCmd = &cobra.Command{
	Use:          "list",
	Short:        "List intents",
	Args:         cobra.NoArgs,
	SilenceUsage: true,
	RunE: func(_ *cobra.Command, _ []string) error {
		ctxTimeout, cancel := context.WithTimeout(context.Background(), config.DefaultTimeout)
		defer cancel()

		c, err := cloudclient.NewClient(ctxTimeout)
		if err != nil {
			return err
		}

		r, err := c.IntentsQueryWithResponse(ctxTimeout,
			&cloudapi.IntentsQueryParams{
				EnvironmentId: lo.Ternary(viper.IsSet(EnvironmentIDKey), lo.ToPtr(viper.GetString(EnvironmentIDKey)), nil),
				ClientId:      lo.Ternary(viper.IsSet(IntentClientIDKey), lo.ToPtr(viper.GetString(IntentClientIDKey)), nil),
				ServerId:      lo.Ternary(viper.IsSet(IntentServerIDKey), lo.ToPtr(viper.GetString(IntentServerIDKey)), nil),
			},
		)
		if err != nil {
			return err
		}

		output.FormatIntents(lo.FromPtr(r.JSON200))
		return nil
	},
}

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