summaryrefslogtreecommitdiff
path: root/keystoneclient
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2016-02-28 11:10:41 -0600
committerBrant Knudson <bknudson@us.ibm.com>2016-02-28 17:16:52 +0000
commite418ff8e5088d5d18b3e5df03dc51f15787ab92f (patch)
tree269266eefc48f47f9b03eb5e49f6c220f69b3079 /keystoneclient
parent7d57eceb19aaaca8de84a8701552715fc8153872 (diff)
downloadpython-keystoneclient-e418ff8e5088d5d18b3e5df03dc51f15787ab92f.tar.gz
Document session as an argument to v3.Client
Developers are probably going to want to know what the type of the session argument is since other methods of constructing v3.client.Client are deprecated. Change-Id: Ifb94ef134b86980f88e7cf3c80344c458937d1ab
Diffstat (limited to 'keystoneclient')
-rw-r--r--keystoneclient/v3/client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/keystoneclient/v3/client.py b/keystoneclient/v3/client.py
index 38be932..b8401ac 100644
--- a/keystoneclient/v3/client.py
+++ b/keystoneclient/v3/client.py
@@ -50,6 +50,8 @@ _logger = logging.getLogger(__name__)
class Client(httpclient.HTTPClient):
"""Client for the OpenStack Identity API v3.
+ :param session: Session for requests. (optional)
+ :type session: keystoneauth1.session.Session
:param string user_id: User ID for authentication. (optional)
:param string username: Username for authentication. (optional)
:param string user_domain_id: User's domain ID for authentication.