summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNisha Yadav <ynisha11@gmail.com>2016-06-25 01:13:49 +0530
committerNisha Yadav <ynisha11@gmail.com>2016-06-25 01:46:13 +0530
commit6544614216212c365733ba55912d3b94d885e178 (patch)
treed4f2cc1c545cff765e25fc58e14128225dfcfcb9
parentd97d92b4539263cbf6b6a3130211ad35cda47e0d (diff)
downloadpython-keystoneclient-6544614216212c365733ba55912d3b94d885e178.tar.gz
Follow up patch for Improve docs for v3 projects
This patch fixes some nits left by the review I3961945a2833fcd4a04c8e2fa294ecd3a12cfbe2. Change-Id: I8c7c4c926d60d0b0ba44c3c7a42e5eef7be9441c
-rw-r--r--keystoneclient/v3/projects.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/keystoneclient/v3/projects.py b/keystoneclient/v3/projects.py
index 975a913..3b4b9db 100644
--- a/keystoneclient/v3/projects.py
+++ b/keystoneclient/v3/projects.py
@@ -139,10 +139,14 @@ class ProjectManager(base.CrudManager):
:param project: the project to be retrieved from the server.
:type project: str or :class:`keystoneclient.v3.projects.Project`
- :param bool subtree_as_list: retrieve projects below this project
- in the hierarchy as a flat list.
- :param bool parents_as_list: retrieve projects above this project
- in the hierarchy as a flat list.
+ :param bool subtree_as_list: retrieve projects below this project in
+ the hierarchy as a flat list. It only
+ includes the projects in which the current
+ user has role assignments on.
+ :param bool parents_as_list: retrieve projects above this project in
+ the hierarchy as a flat list. It only
+ includes the projects in which the current
+ user has role assignments on.
:param bool subtree_as_ids: retrieve the IDs from the projects below
this project in the hierarchy as a
structured dictionary.