summaryrefslogtreecommitdiff
path: root/openstackclient/identity
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-06-16 12:43:32 +0000
committerGerrit Code Review <review@openstack.org>2016-06-16 12:43:32 +0000
commitb5e524ac84dfae062649cd0197251001bd432e74 (patch)
treeeba19736ace599b09215b6b679010cdfbde091bc /openstackclient/identity
parente7ed403712f4d12182d0c2d040ae6eed0177a05c (diff)
parent9eb77ae1def29294881b27b593782edad3d26c96 (diff)
downloadpython-openstackclient-b5e524ac84dfae062649cd0197251001bd432e74.tar.gz
Merge "Fix help msg of identity endpoint"
Diffstat (limited to 'openstackclient/identity')
-rw-r--r--openstackclient/identity/v2_0/endpoint.py4
-rw-r--r--openstackclient/identity/v3/endpoint.py8
2 files changed, 6 insertions, 6 deletions
diff --git a/openstackclient/identity/v2_0/endpoint.py b/openstackclient/identity/v2_0/endpoint.py
index 4ffa363e..ee2bab6f 100644
--- a/openstackclient/identity/v2_0/endpoint.py
+++ b/openstackclient/identity/v2_0/endpoint.py
@@ -31,7 +31,7 @@ class CreateEndpoint(command.ShowOne):
parser.add_argument(
'service',
metavar='<service>',
- help=_('New endpoint service (name or ID)'),
+ help=_('Service to be associated with new endpoint (name or ID)'),
)
parser.add_argument(
'--publicurl',
@@ -81,7 +81,7 @@ class DeleteEndpoint(command.Command):
parser.add_argument(
'endpoint',
metavar='<endpoint-id>',
- help=_('Endpoint ID to delete'),
+ help=_('Endpoint to delete (ID only)'),
)
return parser
diff --git a/openstackclient/identity/v3/endpoint.py b/openstackclient/identity/v3/endpoint.py
index 367b4e7b..2f1cc9f3 100644
--- a/openstackclient/identity/v3/endpoint.py
+++ b/openstackclient/identity/v3/endpoint.py
@@ -40,7 +40,7 @@ class CreateEndpoint(command.ShowOne):
parser.add_argument(
'service',
metavar='<service>',
- help=_('New endpoint service (name or ID)'),
+ help=_('Service to be associated with new endpoint (name or ID)'),
)
parser.add_argument(
'interface',
@@ -102,7 +102,7 @@ class DeleteEndpoint(command.Command):
parser.add_argument(
'endpoint',
metavar='<endpoint-id>',
- help=_('Endpoint ID to delete'),
+ help=_('Endpoint to delete (ID only)'),
)
return parser
@@ -121,7 +121,7 @@ class ListEndpoint(command.Lister):
parser.add_argument(
'--service',
metavar='<service>',
- help=_('Filter by service'),
+ help=_('Filter by service (name or ID)'),
)
parser.add_argument(
'--interface',
@@ -169,7 +169,7 @@ class SetEndpoint(command.Command):
parser.add_argument(
'endpoint',
metavar='<endpoint-id>',
- help=_('Endpoint ID to modify'),
+ help=_('Endpoint to modify (ID only)'),
)
parser.add_argument(
'--region',