summaryrefslogtreecommitdiff
path: root/novaclient/__init__.py
diff options
context:
space:
mode:
authorRené Ribaud <rribaud@redhat.com>2022-03-03 11:18:59 +0100
committerRené Ribaud <rribaud@redhat.com>2022-07-28 14:49:46 +0200
commitee9b277c5f442f299b853118c900c3ee2996c67a (patch)
treebf4dc5e298c820c37f7994921cc1d435e11dcc38 /novaclient/__init__.py
parent63d368168c87bc0b9a9b7928b42553c609e46089 (diff)
downloadpython-novaclient-ee9b277c5f442f299b853118c900c3ee2996c67a.tar.gz
Microversion 2.91: Support specifying destination host to unshelve
This patch adds ``host`` to novaclient api. This can help administrators to specify a ``host`` to unshelve a shelve offloaded server from 2.91 microversion. Depends-On: https://review.opendev.org/c/openstack/nova/+/831507 Implements: blueprint unshelve-to-host Change-Id: I7efc8f0b0ef159e16cefee761bff5d7e90d0c427
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 d49e8841..bbfd9522 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.90")
+API_MAX_VERSION = api_versions.APIVersion("2.91")