From 9760aa875def1376e364d6e3f82541baaade5345 Mon Sep 17 00:00:00 2001 From: caberos Date: Wed, 2 Nov 2022 18:07:44 -0400 Subject: [PATCH] Improve firewall cancel command --- SoftLayer/CLI/firewall/cancel.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/SoftLayer/CLI/firewall/cancel.py b/SoftLayer/CLI/firewall/cancel.py index 2bad5ce2a..581477a37 100644 --- a/SoftLayer/CLI/firewall/cancel.py +++ b/SoftLayer/CLI/firewall/cancel.py @@ -14,7 +14,13 @@ @click.argument('identifier') @environment.pass_env def cli(env, identifier): - """Cancels a firewall.""" + """Cancels a firewall. + + E.g. + + slcli firewall cancel multiVlan:123456 + + """ mgr = SoftLayer.FirewallManager(env.client) firewall_type, firewall_id = firewall.parse_id(identifier)