-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
118 lines (118 loc) · 3.07 KB
/
manifest.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"id": "pub-mssql",
"displayName": "Microsoft SQL Server Publisher",
"description": "Publisher which pulls data from an MS SQL Server instance.",
"version": "3.1.6",
"apiVersion": "2",
"iconFile": "icon.png",
"executable": "plugin-pub-mssql",
"kind": "publisher",
"os": "$GOOS",
"arch": "$GOARCH",
"canConfigure": true,
"canProduceMultipleSchemas": true,
"canAcceptQueryBasedSchemas": true,
"canConfigureRealTime": true,
"canConfigureWrite": true,
"canConfigureReplication": true,
"canWriteReplication": true,
"canWriteBatch": true,
"canWrite": true,
"canDiscoverRelatedEntities": true,
"querySchema": {
"ui": {
"ui:widget": "code",
"ui:options": {
"language": "sql"
}
},
"schema": {
"type": "string"
}
},
"configSchema": {
"ui": {
"ui:order": [
"host",
"port",
"instance",
"database",
"auth",
"username",
"password",
"advancedSettings",
"skipCustomQueryCount",
"skipConnectDiscovery",
"disableDiscovery"
],
"password": {
"ui:widget": "password"
}
},
"schema": {
"type": "object",
"properties": {
"host": {
"type": "string",
"title": "Host",
"description": "The hostname of the server"
},
"port": {
"type": "number",
"title": "Port",
"description": "The port of the SQL Server instance on the server (optional)"
},
"instance": {
"type": "string",
"title": "Instance",
"description": "The SQL Server instance on the server (optional)"
},
"database": {
"type": "string",
"title": "Database"
},
"auth": {
"type": "string",
"title": "Authentication",
"enum": [
"sql",
"windows"
]
},
"username": {
"type": "string",
"title": "Username"
},
"password": {
"type": "string",
"title": "Password"
},
"advancedSettings": {
"type": "string",
"title": "Advanced Settings",
"description": "Optional config to append to the connection string."
},
"skipCustomQueryCount": {
"type": "boolean",
"title": "Skip Custom Query Count",
"description": "Optional performance enhancement to prevent discovering counts on custom queries."
},
"skipConnectDiscovery": {
"type": "boolean",
"title": "Skip Connect Discovery",
"description": "Optional performance enhancement to prevent metadata querying during connect. Most impactful on large databases."
},
"disableDiscovery": {
"type": "boolean",
"title": "Disable Discovery",
"description": "Optionally disables all forms of automated discovery (inputs and outputs)."
}
},
"required": [
"host",
"database",
"auth"
]
}
}
}