Update the python manila client api version

This patch updates the python manila client
api version in order to consider the changes
implemented in the view of shares and share
replicas. A new field called ``progress`` was
added and will show the progress of the
create share from snapshot operation.

Partially-implements: bp create-share-from-snapshot-in-another-pool-or-backend

Depends-On: Iab13a0961eb4a387a502246e5d4b79bc9046e04b

Change-Id: Id73f6facca03e8490846b68c404593f16e95f8bd
This commit is contained in:
andrebeltrami 2020-03-11 16:16:16 +00:00 committed by Douglas Viroel
parent b7b7d9a02f
commit 8d2718da8c
2 changed files with 7 additions and 1 deletions

View File

@ -27,7 +27,7 @@ from manilaclient import utils
LOG = logging.getLogger(__name__)
MAX_VERSION = '2.53'
MAX_VERSION = '2.54'
MIN_VERSION = '2.0'
DEPRECATED_VERSION = '1.0'
_VERSIONED_METHOD_MAP = {}

View File

@ -0,0 +1,6 @@
---
features:
- Added ``progress`` field for shares and share replicas. This field
allows the user to check the progress of the create share from snapshot
operation. The field will show a percentage of completion between
``0`` and ``100`` percent.