We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a753cd commit 2d30c20Copy full SHA for 2d30c20
SoftLayer/CLI/autoscale/delete.py
@@ -11,11 +11,9 @@
11
@click.argument('identifier')
12
@environment.pass_env
13
def cli(env, identifier):
14
- """Sets a user's status to CANCEL_PENDING, which will immediately disable the account,
+ """Delete this group and destroy all members of it.
15
16
- and will eventually be fully removed from the account by an automated internal process.
17
-
18
- Example: slcli user delete userId
+ Example: slcli autoscale delete autoscaleId
19
20
"""
21
@@ -24,5 +22,3 @@ def cli(env, identifier):
24
22
25
23
if result:
26
click.secho("%s deleted successfully" % identifier, fg='green')
27
- else:
28
- click.secho("Failed to delete %s" % identifier, fg='red')
0 commit comments