blob: 28d4a1d971c1392d97ccb3fbf93f0a52ed4bb9e4 [file] [log] [blame]
Scott Bakerd7a6b5a2015-08-10 17:09:38 -07001import os
2import pdb
3import sys
4import tempfile
5sys.path.append("/opt/tosca")
6from translator.toscalib.tosca_template import ToscaTemplate
7
Scott Bakere01ee762015-12-31 10:18:28 -08008from services.cord.models import VBNGService
Scott Bakerd7a6b5a2015-08-10 17:09:38 -07009
10from service import XOSService
11
12class XOSVBGNService(XOSService):
13 provides = "tosca.nodes.VBNGService"
14 xos_model = VBNGService
Scott Baker579f8192015-09-01 10:40:49 -070015 copyin_props = ["view_url", "icon_url", "enabled", "published", "public_key", "versionNumber", "vbng_url"]
Scott Bakerd7a6b5a2015-08-10 17:09:38 -070016