95 lines
3.0 KiB
Python
95 lines
3.0 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.tacker import v1_0 as tackerV10
|
|
|
|
|
|
_DEVICE_TEMPLATE = "device_template"
|
|
|
|
|
|
class ListDeviceTemplate(tackerV10.ListCommand):
|
|
"""List device template that belong to a given tenant."""
|
|
|
|
resource = _DEVICE_TEMPLATE
|
|
|
|
|
|
class ShowDeviceTemplate(tackerV10.ShowCommand):
|
|
"""show information of a given DeviceTemplate."""
|
|
|
|
resource = _DEVICE_TEMPLATE
|
|
|
|
|
|
class CreateDeviceTemplate(tackerV10.CreateCommand):
|
|
"""create a DeviceTemplate."""
|
|
|
|
resource = _DEVICE_TEMPLATE
|
|
|
|
def add_known_arguments(self, parser):
|
|
parser.add_argument(
|
|
'--name',
|
|
help='Set a name for the devicetemplate')
|
|
parser.add_argument(
|
|
'--description',
|
|
help='Set a description for the devicetemplate')
|
|
parser.add_argument(
|
|
'--template-service-type',
|
|
action='append',
|
|
help='Add a servicetype for the devicetemplate')
|
|
parser.add_argument(
|
|
'--device-driver',
|
|
help='Set a device driver name for the devicetemplate')
|
|
parser.add_argument(
|
|
'--mgmt-driver',
|
|
help='Set a manegement driver name for the devicetemplate')
|
|
parser.add_argument(
|
|
'--attribute',
|
|
nargs=2,
|
|
action='append',
|
|
help='Set a servicetypes for the devicetemplate')
|
|
|
|
def args2body(self, parsed_args):
|
|
body = {
|
|
self.resource: {
|
|
'service_types': [
|
|
{'service_type': service_type}
|
|
for service_type in parsed_args.template_service_type],
|
|
'device_driver': parsed_args.device_driver,
|
|
'mgmt_driver': parsed_args.mgmt_driver,
|
|
}
|
|
}
|
|
if parsed_args.attribute:
|
|
body[self.resource]['attributes'] = dict(parsed_args.attribute)
|
|
tackerV10.update_dict(parsed_args, body[self.resource],
|
|
['tenant_id', 'name', 'description'])
|
|
return body
|
|
|
|
|
|
class UpdateDeviceTemplate(tackerV10.UpdateCommand):
|
|
"""Update a given DeviceTemplate."""
|
|
|
|
resource = _DEVICE_TEMPLATE
|
|
allow_names = False
|
|
|
|
|
|
class DeleteDeviceTemplate(tackerV10.DeleteCommand):
|
|
"""Delete a given DeviceTemplate."""
|
|
resource = _DEVICE_TEMPLATE
|