summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-19 19:57:35 +0000
committerGerrit Code Review <review@openstack.org>2016-08-19 19:57:35 +0000
commit7a3726b1b88c6dc915818e06778c2adbfb6975ac (patch)
treecb2d85d72598993cbe5507256f6f59050a755e87
parent9b7a65931569c41fcf69b1fbd7e35a7ef1cedd37 (diff)
parent506639c1761989bbe685a3da0504544e9755a43f (diff)
downloadpython-keystoneclient-7a3726b1b88c6dc915818e06778c2adbfb6975ac.tar.gz
Merge "Follow up patch for Improve docs for v3 services"
-rw-r--r--keystoneclient/v3/services.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/keystoneclient/v3/services.py b/keystoneclient/v3/services.py
index 04fa537..d38e2d4 100644
--- a/keystoneclient/v3/services.py
+++ b/keystoneclient/v3/services.py
@@ -24,8 +24,9 @@ class Service(base.Resource):
Attributes:
* id: a uuid that identifies the service
- * name: user-facing name of the service (e.g. Keystone)
- * type: 'compute', 'identity', etc
+ * name: the user-facing name of the service (e.g. Keystone)
+ * description: a description of the service
+ * type: the type of the service (e.g. 'compute', 'identity')
* enabled: determines whether the service appears in the catalog
"""
@@ -127,7 +128,8 @@ class ServiceManager(base.CrudManager):
:param service: the service to be deleted on the server.
:type service: str or :class:`keystoneclient.v3.services.Service`
- :returns: Request object with 204 status and None as data.
+ :returns: Response object with 204 status.
+ :rtype: :class:`requests.models.Response`
"""
if service: