From e59df3aa38b360255a263b7f3c680dc85a83dae8 Mon Sep 17 00:00:00 2001 From: Aditya Saha Date: Mon, 6 Jan 2025 10:52:27 -0500 Subject: [PATCH] Enable droplet-autoscaler commands (#1633) --- commands/droplet_autoscale.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/droplet_autoscale.go b/commands/droplet_autoscale.go index 31b30c13a..c61c3ec01 100644 --- a/commands/droplet_autoscale.go +++ b/commands/droplet_autoscale.go @@ -25,13 +25,12 @@ import ( func DropletAutoscale() *Command { cmd := &Command{ Command: &cobra.Command{ - Hidden: true, Use: "droplet-autoscale", Aliases: []string{"das"}, Short: "Display commands to manage Droplet autoscale pools", Long: `Use the subcommands of ` + "`" + `doctl compute droplet-autoscale` + "`" + ` to perform actions on Droplet Autoscale Pools. -You can use droplet-autoscale to perform CRUD operations on a Droplet Autoscale Pools.`, +You can use droplet-autoscale to perform CRUD operations on a Droplet Autoscale Pool.`, }, } cmdDropletAutoscaleCreate := CmdBuilder(cmd, RunDropletAutoscaleCreate, "create", "Create a new Droplet autoscale pool", "", Writer, displayerType(&displayers.DropletAutoscalePools{}))