python-openstackclient/releasenotes/notes/add-missing-volume-backup-opts-b9246aded87427ce.yaml
Stephen Finucane 524af4a23e 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>
2021-06-03 15:52:18 +01:00

16 lines
651 B
YAML

---
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.