-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent.json
62 lines (62 loc) · 1.81 KB
/
component.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
{
"title": "JD Edwards EnterpriseOne",
"description": "elastic.io component for the JD Edwards EnterpriseOne",
"docsUrl": "https://github.com/elasticio/jde-e1-component-java",
"credentials": {
"fields": {
"server": {
"label": "Server",
"required": true,
"viewClass": "TextFieldWithNoteView",
"note": "Please, provide server."
},
"port": {
"label": "Port",
"required": true,
"viewClass": "TextFieldWithNoteView",
"note": "Please, provide server port."
},
"user": {
"label": "User",
"required": true,
"viewClass": "TextFieldWithNoteView",
"note": "Please, provide username."
},
"password": {
"label": "Password",
"required": true,
"viewClass": "TextFieldWithNoteView",
"note": "Please, provide password."
},
"environment": {
"label": "Environment",
"required": true,
"viewClass": "TextFieldWithNoteView",
"note": "Please, provide environment value."
},
"function": {
"label": "Function",
"required": true,
"viewClass": "TextFieldWithNoteView",
"note": "Please, provide any existing function name for validating connection"
}
},
"verifier": "io.elastic.jdee1.JdeCredentialsVerifier"
},
"actions": {
"executeFunction": {
"main": "io.elastic.jdee1.actions.executeFunction",
"title": "Execute Function",
"description": "Execute Function with parameters",
"fields": {
"name": {
"viewClass": "TextFieldWithNoteView",
"label": "Function",
"required": true,
"note": "Please, provide name of function"
}
},
"dynamicMetadata": "io.elastic.jdee1.FunctionParamsProvider"
}
}
}