summaryrefslogtreecommitdiff
path: root/doc/source/using-api.rst
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2012-10-24 07:12:30 -0500
committerDolph Mathews <dolph.mathews@gmail.com>2012-10-24 07:21:47 -0500
commit5f38eb736c50f4feb245f88780167ff0b41263c4 (patch)
treecd6bc96807559b80e9c791054470e37b41d5cb72 /doc/source/using-api.rst
parentc3b4f7fd0e4c010b05e91f952fb2345da6c6cba5 (diff)
downloadpython-keystoneclient-5f38eb736c50f4feb245f88780167ff0b41263c4.tar.gz
Replace refs to 'Keystone API' with 'Identity API'
Formally, OpenStack Keystone implements the OpenStack Identity API, and this is a client to the API, not to Keystone itself. Change-Id: If568866221a29ba041f0f2cd56dc81deeb9ebc00
Diffstat (limited to 'doc/source/using-api.rst')
-rw-r--r--doc/source/using-api.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/source/using-api.rst b/doc/source/using-api.rst
index 809093e..b5d630c 100644
--- a/doc/source/using-api.rst
+++ b/doc/source/using-api.rst
@@ -4,7 +4,8 @@ The client API
Introduction
============
-The main concepts in the Keystone API are:
+
+The main concepts in the Identity API are:
* tenants
* users
@@ -12,11 +13,11 @@ The main concepts in the Keystone API are:
* services
* endpoints
-The Keystone API lets you query and make changes through managers. For example,
+The Identity API lets you query and make changes through managers. For example,
to manipulate tenants, you interact with a
-``keystoneclient.v2_0.tenants.TenantManger`` object.
+``keystoneclient.v2_0.tenants.TenantManager`` object.
-You obtain access to managers through via atributes of the
+You obtain access to managers through via attributes of the
``keystoneclient.v2_0.client.Client`` object. For example, the ``tenants``
attribute of the ``Client`` class is a tenant manager::