summaryrefslogtreecommitdiff
path: root/doc/source/usage
diff options
context:
space:
mode:
authorDariusz Smigiel <smigiel.dariusz@gmail.com>2016-05-23 12:58:29 -0500
committerDariusz Smigiel <smigiel.dariusz@gmail.com>2016-05-26 08:48:18 -0500
commit343e4b186f992c0ec142d4a892f80ed4a208732d (patch)
tree5038117e8a3457b09a7236d8a9f63bb51fba93e9 /doc/source/usage
parent53a59e5aa2e838612852328f0cf3e4eb4f65ed43 (diff)
downloadpython-neutronclient-343e4b186f992c0ec142d4a892f80ed4a208732d.tar.gz
Update for API bindings
All occurrences of tenant replaced with project (where applicable). Partially Implements blueprint: keystone-v3 Change-Id: I4919745aa59863f99c7740e730d8cbfd91c2f646
Diffstat (limited to 'doc/source/usage')
-rw-r--r--doc/source/usage/library.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/usage/library.rst b/doc/source/usage/library.rst
index 8b301e3..481a08b 100644
--- a/doc/source/usage/library.rst
+++ b/doc/source/usage/library.rst
@@ -33,11 +33,11 @@ First create a client instance.
>>> from neutronclient.v2_0 import client
>>> username='adminUser'
>>> password='secretword'
- >>> tenant_name='openstackDemo'
+ >>> project_name='openstackDemo'
>>> auth_url='http://192.168.206.130:5000/v2.0'
>>> neutron = client.Client(username=username,
... password=password,
- ... tenant_name=tenant_name,
+ ... project_name=project_name,
... auth_url=auth_url)
Now you can call various methods on the client instance.