Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "managed-service", Aliases: []string{"appliance", "service"}, Short: "Edit parameters of service", Long: "Edit the parameters of a Red Hat managed service", Example: ` # Edit the parameters of the Red Hat OpenShift logging operator add-on installation rosa edit managed-service --id=<service id> --parameter-key parameter-value`, Run: run, Hidden: true, DisableFlagParsing: true, Args: func(cmd *cobra.Command, argv []string) error { err := arguments.ParseUnknownFlags(cmd, argv) if err != nil { return err } if len(cmd.Flags().Args()) > 0 { return fmt.Errorf("Unrecognized command line parameter") } return nil }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.