forked from project-flogo/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
descriptor.json
69 lines (69 loc) · 1.48 KB
/
descriptor.json
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
{
"name": "flogo-cli",
"type": "flogo:trigger",
"shim": "main",
"version": "0.10.0",
"title": "CLI Trigger",
"description": "Simple CLI Trigger",
"homepage": "https://github.com/project-flogo/contrib/tree/master/trigger/cli",
"settings": [
{
"name": "singleCmd",
"type": "bool",
"description": "Indicates that this CLI runs only one command/handler"
},
{
"name": "usage",
"type": "string",
"description": "The usage details of the CLI"
},
{
"name": "long",
"type": "string",
"description": "The description of the CLI"
}
],
"handler": {
"settings": [
{
"name": "flags",
"type": "array",
"description": ""
},
{
"name": "usage",
"type": "string",
"description": "The usage details of the command"
},
{
"name": "short",
"type": "string",
"description": "A short description of the command"
},
{
"name": "long",
"type": "string",
"description": "The description of the command"
}
]
},
"output": [
{
"name": "args",
"type": "array",
"description": "An array of the command line arguments"
},
{
"name": "flags",
"type": "map",
"description": "A map of the command line flags"
}
],
"reply": [
{
"name": "data",
"type": "any",
"description": "The data that the command outputs"
}
]
}