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
|
"""Refresh a dependent duplicate volume with a snapshot from its parent."""
# :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.argument('snapshot_id')
@click.option('--force-refresh', '-f', is_flag=True, default=False, show_default=True,
help="Cancel current refresh process and initiates the new refresh.")
@environment.pass_env
def cli(env, volume_id, snapshot_id, force_refresh):
"""Refresh a duplicate volume with a snapshot from its parent.
Example::
slcli file volume-refresh volume_id snapshot_id
Refresh a duplicate volume_id with a snapshot from its parent snapshot_id.
Refresh a duplicate volume with a snapshot from its parent.
"""
file_manager = SoftLayer.FileStorageManager(env.client)
resp = file_manager.refresh_dupe(volume_id, snapshot_id, force_refresh)
click.echo(resp)
|