From 0343dff9735887ddcdf977c78f16fdb46a7ed09c Mon Sep 17 00:00:00 2001 From: Chris Yeoh Date: Wed, 25 Mar 2015 12:05:40 +1030 Subject: [PATCH] Removes reference to v3 nova api from novaclient docs The Nova V3 API no longer exists. Although a version of the framework exists in Nova as part of the new V2.1 API which is equivalent to the V2 API there is no need to make mention of V3 in the novaclient documentation. In future we will be distinguish between legacy Nova API support (one implementation of V2) and microversions Nova API support (the new one) to reduce confusion around version numbers which will change quite a bit without the framework changing. Co-Authored-By: Andrey Kurilin Change-Id: Id0ff51e1165cb267045d7a63aff13c0e41336738 --- doc/source/api.rst | 2 +- doc/source/conf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/api.rst b/doc/source/api.rst index 84276c9da..8bcb219b3 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -14,7 +14,7 @@ First create a client instance with your credentials:: >>> from novaclient import client >>> nova = client.Client(VERSION, USERNAME, PASSWORD, PROJECT_ID, AUTH_URL) -Here ``VERSION`` can be: ``1.1``, ``2`` and ``3``. +Here ``VERSION`` can be: ``1.1``, ``2``. Alternatively, you can create a client instance using the keystoneclient session API:: diff --git a/doc/source/conf.py b/doc/source/conf.py index 738574773..1e11705bf 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -71,7 +71,7 @@ def gen_ref(ver, title, names): "pkg": pkg, "name": name}) gen_ref(None, "Exceptions", ["exceptions"]) -gen_ref("v2", "Version 1.1, Version 2 API Reference, Version 3 API Reference", +gen_ref("v2", "Version 1.1, Version 2 API", ["client", "flavors", "images", "servers", "hosts", "agents", "aggregates", "availability_zones", "certs", "fixed_ips", "floating_ip_pools", "floating_ips", "hypervisors", "keypairs",