Documentation ¶
Index ¶
Constants ¶
View Source
const ( NameKey = "name" NameShorthand = "n" EnvironmentIDKey = "env-id" NamespaceIDKey = "namespace-id" )
Variables ¶
View Source
var ListCmd = &cobra.Command{ Use: "list", Short: "List services", 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.ServicesQueryWithResponse(ctxTimeout, &cloudapi.ServicesQueryParams{ EnvironmentId: lo.Ternary(viper.IsSet(EnvironmentIDKey), lo.ToPtr(viper.GetString(EnvironmentIDKey)), nil), NamespaceId: lo.Ternary(viper.IsSet(NamespaceIDKey), lo.ToPtr(viper.GetString(NamespaceIDKey)), nil), Name: lo.Ternary(viper.IsSet(NameKey), lo.ToPtr(viper.GetString(NameKey)), nil), }, ) if err != nil { return err } output.FormatServices(lo.FromPtr(r.JSON200)) return nil }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.