2626
2727
2828class AddFloatingIP (command .Command ):
29- """Add floating-ip to server"""
29+ """Add floating IP address to server"""
3030
3131 log = logging .getLogger (__name__ + ".AddFloatingIP" )
3232
@@ -35,7 +35,7 @@ def get_parser(self, prog_name):
3535 parser .add_argument (
3636 "ip_address" ,
3737 metavar = "<ip-address>" ,
38- help = "IP address to add to server" ,
38+ help = "IP address to add to server (name only) " ,
3939 )
4040 parser .add_argument (
4141 "server" ,
@@ -56,7 +56,7 @@ def take_action(self, parsed_args):
5656
5757
5858class CreateFloatingIP (show .ShowOne ):
59- """Create new floating-ip """
59+ """Create new floating IP address """
6060
6161 log = logging .getLogger (__name__ + '.CreateFloatingIP' )
6262
@@ -65,7 +65,7 @@ def get_parser(self, prog_name):
6565 parser .add_argument (
6666 'pool' ,
6767 metavar = '<pool>' ,
68- help = 'Pool to fetch floating IP from' ,
68+ help = 'Pool to fetch IP address from (name or ID) ' ,
6969 )
7070 return parser
7171
@@ -80,7 +80,7 @@ def take_action(self, parsed_args):
8080
8181
8282class DeleteFloatingIP (command .Command ):
83- """Delete a floating-ip """
83+ """Delete a floating IP address """
8484
8585 log = logging .getLogger (__name__ + '.DeleteFloatingIP' )
8686
@@ -89,7 +89,7 @@ def get_parser(self, prog_name):
8989 parser .add_argument (
9090 "ip_address" ,
9191 metavar = "<ip-address>" ,
92- help = "IP address to delete" ,
92+ help = "IP address to delete (ID only) " ,
9393 )
9494 return parser
9595
@@ -107,7 +107,7 @@ def take_action(self, parsed_args):
107107
108108
109109class ListFloatingIP (lister .Lister ):
110- """List floating-ips """
110+ """List floating IP addresses """
111111
112112 log = logging .getLogger (__name__ + '.ListFloatingIP' )
113113
@@ -127,7 +127,7 @@ def take_action(self, parsed_args):
127127
128128
129129class RemoveFloatingIP (command .Command ):
130- """Remove floating-ip from server"""
130+ """Remove floating IP address from server"""
131131
132132 log = logging .getLogger (__name__ + ".RemoveFloatingIP" )
133133
@@ -136,7 +136,7 @@ def get_parser(self, prog_name):
136136 parser .add_argument (
137137 "ip_address" ,
138138 metavar = "<ip-address>" ,
139- help = "IP address to remove from server" ,
139+ help = "IP address to remove from server (name only) " ,
140140 )
141141 parser .add_argument (
142142 "server" ,
0 commit comments