Files
python-vitrageclient/vitrageclient/v1/cli/resource.py
dongwenjuan f66807a117 Add a 'metadata' column to show resource optional properties
Some resources may have no specify property, eg. "project_id".

Change-Id: Ibe46f43b7b967315e4bf61ed937842eb7e24dc99
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
2017-04-18 17:26:49 +08:00

71 lines
2.6 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from cliff import lister
from cliff import show
from vitrageclient.common import utils
# noinspection PyAbstractClass
class ResourceShow(show.ShowOne):
"""Show a resource"""
def get_parser(self, prog_name):
parser = super(ResourceShow, self).get_parser(prog_name)
parser.add_argument('resource_id', help='ID of a resource')
return parser
def take_action(self, parsed_args):
resource_id = parsed_args.resource_id
resource = utils.get_client(self).resource.get(resource_id=resource_id)
return self.dict2columns(resource)
class ResourceList(lister.Lister):
"""List resources"""
RESOURCE_PROPERTIES = \
('vitrage_id', 'type', 'id', 'state',
'aggregated_state', 'metadata')
METADATA = ('name', 'project_id', 'update_timestamp')
def get_parser(self, prog_name):
parser = super(ResourceList, self).get_parser(prog_name)
parser.add_argument('--type',
dest='resource_type',
metavar='<resource type>',
help='Type of resource')
parser.add_argument('--all-tenants',
default=False,
dest='all_tenants',
action='store_true',
help='Shows resources of all the tenants')
return parser
def take_action(self, parsed_args):
resource_type = parsed_args.resource_type
all_tenants = parsed_args.all_tenants
resources = utils.get_client(self).resource.list(
resource_type=resource_type,
all_tenants=all_tenants)
# cluster, zone and host don't have "project_id" property
# neutron.port don't have "name" property
# cluster don't have "update_timestamp"
for resource in resources:
resource['metadata'] = \
{item: resource[item] for item in self.METADATA
if item in resource}
return utils.list2cols(self.RESOURCE_PROPERTIES, resources)