1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
"""Restore a file volume from a snapshot."""
# :license: MIT, see LICENSE for more details.
import click
import SoftLayer
from SoftLayer.CLI import environment
@click.command(cls=SoftLayer.CLI.command.SLCommand, )
@click.argument('volume_id')
@click.option('--snapshot-id', '-s',
help='The id of the snapshot which will be used'
' to restore the block volume')
@environment.pass_env
def cli(env, volume_id, snapshot_id):
"""Restore file volume using a given snapshot
Example::
slcli file snapshot-restore 12345678 -s 87654321
This command restores volume with ID 12345678 from snapshot with ID 87654321.
"""
file_manager = SoftLayer.FileStorageManager(env.client)
success = file_manager.restore_from_snapshot(volume_id, snapshot_id)
if success:
click.echo('File volume %s is being restored using snapshot %s'
% (volume_id, snapshot_id))
|