ToolJet/plugins/packages/databricks/lib/operations.json
Syed Mohammad Akhtar Rizvi 25d12db6d8
Feature: Databricks data source (#9174)
* plugin-created

* Databricks integration

* icon, error handling

* removed unrelated changes from marketplace and frontend package-lock.json removed runAsync and maxRows timeouts pending

* timeout implementation

* socket timeout and error handling

* resolve comments

* resolve comments2

* solved render issue test connection improvements

* solved undefined error
2024-03-27 18:14:11 +05:30

30 lines
No EOL
711 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
"title": "Databricks datasource",
"description": "A schema defining Databricks datasource",
"type": "database",
"defaults": {},
"properties": {
"mode": {
"label": "",
"key": "mode",
"type": "dropdown-component-flip",
"description": "Single select dropdown for mode",
"list": [
{
"name": "SQL mode",
"value": "sql"
}
]
},
"sql": {
"sql_query": {
"key": "sql_query",
"type": "codehinter",
"description": "Enter your SQL query",
"height": "150px"
}
}
}
}