diff options
author | Brinda Santh <brindasanth@in.ibm.com> | 2019-05-15 17:03:13 -0400 |
---|---|---|
committer | Steve Siani <alphonse.steve.siani.djissitchi@ibm.com> | 2019-05-23 00:15:54 -0400 |
commit | 29b52189572ba0661cf947bf9f111585b2e11b3b (patch) | |
tree | e64987971d7d996d102e73774ee4a678ca3fa287 /components/model-catalog/blueprint-model/test-blueprint/baseconfiguration | |
parent | 12b078dbb0468c046f3fcfba60348b136396cf70 (diff) |
Add cli executor models
Change-Id: I611de175a265ea27dcb64fa08c33de5eb2dbffb6
Issue-ID: CCSDK-1335
Signed-off-by: Brinda Santh <brindasanth@in.ibm.com>
Diffstat (limited to 'components/model-catalog/blueprint-model/test-blueprint/baseconfiguration')
2 files changed, 113 insertions, 23 deletions
diff --git a/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/activation-blueprint.json b/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/activation-blueprint.json index eae69245b..5530b7c71 100644 --- a/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/activation-blueprint.json +++ b/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/activation-blueprint.json @@ -309,6 +309,29 @@ } } }, + "activate-cli": { + "type": "component-cli-executor", + "interfaces": { + "ComponentCliExecutor": { + "operations": { + "process": { + "implementation": { + "primary": "component-script" + }, + "inputs": { + "script-type": "kotlin", + "script-class-reference": "InternalSimpleCli_cba$TestCliScriptFunction", + "instance-dependencies": [] + }, + "outputs": { + "response-data": "", + "status": "success" + } + } + } + } + } + }, "sample-netconf-device": { "type": "vnf-netconf-device", "capabilities": { @@ -410,6 +433,19 @@ } } }, + "activate-cli": { + "steps": { + "activate-process": { + "description": "Activate CLI flow", + "target": "activate-cli", + "activities": [ + { + "call_operation": "ComponentCliExecutor.process" + } + ] + } + } + }, "assign-activate": { "inputs": { "assign-activate-properties": { diff --git a/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/node_types.json b/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/node_types.json index 8e9d13e3a..ceb18b273 100644 --- a/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/node_types.json +++ b/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Definitions/node_types.json @@ -1,5 +1,70 @@ { "node_types": { + "component-cli-executor": { + "description": "This is CLI Transaction Configuration Component API", + "version": "1.0.0", + "capabilities": { + "component-node": { + "type": "tosca.capabilities.Node" + } + }, + "interfaces": { + "ComponentCliExecutor": { + "operations": { + "process": { + "inputs": { + "script-type": { + "description": "Script type, kotlin type is supported", + "required": true, + "type": "string", + "constraints": [ + { + "valid_values": [ + "kotlin", + "jython", + "internal" + ] + } + ], + "default": "internal" + }, + "script-class-reference": { + "description": "Kotlin Script class name or jython script name.", + "required": true, + "type": "string" + }, + "instance-dependencies": { + "description": "Instance names to inject to Jython or Kotlin Script.", + "required": true, + "type": "list", + "entry_schema": { + "type": "string" + } + }, + "dynamic-properties": { + "description": "Dynamic Json Content or DSL Json reference.", + "required": false, + "type": "json" + } + }, + "outputs": { + "response-data": { + "description": "Execution Response Data.", + "required": false, + "type": "string" + }, + "status": { + "description": "Status of the Component Execution ( success or failure )", + "required": true, + "type": "string" + } + } + } + } + } + }, + "derived_from": "tosca.nodes.Component" + }, "component-jython-executor": { "description": "This is Jython Execution Component.", "version": "1.0.0", @@ -43,7 +108,7 @@ } } }, - "derived_from": "tosca.nodes.component.Jython" + "derived_from": "tosca.nodes.Component" }, "component-netconf-executor": { "description": "This is Netconf Transaction Configuration Component API", @@ -322,22 +387,16 @@ }, "derived_from": "tosca.nodes.ResourceSource" }, + "source-default": { + "description": "This is Default Resource Source Node Type", + "version": "1.0.0", + "properties": {}, + "derived_from": "tosca.nodes.ResourceSource" + }, "source-input": { "description": "This is Input Resource Source Node Type", "version": "1.0.0", - "properties": { - "key": { - "required": false, - "type": "string" - }, - "key-dependencies": { - "required": true, - "type": "list", - "entry_schema": { - "type": "string" - } - } - }, + "properties": {}, "derived_from": "tosca.nodes.ResourceSource" }, "source-processor-db": { @@ -393,7 +452,7 @@ "version": "1.0.0", "properties": { "type": { - "required": false, + "required": true, "type": "string", "constraints": [ { @@ -405,7 +464,7 @@ "default": "JSON" }, "verb": { - "required": false, + "required": true, "type": "string", "constraints": [ { @@ -478,11 +537,6 @@ "version": "1.0.0", "derived_from": "tosca.nodes.Root" }, - "tosca.nodes.Workflow": { - "description": "This is Directed Graph Node Type", - "version": "1.0.0", - "derived_from": "tosca.nodes.Root" - }, "tosca.nodes.ResourceSource": { "description": "TOSCA base type for Resource Sources", "version": "1.0.0", @@ -493,8 +547,8 @@ "version": "1.0.0", "derived_from": "tosca.nodes.Root" }, - "tosca.nodes.component.Jython": { - "description": "This is Jython Component", + "tosca.nodes.Workflow": { + "description": "This is Directed Graph Node Type", "version": "1.0.0", "derived_from": "tosca.nodes.Root" }, |