From e92fce768cb792f11920f45fdbb38b3af69e212f Mon Sep 17 00:00:00 2001 From: Jozsef Csongvai Date: Tue, 19 Jan 2021 12:32:04 -0500 Subject: Update to latest version Issue-ID: TEST-295 Signed-off-by: Jozsef Csongvai Change-Id: Ie14e2061c1e0931bf3d555e54c79bb736d140d5c --- .../cba/netconf/Definitions/netconf.json | 137 --------------------- 1 file changed, 137 deletions(-) delete mode 100644 cds-regression-test/cba/netconf/Definitions/netconf.json (limited to 'cds-regression-test/cba/netconf/Definitions') diff --git a/cds-regression-test/cba/netconf/Definitions/netconf.json b/cds-regression-test/cba/netconf/Definitions/netconf.json deleted file mode 100644 index 74a98c1..0000000 --- a/cds-regression-test/cba/netconf/Definitions/netconf.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "metadata": { - "template_author": "Selffish", - "author-email": "test@bell.ca", - "template_name": "RT-netconf", - "template_version": "1.0.0", - "template_tags": "Bell, CBA, test" - }, - "topology_template": { - "workflows": { - "netconf-jython": { - "steps": { - "netconf-jython": { - "description": "deploy config", - "target": "execute-jython-netconf" - } - }, - "inputs": { - "netconf-host": { - "required": true, - "type": "string" - }, - "netconf-timeout": { - "required": true, - "type": "string" - } - }, - "outputs": { - "response-data": { - "type": "string", - "value": { - "get_attribute": [ - "execute-jython-netconf", - "response-data" - ] - } - } - } - }, - "netconf-kotlin": { - "steps": { - "netconf-kotlin": { - "description": "deploy config", - "target": "execute-kotlin-netconf" - } - }, - "inputs": { - "netconf-host": { - "required": true, - "type": "string" - }, - "netconf-timeout": { - "required": true, - "type": "string" - } - }, - "outputs": { - "response-data": { - "type": "string", - "value": { - "get_attribute": [ - "execute-kotlin-netconf", - "response-data" - ] - } - } - } - } - }, - "node_templates": { - "execute-jython-netconf": { - "type": "component-netconf-executor", - "requirements": { - "netconf-connection": { - "capability": "netconf", - "node": "netconf-device", - "relationship": "tosca.relationships.ConnectsTo" - } - }, - "interfaces": { - "ComponentNetconfExecutor": { - "operations": { - "process": { - "inputs": { - "script-type": "jython", - "script-class-reference": "Scripts/python/NetconfTest.py", - "instance-dependencies": [] - } - } - } - } - } - }, - "execute-kotlin-netconf": { - "type": "component-netconf-executor", - "requirements": { - "netconf-connection": { - "capability": "netconf", - "node": "netconf-device", - "relationship": "tosca.relationships.ConnectsTo" - } - }, - "interfaces": { - "ComponentNetconfExecutor": { - "operations": { - "process": { - "inputs": { - "script-type": "kotlin", - "script-class-reference": "org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.ConfigDeploy", - "instance-dependencies": [] - } - } - } - } - } - }, - "netconf-device": { - "type": "vnf-netconf-device", - "capabilities": { - "netconf": { - "properties": { - "login-key": "password", - "login-account": "admin", - "target-ip-address": { - "get_input": "netconf-host" - }, - "port-number": 17830, - "connection-time-out": { - "get_input": "netconf-timeout" - } - } - } - } - } - } - } -} -- cgit 1.2.3-korg