From e418ff8e5088d5d18b3e5df03dc51f15787ab92f Mon Sep 17 00:00:00 2001 From: Brant Knudson Date: Sun, 28 Feb 2016 11:10:41 -0600 Subject: [PATCH] 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 --- keystoneclient/v3/client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/keystoneclient/v3/client.py b/keystoneclient/v3/client.py index 38be932eb..b8401ac59 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.