Update share replica show docstrings

Updated the docstrings from replica show apis.
This is a follow up change to the share replication graduation one.

Change-Id: If6a28efc5d17a0e1e433fb9b78661dbe8ab12cda
Signed-off-by: silvacarloss <ces.eduardo98@gmail.com>
This commit is contained in:
silvacarloss 2020-09-09 11:13:10 +00:00
parent 64eccebc6f
commit 25f515643c
1 changed files with 2 additions and 2 deletions

View File

@ -106,12 +106,12 @@ class ShareReplicationController(wsgi.Controller, wsgi.AdminActionsMixin):
@wsgi.Controller.api_version(
MIN_SUPPORTED_API_VERSION, PRE_GRADUATION_VERSION, experimental=True)
def show(self, req, id):
"""Returns a detailed list of replicas."""
"""Return data about the given replica."""
return self._show(req, id)
@wsgi.Controller.api_version(GRADUATION_VERSION) # noqa
def show(self, req, id): # pylint: disable=function-redefined
"""Returns a detailed list of replicas."""
"""Return data about the given replica."""
return self._show(req, id)
@wsgi.Controller.authorize('show')