Scott Baker | 4683159 | 2016-06-20 17:32:04 -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.fabric.models import FabricService | ||||
9 | |||||
10 | from service import XOSService | ||||
11 | |||||
12 | class FabricService(XOSService): | ||||
13 | provides = "tosca.nodes.FabricService" | ||||
14 | xos_model = FabricService | ||||
15 | copyin_props = ["view_url", "icon_url", "enabled", "published", "public_key", "versionNumber"] | ||||
16 |