diff --git a/tackerclient/tacker/v1_0/vm/device.py b/tackerclient/tacker/v1_0/vm/device.py index 420e23b7..80401ff2 100644 --- a/tackerclient/tacker/v1_0/vm/device.py +++ b/tackerclient/tacker/v1_0/vm/device.py @@ -34,6 +34,7 @@ class ListDevice(tackerV10.ListCommand): """List device that belong to a given tenant.""" resource = _DEVICE + list_columns = ['id', 'name', 'description', 'mgmt_url', 'status'] class ShowDevice(tackerV10.ShowCommand): diff --git a/tackerclient/tacker/v1_0/vm/vnf.py b/tackerclient/tacker/v1_0/vm/vnf.py index ed6d8c7b..8caf8eae 100644 --- a/tackerclient/tacker/v1_0/vm/vnf.py +++ b/tackerclient/tacker/v1_0/vm/vnf.py @@ -29,6 +29,7 @@ class ListVNF(tackerV10.ListCommand): """List device that belong to a given tenant.""" resource = _VNF + list_columns = ['id', 'name', 'description', 'mgmt_url', 'status'] class ShowVNF(tackerV10.ShowCommand): diff --git a/tackerclient/tacker/v1_0/vm/vnfd.py b/tackerclient/tacker/v1_0/vm/vnfd.py index 38a9d69a..c6d1a8fc 100644 --- a/tackerclient/tacker/v1_0/vm/vnfd.py +++ b/tackerclient/tacker/v1_0/vm/vnfd.py @@ -29,6 +29,7 @@ class ListVNFD(tackerV10.ListCommand): """List VNFD that belong to a given tenant.""" resource = _VNFD + list_columns = ['id', 'name', 'description', 'infra_driver', 'mgmt_driver'] class ShowVNFD(tackerV10.ShowCommand):