Scott Baker | 8e6647a | 2016-06-20 17:16:20 -0700 | [diff] [blame] | 1 | import os |
2 | import pdb | ||||
3 | import sys | ||||
4 | import tempfile | ||||
5 | sys.path.append("/opt/tosca") | ||||
6 | from translator.toscalib.tosca_template import ToscaTemplate | ||||
7 | |||||
8 | from services.volt.models import VOLTService | ||||
9 | |||||
10 | from service import XOSService | ||||
11 | |||||
12 | class XOSVOLTService(XOSService): | ||||
13 | provides = "tosca.nodes.VOLTService" | ||||
14 | xos_model = VOLTService | ||||
15 | copyin_props = ["view_url", "icon_url", "kind", "enabled", "published", "public_key", "private_key_fn", "versionNumber"] |