We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ae1fdc commit 291cf7fCopy full SHA for 291cf7f
1 file changed
cmd/cli/describe.go
@@ -11,9 +11,10 @@ import (
11
12
// describeCmd represents the describe command
13
var describeCmd = &cobra.Command{
14
- Use: "describe <resource-type> <name>",
15
- Short: "Show detailed information about a resource",
16
- Long: `Show detailed information about a CloudStack resource managed by cloudstackctl`,
+ Use: "describe <resource-type> <name>",
+ Aliases: []string{"desc"},
+ Short: "Show detailed information about a resource",
17
+ Long: `Show detailed information about a CloudStack resource managed by cloudstackctl`,
18
Run: func(cmd *cobra.Command, args []string) {
19
if len(args) < 2 {
20
log.Fatal("Usage: cloudstackctl describe <resource-type> <name>")
0 commit comments