-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
500 lines (500 loc) · 15.1 KB
/
config.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
{
"name": "MySQL",
"type": "executer",
"imgUrl": "logo.png",
"execProgram": "node",
"main": "app.js",
"version": "4.0.0",
"description": "Run sql commands and scripts on MySQL servers.",
"category": "Database",
"keywords": [
"mysql",
"mysqldump",
"mysqladmin",
"sql",
"database",
"cli",
"mariadb",
"dump",
"restore",
"query"
],
"auth": {
"authId": "connectionStringMysqlAccount",
"params": [
{
"name": "connectionString",
"viewName": "Connection String",
"description": "Connection string used to connect to the database",
"type": "string",
"learnUrl": "https://dev.mysql.com/doc/refman/8.0/en/connecting-using-uri-or-key-value-pairs.html",
"required": true
},
{
"name": "password",
"viewName": "Password",
"description": "Select password from the Kaholo vault if you don't want to enter it directly into the connection string. If both are provided, a password from Kaholo vault takes precedence",
"type": "vault"
}
]
},
"settings":[{
"name": "showQuery",
"viewName": "Show queries in Activity Log (YES or NO)",
"description": "If enabled, fully formed queries are displayed in the Kaholo Activity Log before execution. Recommended only for diagnosing issues. Set to \"YES\" to enable.",
"comment": "plugin setting is type string because of bug KAH-6258",
"type": "string",
"default": "NO"
}],
"methods": [
{
"name": "testConnectivity",
"viewName": "Test Connectivity",
"params": []
},
{
"name": "executeQuery",
"viewName": "Execute Query",
"params": [
{
"name": "query",
"viewName": "Query String",
"type": "text",
"description": "The SQL query to execute",
"placeholder": "SELECT * FROM zoology.orders",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "executeSQLFile",
"viewName": "Execute SQL File",
"params": [
{
"name": "path",
"viewName": "SQL File Path",
"type": "string",
"required": true,
"parserType": "filePath",
"parserOptions": {
"throwIfDoesntExist": true,
"acceptedTypes": ["file"]
},
"description": "Path on Kaholo agent to the SQL file to execute",
"placeholder": "reports/weekly.sql",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "insertData",
"viewName": "Insert Data Into Table",
"params": [
{
"name": "db",
"viewName": "Database",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listDatabasesAuto",
"description": "Database containing the table.",
"placeholder": "dbname",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "table",
"viewName": "Table",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listTablesAuto",
"description": "The table to insert data into.",
"placeholder": "tablename",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "data",
"viewName": "Data",
"type": "text",
"required": true,
"parserType": "object",
"description": "Data in the form of an array of objects from the code layer or a JSON text respresentation"
}
]
},
{
"name": "listDbs",
"viewName": "List Databases",
"params": []
},
{
"name": "listTables",
"viewName": "List Tables",
"params": [
{
"name": "db",
"viewName": "Database",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listDatabasesOrAll",
"description": "Database name to retrieve data from.",
"placeholder": "dbname",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "getDbSize",
"viewName": "Get Databases Size",
"params": [
{
"name": "db",
"viewName": "Database",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listDatabasesOrAll",
"description": "Database name to retrieve data from.",
"placeholder": "dbname",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "getTablesSize",
"viewName": "Get Tables Size",
"params": [
{
"name": "db",
"viewName": "Database",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listDatabasesOrAll",
"description": "Database name to retrieve data from.",
"placeholder": "dbname",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "table",
"viewName": "Table",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listTablesOrAll",
"description": "Table name to retrieve the size status from.",
"placeholder": "tablename",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "getTablesLockedStatus",
"viewName": "Get Tables Locked Status",
"params": [
{
"name": "db",
"viewName": "Database",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listDatabasesAuto",
"description": "Database name to retrieve data from.",
"placeholder": "dbname",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "table",
"viewName": "Table",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listTablesAuto",
"description": "Table name to retrieve the lock status from.",
"placeholder": "tablename",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "copyStructure",
"viewName": "Copy Table Structure",
"params": [
{
"name": "db",
"viewName": "Source DB",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listDatabasesAuto",
"description": "The DB containing the source table.",
"placeholder": "dbname",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "srcTable",
"viewName": "Source Table",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listTablesAuto",
"description": "Copy this table's structure",
"placeholder": "tablename",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "destConStr",
"viewName": "Destination Connection String",
"type": "vault",
"description": "The vaulted connection string of the MySQL server into which to copy the table structure, if copying to another server. This string must include password. Format - mysql://myuser:[email protected]:3306/mydb?SslMode=Preferred",
"placeholder": "Select or create vault item",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "destDb",
"viewName": "Destination DB",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listDatabasesAuto",
"description": "The DB to contain the destination table.",
"placeholder": "dbname",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "destTable",
"viewName": "Destination Table Name",
"type": "string",
"description": "Copy the source table structure into a table with this name.",
"placeholder": "tablename",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "override",
"viewName": "Override Destination Table",
"type": "boolean",
"default": false,
"description": "If true, allow the destination table to be an existing table and try coping the data from it to the new structure. If false throw an error in case the destination table already exists."
}
]
},
{
"name": "listUsers",
"viewName": "List Users",
"params": []
},
{
"name": "listRoles",
"viewName": "List Roles",
"params": []
},
{
"name": "createUser",
"viewName": "Create User",
"params": [
{
"name": "user",
"viewName": "Username",
"type": "string",
"description": "Name for new user",
"placeholder": "username",
"required": true,
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "host",
"viewName": "Host",
"type": "string",
"description": "IP or named host from which user may connect, or leave empty for '%' (any host)",
"placeholder": "%",
"default": "localhost",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "pass",
"viewName": "Password",
"type": "vault",
"description": "Password for the new user",
"placeholder": "Select or create vault item",
"required": true,
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "changePass",
"viewName": "Change Password On Login",
"type": "boolean",
"default": false,
"description": "Force user to change password on initial login",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "role",
"viewName": "Default Role",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listRolesAuto",
"description": "Optional role to assign as user's default role, leave empty for no default role.",
"placeholder": "Select one",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "createRole",
"viewName": "Create Role",
"params": [
{
"name": "role",
"viewName": "Role Name",
"type": "string",
"description": "The name of the new role",
"placeholder": "mynewrole",
"required": "true",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "grantRole",
"viewName": "Grant Role to User",
"params": [
{
"name": "user",
"viewName": "User",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listUsersAuto",
"description": "The user to be granted a role",
"placeholder": "Please select a user",
"required": true,
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "role",
"viewName": "Role",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listRolesAuto",
"description": "The role to grant to the user",
"placeholder": "Please select a role",
"required": true,
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "grantPermissions",
"viewName": "Grant Permissions",
"params": [
{
"name": "user",
"viewName": "User or Role",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listUsersRolesAuto",
"description": "The user or role to be granted permissions",
"placeholder": "'dbreaders'@'%'",
"required": true,
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "db",
"viewName": "DB",
"type": "autocomplete",
"required": true,
"autocompleteType": "function",
"functionName": "listDatabasesOrAll",
"description": "Database to which access will be granted",
"placeholder": "mydb",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "table",
"viewName": "Table",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listTablesOrAll",
"description": "Table to which access will be granted. If none specified, access will be granted to entire database.",
"placeholder": "tablename",
"learnUrl": "https://dev.mysql.com/doc/"
},
{
"name": "scope",
"viewName": "Permission Scope",
"type": "options",
"default": "read",
"required": true,
"options": [
{
"id": "read",
"name": "Read Only"
},
{
"id": "write",
"name": "Write/Update Only"
},
{
"id": "readWrite",
"name": "Read And Write"
},
{
"id": "full",
"name": "Full Access"
},
{
"id": "fullWithGrant",
"name": "Full Access with Grant Option"
}
],
"description": "Select the access rights to grant",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "showGrants",
"viewName": "Show Grants",
"params": [
{
"name": "user",
"viewName": "User or Role",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listUsersRolesAuto",
"description": "The user or role for whom to show grants",
"placeholder": "'dbreaders'@'%'",
"required": true,
"learnUrl": "https://dev.mysql.com/doc/"
}]
},
{
"name": "getServerVersion",
"viewName": "Get MySQL Server Version",
"params": []
},
{
"name": "deleteUser",
"viewName": "Delete User",
"params": [
{
"name": "user",
"viewName": "User",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listUsersAuto",
"description": "The user to delete.",
"placeholder": "username",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
},
{
"name": "deleteRole",
"viewName": "Delete Role",
"params": [
{
"name": "role",
"viewName": "Role",
"type": "autocomplete",
"autocompleteType": "function",
"functionName": "listRolesAuto",
"description": "The role to delete",
"placeholder": "Please select a role",
"learnUrl": "https://dev.mysql.com/doc/"
}
]
}
]
}