associatetoenvironment

package
v0.1.29 Latest Latest
Warning

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

Go to latest
Published: Aug 23, 2023 License: Apache-2.0 Imports: 9 Imported by: 1

Documentation

Index

Constants

View Source
const (
	EnvironmentIDKey = "env-id"
)

Variables

View Source
var AssociateToEnvironmentCmd = &cobra.Command{
	Use:          "associate-to-environment <namespace-id>",
	Short:        "Update a namespace",
	Args:         cobra.ExactArgs(1),
	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
		}

		id := args[0]
		environmentID := viper.GetString(EnvironmentIDKey)

		body := cloudapi.AssociateNamespaceToEnvMutationJSONRequestBody{
			EnvironmentId: &environmentID,
		}

		r, err := c.AssociateNamespaceToEnvMutationWithResponse(ctxTimeout, id, body)
		if err != nil {
			return err
		}

		prints.PrintCliStderr("Namespace updated")
		output.FormatNamespaces([]cloudapi.Namespace{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