summaryrefslogtreecommitdiff
path: root/openstackclient/volume
diff options
context:
space:
mode:
authorDean Troyer <dtroyer@gmail.com>2014-06-20 10:06:05 -0500
committerDean Troyer <dtroyer@gmail.com>2014-07-24 11:22:29 -0500
commit5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1 (patch)
treecfe627e999ec7c24b053cb55896b0d47988a0a6d /openstackclient/volume
parentea938e8ddfa0f5f8832e09d61537f1e81e3121e9 (diff)
downloadpython-openstackclient-5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1.tar.gz
Normalize more help strings
Change-Id: I2b21bc904e35c1cc50da369d148e607fe3e8cf90
Diffstat (limited to 'openstackclient/volume')
-rw-r--r--openstackclient/volume/v1/volume.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/openstackclient/volume/v1/volume.py b/openstackclient/volume/v1/volume.py
index 3e4af56c..99abac52 100644
--- a/openstackclient/volume/v1/volume.py
+++ b/openstackclient/volume/v1/volume.py
@@ -36,7 +36,7 @@ class CreateVolume(show.ShowOne):
parser.add_argument(
'name',
metavar='<name>',
- help='Name of the volume',
+ help='Name of the new volume',
)
parser.add_argument(
'--size',
@@ -48,7 +48,7 @@ class CreateVolume(show.ShowOne):
parser.add_argument(
'--snapshot-id',
metavar='<snapshot-id>',
- help='ID of the snapshot',
+ help='Use <snapshot-id> as source of new volume',
)
parser.add_argument(
'--description',
@@ -73,7 +73,7 @@ class CreateVolume(show.ShowOne):
parser.add_argument(
'--availability-zone',
metavar='<availability-zone>',
- help='Availability zone to use',
+ help='Create new volume in <availability-zone>',
)
parser.add_argument(
'--property',
@@ -85,12 +85,12 @@ class CreateVolume(show.ShowOne):
parser.add_argument(
'--image',
metavar='<image>',
- help='Reference to a stored image',
+ help='Use <image> as source of new volume',
)
parser.add_argument(
'--source',
metavar='<volume>',
- help='Source for volume clone',
+ help='Volume to clone (name or ID)',
)
return parser
@@ -143,7 +143,7 @@ class CreateVolume(show.ShowOne):
class DeleteVolume(command.Command):
- """Delete volume"""
+ """Delete a volume"""
log = logging.getLogger(__name__ + '.DeleteVolume')
@@ -152,7 +152,7 @@ class DeleteVolume(command.Command):
parser.add_argument(
'volume',
metavar='<volume>',
- help='Name or ID of volume to delete',
+ help='Volume to delete (name or ID)',
)
parser.add_argument(
'--force',
@@ -271,7 +271,7 @@ class SetVolume(command.Command):
parser.add_argument(
'volume',
metavar='<volume>',
- help='Name or ID of volume to change',
+ help='Volume to change (name or ID)',
)
parser.add_argument(
'--name',
@@ -315,7 +315,7 @@ class SetVolume(command.Command):
class ShowVolume(show.ShowOne):
- """Show specific volume"""
+ """Show volume details"""
log = logging.getLogger(__name__ + '.ShowVolume')
@@ -324,7 +324,7 @@ class ShowVolume(show.ShowOne):
parser.add_argument(
'volume',
metavar='<volume>',
- help='Name or ID of volume to display',
+ help='Volume to display (name or ID)',
)
return parser
@@ -357,7 +357,7 @@ class UnsetVolume(command.Command):
parser.add_argument(
'volume',
metavar='<volume>',
- help='Name or ID of volume to change',
+ help='Volume to change (name or ID)',
)
parser.add_argument(
'--property',