From 9eb77ae1def29294881b27b593782edad3d26c96 Mon Sep 17 00:00:00 2001 From: sunyajing Date: Mon, 13 Jun 2016 19:16:48 +0800 Subject: [PATCH] Fix help msg of identity endpoint argument of `endpoint create` command doesn't mean `new endpoint service`, but an existent service that the new endpoint attached to. Change-Id: I846fdb501bdea14499f42288186f375a3b2b5951 --- doc/source/command-objects/endpoint.rst | 10 +++++----- openstackclient/identity/v2_0/endpoint.py | 4 ++-- openstackclient/identity/v3/endpoint.py | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/source/command-objects/endpoint.rst b/doc/source/command-objects/endpoint.rst index 9872a58737..817ad49143 100644 --- a/doc/source/command-objects/endpoint.rst +++ b/doc/source/command-objects/endpoint.rst @@ -40,7 +40,7 @@ Create new endpoint .. _endpoint_create-endpoint: .. describe:: - New endpoint service (name or ID) + Service to be associated with new endpoint (name or ID) *Identity version 3 only* @@ -68,7 +68,7 @@ Create new endpoint .. describe:: - New endpoint service (name or ID) + Service to be associated with new endpoint(name or ID) .. describe:: @@ -92,7 +92,7 @@ Delete endpoint .. _endpoint_delete-endpoint: .. describe:: - Endpoint ID to delete + Endpoint to delete (ID only) endpoint list ------------- @@ -110,7 +110,7 @@ List endpoints .. option:: --service - Filter by service + Filter by service (name or ID) *Identity version 3 only* @@ -177,7 +177,7 @@ Set endpoint properties .. _endpoint_set-endpoint: .. describe:: - Endpoint ID to modify + Endpoint to modify (ID only) endpoint show ------------- diff --git a/openstackclient/identity/v2_0/endpoint.py b/openstackclient/identity/v2_0/endpoint.py index 09ea738f4f..8065e197b9 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='', - 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='', - 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 39022d27db..6bb73b4de4 100644 --- a/openstackclient/identity/v3/endpoint.py +++ b/openstackclient/identity/v3/endpoint.py @@ -39,7 +39,7 @@ class CreateEndpoint(command.ShowOne): parser.add_argument( 'service', metavar='', - help=_('New endpoint service (name or ID)'), + help=_('Service to be associated with new endpoint (name or ID)'), ) parser.add_argument( 'interface', @@ -101,7 +101,7 @@ class DeleteEndpoint(command.Command): parser.add_argument( 'endpoint', metavar='', - help=_('Endpoint ID to delete'), + help=_('Endpoint to delete (ID only)'), ) return parser @@ -120,7 +120,7 @@ class ListEndpoint(command.Lister): parser.add_argument( '--service', metavar='', - help=_('Filter by service'), + help=_('Filter by service (name or ID)'), ) parser.add_argument( '--interface', @@ -168,7 +168,7 @@ class SetEndpoint(command.Command): parser.add_argument( 'endpoint', metavar='', - help=_('Endpoint ID to modify'), + help=_('Endpoint to modify (ID only)'), ) parser.add_argument( '--region',