summaryrefslogtreecommitdiff
path: root/novaclient/__init__.py
diff options
context:
space:
mode:
authorChris Friesen <chris.friesen@windriver.com>2017-02-16 11:28:54 -0600
committerChris Friesen <chris.friesen@windriver.com>2017-06-26 09:50:50 -0600
commit78986dcae2f12f18ae2380111e06e793998b06c2 (patch)
treed9b31f0ff7650b22e421d194069a7e01bd22064f /novaclient/__init__.py
parentc23324ef4806706bef257e711ac6ffaa8a833ea4 (diff)
downloadpython-novaclient-78986dcae2f12f18ae2380111e06e793998b06c2.tar.gz
2.47: Show flavor info in server details
This adds support for microversion 2.47 which directly embeds the flavor information in the server details. With this change, CLI requests with microversion >= 2.47 will no longer need to do additional queries to get the flavor and flavor extra_specs information. Instead, the flavor information will be output as separate key/value pairs with the keys namespaced with the "flavor:" prefix. As one would expect, these keys can also be specified as output fields when listing servers. Change-Id: Ic00ec95485485dff0fd4dcf8cad6ca56a481d512 Implements: blueprint instance-flavor-api Depends-On: If646149efb7eec8c90bf7d07c39ff4c495349941
Diffstat (limited to 'novaclient/__init__.py')
-rw-r--r--novaclient/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/novaclient/__init__.py b/novaclient/__init__.py
index 4a86d365..3b93a464 100644
--- a/novaclient/__init__.py
+++ b/novaclient/__init__.py
@@ -25,4 +25,4 @@ API_MIN_VERSION = api_versions.APIVersion("2.1")
# when client supported the max version, and bumped sequentially, otherwise
# the client may break due to server side new version may include some
# backward incompatible change.
-API_MAX_VERSION = api_versions.APIVersion("2.46")
+API_MAX_VERSION = api_versions.APIVersion("2.47")