summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2021-05-26 14:42:52 +0100
committerStephen Finucane <sfinucan@redhat.com>2021-06-03 15:52:18 +0100
commit524af4a23efde62989ad55ecebabff0b50395308 (patch)
tree7e9fc98532301a3f12c491067a3a3ea32f680628 /releasenotes
parent0eddab36e52e813e2329ac10044fa4f67830efec (diff)
downloadpython-openstackclient-524af4a23efde62989ad55ecebabff0b50395308.tar.gz
volume: Add missing 'volume backup *' options
Add a couple of missing options to each command: volume backup create --no-incremental --property --availability-zone volume backup set --property Most of these are version dependent so we add the relevant version checks as part of this work. While we're here, we also make the formatting a little easier on the eye in places. Change-Id: I328d5c981cb32b2ee9a4b1bd43aa36b22347ff63 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/add-missing-volume-backup-opts-b9246aded87427ce.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/releasenotes/notes/add-missing-volume-backup-opts-b9246aded87427ce.yaml b/releasenotes/notes/add-missing-volume-backup-opts-b9246aded87427ce.yaml
new file mode 100644
index 00000000..883cb0d5
--- /dev/null
+++ b/releasenotes/notes/add-missing-volume-backup-opts-b9246aded87427ce.yaml
@@ -0,0 +1,15 @@
+---
+features:
+ - |
+ Add ``--no-incremental``, ``--property`` and ``--availability-zone``
+ options to ``volume backup create`` command, allowing users to request a
+ non-incremental backup, set a metadata property on the created backup, and
+ set an availability zone on the created backup, respectively.
+ - |
+ Add ``--property`` option the ``volume backup set`` command to set a
+ metadata property on an existing backup.
+fixes:
+ - |
+ The ``--name`` and ``--description`` options of the ``volume backup set``
+ command will now verify the version requested on the client side.
+ Previously this would fail on the server side.