-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
98 lines (98 loc) · 2.57 KB
/
plugin.json
File metadata and controls
98 lines (98 loc) · 2.57 KB
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
{
"name": "bento",
"version": "0.0.0",
"author": "GoCodeAlone",
"description": "Stream processing via Bento — 100+ connectors, Bloblang transforms, at-least-once delivery",
"type": "external",
"tier": "core",
"license": "MIT",
"minEngineVersion": "0.53.0",
"keywords": [
"bento",
"streaming",
"kafka",
"sqs",
"pubsub"
],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-bento",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-bento",
"downloads": [
{
"os": "linux",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-bento/releases/download/v1.1.0/workflow-plugin-bento-linux-amd64.tar.gz"
},
{
"os": "linux",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-bento/releases/download/v1.1.0/workflow-plugin-bento-linux-arm64.tar.gz"
},
{
"os": "darwin",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-bento/releases/download/v1.1.0/workflow-plugin-bento-darwin-amd64.tar.gz"
},
{
"os": "darwin",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-bento/releases/download/v1.1.0/workflow-plugin-bento-darwin-arm64.tar.gz"
}
],
"moduleTypes": [
"bento.stream",
"bento.input",
"bento.output",
"bento.broker"
],
"stepTypes": [
"step.bento"
],
"triggerTypes": [],
"contracts": [
{
"kind": "module",
"type": "bento.stream",
"mode": "strict_proto",
"config": "workflow.plugin.bento.v1.StreamModuleConfig"
},
{
"kind": "module",
"type": "bento.input",
"mode": "strict_proto",
"config": "workflow.plugin.bento.v1.InputModuleConfig"
},
{
"kind": "module",
"type": "bento.output",
"mode": "strict_proto",
"config": "workflow.plugin.bento.v1.OutputModuleConfig"
},
{
"kind": "module",
"type": "bento.broker",
"mode": "strict_proto",
"config": "workflow.plugin.bento.v1.BrokerModuleConfig"
},
{
"kind": "step",
"type": "step.bento",
"mode": "strict_proto",
"config": "workflow.plugin.bento.v1.ProcessorStepConfig",
"input": "workflow.plugin.bento.v1.ProcessorStepInput",
"output": "workflow.plugin.bento.v1.ProcessorStepOutput"
}
],
"capabilities": {
"configProvider": false,
"moduleTypes": [
"bento.stream",
"bento.input",
"bento.output",
"bento.broker"
],
"stepTypes": [
"step.bento"
],
"triggerTypes": []
}
}