From ac68f989d10504c1d765151828c38fa81040109f Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Tue, 29 May 2018 09:16:10 +0200 Subject: [PATCH] vnf-list: printing vim account id Change-Id: I8e2260f8baaf8fe44f27cde36e969d8334c293f8 Signed-off-by: garciadeblas --- osmclient/scripts/osm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osmclient/scripts/osm.py b/osmclient/scripts/osm.py index 78dd232..9e2304b 100755 --- a/osmclient/scripts/osm.py +++ b/osmclient/scripts/osm.py @@ -238,6 +238,7 @@ def vnf_list(ctx, ns): 'ns id', 'vnf member index', 'vnfd name', + 'vim account id', 'ip address']) for vnfr in resp: name = vnfr['name'] if 'name' in vnfr else '-' @@ -247,6 +248,7 @@ def vnf_list(ctx, ns): vnfr['nsr-id-ref'], vnfr['member-vnf-index-ref'], vnfr['vnfd-ref'], + vnfr['vim-account-id'], vnfr['ip-address']]) else: table = PrettyTable( -- 2.17.1