Documentation ¶
Index ¶
Constants ¶
View Source
const ( NameKey = "name" NameShorthand = "n" LabelsKey = "labels" LabelsShorthand = "l" )
Variables ¶
View Source
var CreateEnvCmd = &cobra.Command{ Use: "create", Short: "Create an environment", Args: cobra.NoArgs, SilenceUsage: true, RunE: func(_ *cobra.Command, args []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.CreateEnvironmentMutationWithResponse(ctxTimeout, cloudapi.CreateEnvironmentMutationJSONRequestBody{ Name: viper.GetString(NameKey), Labels: lo.Ternary( viper.IsSet(LabelsKey), lo.ToPtr(cloudclient.LabelsToLabelInput(viper.GetStringMapString(LabelsKey))), nil, ), }, ) if err != nil { return err } output.FormatEnvs([]cloudapi.Environment{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.