2 * Copyright © 2019 IBM.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package cba.capability.cli
19 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.nodeTemplateComponentScriptExecutor
20 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.nodeTypeComponentScriptExecutor
21 import org.onap.ccsdk.cds.blueprintsprocessor.ssh.basicAuthSshProperties
22 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintTypes
23 import org.onap.ccsdk.cds.controllerblueprints.core.data.ServiceTemplate
24 import org.onap.ccsdk.cds.controllerblueprints.core.dsl.artifactTypeTemplateVelocity
25 import org.onap.ccsdk.cds.controllerblueprints.core.dsl.getAttribute
26 import org.onap.ccsdk.cds.controllerblueprints.core.dsl.getInput
27 import org.onap.ccsdk.cds.controllerblueprints.core.dsl.nodeTypeComponent
28 import org.onap.ccsdk.cds.controllerblueprints.core.dsl.relationshipTypeConnectsTo
29 import org.onap.ccsdk.cds.controllerblueprints.core.dsl.serviceTemplate
30 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.AbstractBluePrintDefinitions
32 class CapabilityCliDefinitions : AbstractBluePrintDefinitions() {
34 override fun serviceTemplate(): ServiceTemplate {
35 return defaultServiceTemplate()
39 fun CapabilityCliDefinitions.defaultServiceTemplate() =
41 name = "capability-cli",
43 author = "Brinda Santh Muthuramalingam",
44 tags = "brinda, tosca"
47 dsl("device-properties", BluePrintTypes.basicAuthSshProperties {
48 host(getInput("hostname"))
49 password(getInput("password"))
50 username(getInput("username"))
54 workflow(id = "check", description = "CLI Check Workflow") {
56 property(id = "hostname", type = "string", required = true, description = "")
57 property(id = "username", type = "string", required = true, description = "")
58 property(id = "password", type = "string", required = true, description = "")
59 property(id = "data", type = "json", required = true, description = "")
62 property(id = "status", required = true, type = "string", description = "") {
66 step(id = "check", target = "check", description = "Calling check script node")
69 val checkComponent = BluePrintTypes.nodeTemplateComponentScriptExecutor(id = "check", description = "") {
70 definedOperation(description = "") {
73 scriptClassReference("cba.capability.cli.Check")
76 status(getAttribute("status"))
77 responseData("""{ "data" : "Here I am "}""")
81 id = "command-template", type = "artifact-template-velocity",
82 file = "Templates/check-command-template.vtl"
85 nodeTemplate(checkComponent)
89 artifactType(BluePrintTypes.artifactTypeTemplateVelocity())
91 nodeType(BluePrintTypes.nodeTypeComponent())
92 nodeType(BluePrintTypes.nodeTypeComponentScriptExecutor())
93 /** Relationship Types */
94 relationshipType(BluePrintTypes.relationshipTypeConnectsTo())