Complete implementation of bay operations

Change-Id: I93e42ec86b9d0609d92d1ececb2389200ae368ec
This commit is contained in:
Abhishek Chanda 2014-12-01 23:34:34 +05:30
parent c974b2be57
commit 25dba7ea33

View File

@ -64,8 +64,12 @@ def do_bay_delete(cs, args):
cs.bays.delete(args.id)
@utils.arg('--id',
metavar='<bay_id>',
help='ID of the bay to show.')
def do_bay_show(cs, args):
pass
bay = cs.bays.get(args.id)
_show_bay(bay)
def do_pod_list(cs, args):