diff --git a/magnumclient/api/shell.py b/magnumclient/api/shell.py index f7c87a48..5cdcf9fb 100644 --- a/magnumclient/api/shell.py +++ b/magnumclient/api/shell.py @@ -64,8 +64,12 @@ def do_bay_delete(cs, args): cs.bays.delete(args.id) +@utils.arg('--id', + metavar='', + 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):