summaryrefslogtreecommitdiff
path: root/novaclient/v2
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-03-12 18:32:48 +0000
committerGerrit Code Review <review@openstack.org>2015-03-12 18:32:48 +0000
commit49d6d9278c0bbe7e81102519f3b7a4436821c22b (patch)
treec6176200129c11096a33f4d5d84f4c2a14dd8db1 /novaclient/v2
parent5e0e430d006558e7e9fa5af572d66aa27c218510 (diff)
parente9c70598f33af40791c2c14a9c84b415ac374c58 (diff)
downloadpython-novaclient-49d6d9278c0bbe7e81102519f3b7a4436821c22b.tar.gz
Merge "Add Client object to documentation"
Diffstat (limited to 'novaclient/v2')
-rw-r--r--novaclient/v2/client.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/novaclient/v2/client.py b/novaclient/v2/client.py
index e087ac68..bbb8949d 100644
--- a/novaclient/v2/client.py
+++ b/novaclient/v2/client.py
@@ -104,6 +104,36 @@ class Client(object):
cacert=None, tenant_id=None, user_id=None,
connection_pool=False, session=None, auth=None,
**kwargs):
+ """
+ :param str username: Username
+ :param str api_key: API Key
+ :param str project_id: Project ID
+ :param str auth_url: Auth URL
+ :param bool insecure: Allow insecure
+ :param float timeout: API timeout, None or 0 disables
+ :param str proxy_tenant_id: Tenant ID
+ :param str proxy_token: Proxy Token
+ :param str region_name: Region Name
+ :param str endpoint_type: Endpoint Type
+ :param str extensions: Exensions
+ :param str service_type: Service Type
+ :param str service_name: Service Name
+ :param str volume_service_name: Volume Service Name
+ :param bool timings: Timings
+ :param str bypass_url: Bypass URL
+ :param bool os_cache: OS cache
+ :param bool no_cache: No cache
+ :param bool http_log_debug: Enable debugging for HTTP connections
+ :param str auth_system: Auth system
+ :param str auth_plugin: Auth plugin
+ :param str auth_token: Auth token
+ :param str cacert: cacert
+ :param str tenant_id: Tenant ID
+ :param str user_id: User ID
+ :param bool connection_pool: Use a connection pool
+ :param str session: Session
+ :param str auth: Auth
+ """
# FIXME(comstud): Rename the api_key argument above when we
# know it's not being used as keyword argument