-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdescriptor.json
64 lines (64 loc) · 1.45 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
{
"name": "flogo-aqp",
"type": "flogo:trigger",
"version": "0.0.1",
"title": "AMQP Trigger",
"description": "AMQP 1.0 Trigger",
"settings": [
{
"name": "amqpURI",
"type": "string",
"description": "The uri to connecct to AMQP-Trigger",
"required":"true"
},
{
"name": "consumerTag",
"type": "string",
"description": "The tag for the consumer",
"required":"true"
},
{
"name": "certPem",
"type": "string",
"description": "The path to certificates"
},
{
"name": "keyPem",
"type": "string",
"description": "The path to certificates"
}
],
"handler": {
"settings": [
{
"name": "queue",
"type": "string",
"description": "The name of the queue",
"required":"true"
},
{
"name": "exchange",
"type": "string",
"description": "The name of the exchange",
"required":"true"
},
{
"name": "bindingKey",
"type": "string",
"description": "The binding key for the exchange"
},
{
"name": "exchangeType",
"type": "string",
"description": "The exchange type"
}
]
},
"output": [
{
"name": "data",
"type": "object",
"description": "The output"
}
]
}