Files
python-tackerclient/tackerclient/tacker/v1_0/vm/vnf.py
Isaku Yamahata 273e022e41 device, vnf: name column support
Change-Id: Idfe5dc951b0cac24e5c5a8997d5c0bf2b2b976e4
2015-05-02 15:38:57 -07:00

110 lines
3.2 KiB
Python

#
# Copyright 2013 Intel
# Copyright 2013 Isaku Yamahata <isaku.yamahata at intel com>
# <isaku.yamahata at gmail com>
# All Rights Reserved.
#
#
# 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.
#
# @author: Isaku Yamahata, Intel
from tackerclient.common import exceptions
from tackerclient.openstack.common.gettextutils import _
from tackerclient.tacker import v1_0 as tackerV10
_VNF = 'vnf'
class ListVNF(tackerV10.ListCommand):
"""List device that belong to a given tenant."""
resource = _VNF
class ShowVNF(tackerV10.ShowCommand):
"""show information of a given VNF."""
resource = _VNF
class CreateVNF(tackerV10.CreateCommand):
"""create a VNF."""
resource = _VNF
def add_known_arguments(self, parser):
parser.add_argument(
'--name',
help='Set a name for the vnf')
parser.add_argument(
'--vnfd-id',
required=True,
help='vnfd id to instantiate vnf based on')
parser.add_argument(
'--config-file',
help='specify config yaml file')
parser.add_argument(
'--config',
help='specify config yaml file')
def args2body(self, parsed_args):
body = {self.resource: {}}
if parsed_args.config_file:
with open(parsed_args.config_file) as f:
config_yaml = f.read()
body[self.resource]['config'] = config_yaml
if parsed_args.config:
body[self.resource]['config'] = parsed_args.config
tackerV10.update_dict(parsed_args, body[self.resource],
['tenant_id', 'name', 'vnfd_id'])
return body
class UpdateVNF(tackerV10.UpdateCommand):
"""Update a given VNF."""
resource = _VNF
def add_known_arguments(self, parser):
parser.add_argument(
'--configs',
metavar='<key>=<value>',
action='append',
dest='configs',
default=[],
help='vnf specific config')
def args2body(self, parsed_args):
body = {self.resource: {}}
if parsed_args.configs:
try:
configs = dict(key_value.split('=', 1)
for key_value in parsed_args.attributes)
except ValueError:
msg = (_('invalid argument for --configs %s') %
parsed_args.configs)
raise exceptions.TackerCLIError(msg)
if configs:
body[self.resource]['configs'] = configs
tackerV10.update_dict(parsed_args, body[self.resource], ['tenant_id'])
return body
class DeleteVNF(tackerV10.DeleteCommand):
"""Delete a given VNF."""
resource = _VNF