summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorSteve Martinelli <stevemar@ca.ibm.com>2015-01-05 01:27:47 -0500
committerSteve Martinelli <stevemar@ca.ibm.com>2015-01-05 21:46:32 -0500
commitca92608974a8fe9a54951d0ea6b24ab59a5b7a06 (patch)
tree6a4f02e75acaa968fd156768cd9cb33bee0dbd0e /openstackclient
parent32c15633f4cf23cf1469ce20e6e478214eef85ff (diff)
downloadpython-openstackclient-ca92608974a8fe9a54951d0ea6b24ab59a5b7a06.tar.gz
Command doc: volume type
Change-Id: I7e36daa027639d6a782043d4181c1b328335975a
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/volume/v1/type.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/openstackclient/volume/v1/type.py b/openstackclient/volume/v1/type.py
index 71bfc9ea..46d1828b 100644
--- a/openstackclient/volume/v1/type.py
+++ b/openstackclient/volume/v1/type.py
@@ -71,7 +71,7 @@ class DeleteVolumeType(command.Command):
parser.add_argument(
'volume_type',
metavar='<volume-type>',
- help='Name or ID of volume type to delete',
+ help='Volume type to delete (name or ID)',
)
return parser
@@ -115,7 +115,7 @@ class ListVolumeType(lister.Lister):
class SetVolumeType(command.Command):
- """Set volume type property"""
+ """Set volume type properties"""
log = logging.getLogger(__name__ + '.SetVolumeType')
@@ -124,13 +124,13 @@ class SetVolumeType(command.Command):
parser.add_argument(
'volume_type',
metavar='<volume-type>',
- help='Volume type name or ID to update',
+ help='Volume type to modify (name or ID)',
)
parser.add_argument(
'--property',
metavar='<key=value>',
action=parseractions.KeyValueAction,
- help='Property to add/change for this volume type '
+ help='Property to add or modify for this volume type '
'(repeat option to set multiple properties)',
)
return parser
@@ -148,7 +148,7 @@ class SetVolumeType(command.Command):
class UnsetVolumeType(command.Command):
- """Unset volume type property"""
+ """Unset volume type properties"""
log = logging.getLogger(__name__ + '.UnsetVolumeType')
@@ -157,14 +157,14 @@ class UnsetVolumeType(command.Command):
parser.add_argument(
'volume_type',
metavar='<volume-type>',
- help='Type ID or name to remove',
+ help='Volume type to modify (name or ID)',
)
parser.add_argument(
'--property',
metavar='<key>',
action='append',
default=[],
- help='Property key to remove from volume '
+ help='Property to remove from volume type '
'(repeat option to remove multiple properties)',
)
return parser