Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ type inputModel struct {
func NewCmd() *cobra.Command {
cmd := &cobra.Command{
Use: fmt.Sprintf("delete %s", credentialsGroupIdArg),
Short: "Deletes a credentials group",
Long: "Deletes a credentials group. Only possible if there are no valid credentials (access-keys) left in the group, otherwise it will throw an error.",
Short: "Deletes a credentials group that holds Object Storage access credentials",
Long: "Deletes a credentials group that holds Object Storage access credentials. Only possible if there are no valid credentials (access-keys) left in the group, otherwise it will throw an error.",
Args: args.SingleArg(credentialsGroupIdArg, utils.ValidateUUID),
Example: examples.Build(
examples.NewExample(
Expand Down
4 changes: 2 additions & 2 deletions internal/cmd/object-storage/credentials-group/list/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ type inputModel struct {
func NewCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "list",
Short: "Lists all credentials groups",
Long: "Lists all credentials groups.",
Short: "Lists all credentials groups that hold Object Storage access credentials",
Long: "Lists all credentials groups that hold Object Storage access credentials.",
Args: args.NoArgs,
Example: examples.Build(
examples.NewExample(
Expand Down