blob: 7ee36dc92c2ef1c48c346aa8389ca4cdae4912cf [file] [log] [blame]
Pingping Linf3e24a92016-09-19 21:35:16 +00001import os
2import pdb
3import sys
4import tempfile
5sys.path.append("/opt/tosca")
6from translator.toscalib.tosca_template import ToscaTemplate
7import pdb
8
9from services.vpgwc.models import VPGWCService
10
11from service import XOSService
12
13class XOSVPGWCService(XOSService):
14 provides = "tosca.nodes.VPGWCService"
15 xos_model = VPGWCService
16 copyin_props = ["view_url", "icon_url", "enabled", "published", "public_key",
17 "private_key_fn", "versionNumber",
18 ]
19