Pingping Lin | f3e24a9 | 2016-09-19 21:35:16 +0000 | [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 | import pdb |
| 8 | |
| 9 | from services.vpgwc.models import VPGWCService |
| 10 | |
| 11 | from service import XOSService |
| 12 | |
| 13 | class 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 | |