summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-06-02 07:34:32 +0000
committerGerrit Code Review <review@openstack.org>2016-06-02 07:34:32 +0000
commit51b4cbee522e2bf1a2beb12425733435ff1c32d9 (patch)
tree8f1d9ba6805d30616f018ddab733b9eb654f2e2d
parent5d36663f1a4234af8d44f72d83aed07dce75b771 (diff)
parent4f36eca18f30953352e3fea42776e2e49d1db5fe (diff)
downloados-client-config-51b4cbee522e2bf1a2beb12425733435ff1c32d9.tar.gz
Merge "Reword the entries in the README a bit"1.18.0
-rw-r--r--README.rst11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index 3d97476..a47e98b 100644
--- a/README.rst
+++ b/README.rst
@@ -429,9 +429,10 @@ Constructing REST API Clients
-----------------------------
What if you want to make direct REST calls via a Session interface? You're
-in luck. The same interface for `make_sdk` is supported for
-`make_rest_client` and will return you a keystoneauth Session object that is
-mounted on the endpoint for the service you're looking for.
+in luck. A similar interface is available as with `openstacksdk` and `shade`.
+The main difference is that you need to specify which service you want to
+talk to and `make_rest_client` will return you a keystoneauth Session object
+that is mounted on the endpoint for the service you're looking for.
.. code-block:: python
@@ -445,9 +446,9 @@ mounted on the endpoint for the service you're looking for.
Constructing Legacy Client objects
----------------------------------
-If all you want to do is get a Client object from a python-\*client library,
+If you want get an old-style Client object from a python-\*client library,
and you want it to do all the normal things related to clouds.yaml, `OS_`
-environment variables, a helper function is provided. The following
+environment variables, a helper function is also provided. The following
will get you a fully configured `novaclient` instance.
.. code-block:: python