summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-08-20 17:03:40 +0000
committerGerrit Code Review <review@openstack.org>2015-08-20 17:03:40 +0000
commita64d94a1c16d2126a1461ca1e88e79babcb6ba51 (patch)
treeb0de94c35180d73c6443eb00a6c3e834b4ad25a8
parent1deab207070720887e3213132c93bd461afd152b (diff)
parenta2ddda139929ba336d1633c111d36ea28b163d14 (diff)
downloadpython-novaclient-a64d94a1c16d2126a1461ca1e88e79babcb6ba51.tar.gz
Merge "Add help message for floating ip bulk operation"
-rw-r--r--novaclient/v2/shell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py
index 5be248d5..e1afd4b2 100644
--- a/novaclient/v2/shell.py
+++ b/novaclient/v2/shell.py
@@ -2501,7 +2501,7 @@ def do_floating_ip_pool_list(cs, _args):
'--host', dest='host', metavar='<host>', default=None,
help=_('Filter by host'))
def do_floating_ip_bulk_list(cs, args):
- """List all floating IPs."""
+ """List all floating IPs (nova-network only)."""
utils.print_list(cs.floating_ips_bulk.list(args.host), ['project_id',
'address',
'instance_uuid',
@@ -2517,13 +2517,13 @@ def do_floating_ip_bulk_list(cs, args):
'--interface', metavar='<interface>', default=None,
help=_('Interface for new Floating IPs'))
def do_floating_ip_bulk_create(cs, args):
- """Bulk create floating IPs by range."""
+ """Bulk create floating IPs by range (nova-network only)."""
cs.floating_ips_bulk.create(args.ip_range, args.pool, args.interface)
@cliutils.arg('ip_range', metavar='<range>', help=_('Address range to delete'))
def do_floating_ip_bulk_delete(cs, args):
- """Bulk delete floating IPs by range."""
+ """Bulk delete floating IPs by range (nova-network only)."""
cs.floating_ips_bulk.delete(args.ip_range)