summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-01-23 22:58:59 +0000
committerGerrit Code Review <review@openstack.org>2018-01-23 22:58:59 +0000
commit1de605cdd3c52795d3d6649515807239596f3054 (patch)
treeb6e673bdb16012178fdc4edf1dd48bcf411cc494
parentb5e373034d1319f550edeba9210810f812438577 (diff)
parent62d40cefb59cd27b7de13d87e4ef50a7053fba62 (diff)
downloadpython-cinderclient-1de605cdd3c52795d3d6649515807239596f3054.tar.gz
Merge "Add snapshot_id param note for backup-create"queens-em3.5.0
-rw-r--r--cinderclient/v2/volume_backups.py3
-rw-r--r--cinderclient/v3/volume_backups.py6
2 files changed, 9 insertions, 0 deletions
diff --git a/cinderclient/v2/volume_backups.py b/cinderclient/v2/volume_backups.py
index 7a02292..bcf3e01 100644
--- a/cinderclient/v2/volume_backups.py
+++ b/cinderclient/v2/volume_backups.py
@@ -55,6 +55,9 @@ class VolumeBackupManager(base.ManagerWithFind):
:param description: The description of the backup.
:param incremental: Incremental backup.
:param force: If True, allows an in-use volume to be backed up.
+ :param snapshot_id: The ID of the snapshot to backup. This should
+ be a snapshot of the src volume, when specified,
+ the new backup will be based on the snapshot.
:rtype: :class:`VolumeBackup`
"""
body = {'backup': {'volume_id': volume_id,
diff --git a/cinderclient/v3/volume_backups.py b/cinderclient/v3/volume_backups.py
index 323daff..8ebd31f 100644
--- a/cinderclient/v3/volume_backups.py
+++ b/cinderclient/v3/volume_backups.py
@@ -52,6 +52,9 @@ class VolumeBackupManager(volume_backups.VolumeBackupManager):
:param description: The description of the backup.
:param incremental: Incremental backup.
:param force: If True, allows an in-use volume to be backed up.
+ :param snapshot_id: The ID of the snapshot to backup. This should
+ be a snapshot of the src volume, when specified,
+ the new backup will be based on the snapshot.
:rtype: :class:`VolumeBackup`
"""
body = {'backup': {'volume_id': volume_id,
@@ -78,6 +81,9 @@ class VolumeBackupManager(volume_backups.VolumeBackupManager):
:param incremental: Incremental backup.
:param force: If True, allows an in-use volume to be backed up.
:param metadata: Key Value pairs
+ :param snapshot_id: The ID of the snapshot to backup. This should
+ be a snapshot of the src volume, when specified,
+ the new backup will be based on the snapshot.
:rtype: :class:`VolumeBackup`
"""
# pylint: disable=function-redefined