diff --git a/cinderclient/v3/shell.py b/cinderclient/v3/shell.py index d0f1b95da..1738b0bbf 100644 --- a/cinderclient/v3/shell.py +++ b/cinderclient/v3/shell.py @@ -177,6 +177,13 @@ def do_backup_list(cs, args): if show_count: print("Backup in total: %s" % total_count) + with cs.backups.completion_cache( + 'uuid', + cinderclient.v3.volume_backups.VolumeBackup, + mode="w"): + for backup in backups: + cs.backups.write_to_completion_cache('uuid', backup.id) + @utils.arg('--detail', action='store_true', @@ -393,6 +400,12 @@ def do_list(cs, args): servers = [s.get('server_id') for s in vol.attachments] setattr(vol, 'attached_to', ','.join(map(str, servers))) + with cs.volumes.completion_cache('uuid', + cinderclient.v3.volumes.Volume, + mode="w"): + for vol in volumes: + cs.volumes.write_to_completion_cache('uuid', vol.id) + if field_titles: # Remove duplicate fields key_list = ['ID'] @@ -642,6 +655,11 @@ def do_create(cs, args): utils.print_dict(info) + with cs.volumes.completion_cache('uuid', + cinderclient.v3.volumes.Volume, + mode="a"): + cs.volumes.write_to_completion_cache('uuid', volume.id) + @utils.arg('volume', metavar='', @@ -2404,6 +2422,12 @@ def do_backup_create(cs, args): utils.print_dict(info) + with cs.backups.completion_cache( + 'uuid', + cinderclient.v3.volume_backups.VolumeBackup, + mode="a"): + cs.backups.write_to_completion_cache('uuid', backup.id) + @utils.arg('volume', metavar='', help='Name or ID of volume to transfer.')