Merge "Clean up list output for device, vnf and vnfd"

This commit is contained in:
Jenkins 2015-07-07 21:15:03 +00:00 committed by Gerrit Code Review
commit cc5e786f08
3 changed files with 3 additions and 0 deletions

View File

@ -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):

View File

@ -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):

View File

@ -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):