-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity.json
42 lines (41 loc) · 948 Bytes
/
activity.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
{
"name": "flogoelasticstream",
"type": "flogo:activity",
"ref": "github.com/abasse/flogoelasticstream",
"version": "0.0.1",
"title": "Elastic Search",
"description": "Elastic Search stream query",
"homepage": "https://github.com/abasse/flogoelasticstream",
"inputs":[
{
"name": "basicAuthUser",
"type": "string",
"required": false
},
{
"name": "basicAuthPassword",
"type": "string",
"required": false
},
{
"name": "elasticbaseURL",
"type": "string",
"required": true
},
{
"name": "elasticQuery",
"type": "string",
"required": true
}
],
"outputs": [
{
"name": "result",
"type": "any"
},
{
"name": "hits",
"type": "number"
}
]
}