summaryrefslogtreecommitdiffstats
path: root/components/model-catalog/blueprint-model/test-blueprint/remote_scripts/Definitions/data_types.json
blob: b9c092ef33c8b475f091c9c2ae2d5afbcd9cbd9b (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
{
  "data_types" : {
    "dt-execute-remote-ansible-properties" : {
      "description" : "Dynamic DataType definition for workflow(execute-remote-ansible).",
      "version" : "1.0.0",
      "properties" : {
        "password" : {
          "type" : "string"
        },
        "ip" : {
          "type" : "string"
        },
        "username" : {
          "type" : "string"
        }
      },
      "derived_from" : "tosca.datatypes.Dynamic"
    },
    "dt-system-packages" : {
      "description" : "This represent System Package Data Type",
      "version" : "1.0.0",
      "properties" : {
        "type" : {
          "required" : true,
          "type" : "string",
          "constraints" : [ {
            "valid_values" : [ "ansible_galaxy", "pip" ]
          } ]
        },
        "package" : {
          "required" : true,
          "type" : "list",
          "entry_schema" : {
            "type" : "string"
          }
        }
      },
      "derived_from" : "tosca.datatypes.Root"
    }
  }
}