aboutsummaryrefslogtreecommitdiffstats
path: root/components/model-catalog/blueprint-model/test-blueprint/capability_cli/Definitions/capability-cli-blueprint.json
blob: 04d0752fd1a4fbf8ec59d6f468606e2f64e7f72d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
  "tosca_definitions_version": "controller_blueprint_1_0_0",
  "metadata": {
    "template_author": "Brinda Santh",
    "author-email": "brindasanth@in.ibm.com",
    "user-groups": "ADMIN, OPERATION",
    "template_name": "capability-cli",
    "template_version": "1.0.0",
    "template_tags": "capability-cli-blueprint",
    "template_type": "DEFAULT"
  },
  "imports": [
    {
      "file": "Definitions/data_types.json"
    },
    {
      "file": "Definitions/relationship_types.json"
    },
    {
      "file": "Definitions/artifact_types.json"
    },
    {
      "file": "Definitions/node_types.json"
    },
    {
      "file": "Definitions/policy_types.json"
    }
  ],
  "topology_template": {
    "workflows": {
      "check": {
        "steps": {
          "activate-process": {
            "description": "Check CLI",
            "target": "check",
            "activities": [
              {
                "call_operation": "ComponentScriptExecutor.process"
              }
            ]
          }
        },
        "inputs": {
          "hostname": {
            "required": true,
            "type": "string"
          },
          "username": {
            "required": true,
            "type": "string"
          },
          "password": {
            "required": true,
            "type": "string"
          },
          "data": {
            "required": true,
            "type": "json"
          }
        }
      }
    },
    "node_templates": {
      "check": {
        "type": "component-script-executor",
        "interfaces": {
          "ComponentScriptExecutor": {
            "operations": {
              "process": {
                "implementation": {
                  "primary": "component-script",
                  "timeout": 180,
                  "operation_host": "SELF"
                },
                "inputs": {
                  "script-type": "kotlin",
                  "script-class-reference": "cba.capability.cli.Check"
                },
                "outputs": {
                  "response-data": "",
                  "status": "success"
                }
              }
            }
          }
        },
        "artifacts": {
          "command-template": {
            "type": "artifact-template-velocity",
            "file": "Templates/check-command-template.vtl"
          }
        }
      }
    },
    "relationship_templates": {
      "ssh-connection-config": {
        "type": "tosca.relationships.ConnectsTo.SshClient",
        "description": "Device connection config",
        "properties": {
          "connection-config": {
            "password": {
              "get_input": "password"
            },
            "host": {
              "get_input": "hostname"
            },
            "type": "basic-auth",
            "username": {
              "get_input": "username"
            }
          }
        }
      }
    }
  }
}