summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorgordon chung <gord@live.ca>2015-10-20 11:27:47 -0400
committergordon chung <gord@live.ca>2015-10-21 07:55:06 -0400
commitcba4f4b7d3b5a0054096c4a01464a0a3c494de97 (patch)
tree0e60bb823dfd2286feeaf673213397b44fc4f357 /doc
parent32a6fbd91b570d65332e646fb2db5d428cfead00 (diff)
downloadpython-ceilometerclient-cba4f4b7d3b5a0054096c4a01464a0a3c494de97.tar.gz
drop v1 client
we dropped v1 back in Juno. as icehouse is EOL and the client follows stable/branches, v1 is completely inaccessible and can be removed Change-Id: If4c6c07e65a6c47f47c59de6c99e8c40ef4e63cb Co-Authored-By: ZhiQiang Fan <aji.zqfan@gmail.com> Closes-Bug: #1389331
Diffstat (limited to 'doc')
-rw-r--r--doc/source/api.rst3
-rw-r--r--doc/source/conf.py2
-rw-r--r--doc/source/index.rst1
3 files changed, 1 insertions, 5 deletions
diff --git a/doc/source/api.rst b/doc/source/api.rst
index 36c7c51..b64afe1 100644
--- a/doc/source/api.rst
+++ b/doc/source/api.rst
@@ -14,7 +14,7 @@ First create a client instance with your credentials::
>>> import ceilometerclient.client
>>> cclient = ceilometerclient.client.get_client(VERSION, os_username=USERNAME, os_password=PASSWORD, os_tenant_name=PROJECT_NAME, os_auth_url=AUTH_URL)
-Here ``VERSION`` can be: ``1`` and ``2``.
+Here ``VERSION`` should be: ``2``.
Then call methods on its managers::
@@ -44,5 +44,4 @@ For more information, see the reference:
:maxdepth: 2
ref/index
- ref/v1/index
ref/v2/index
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 2313013..bf45db6 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -16,8 +16,6 @@ execfile(os.path.join("..", "ext", "gen_ref.py"))
project = 'python-ceilometerclient'
gen_ref("", "Client Reference", ["client", "exc"])
-gen_ref("v1", "Version 1 API Reference",
- ["meters"])
gen_ref("v2", "Version 2 API Reference",
["meters", "samples", "statistics", "resources", "query", "alarms",
"events", "event_types", "traits", "trait_descriptions"])
diff --git a/doc/source/index.rst b/doc/source/index.rst
index cec3b5c..7fdbb12 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -22,7 +22,6 @@ Contents:
shell
api
ref/index
- ref/v1/index
ref/v2/index
Contributing