ToolJet/plugins/packages/oracledb/lib/manifest.json
Akshay 1602317ad5
Add support for oracle 9i db (#6637)
* update oracledb package for node 18

* add oracle instant client 11 and 21 binaries for linux

* Revert "add oracle instant client 11 and 21 binaries for linux"

This reverts commit 9ba7d18685.

* add ability to specify instant client version

* update dockerfiles to include oracle 11 instant client

* update ami build for oracle instant client 11

* add data migration for oracle ds default client version 21

* remove console.log in code

* fix server dev dockerfile

* define LD_LIBRARY_PATH

* fix LD_LIBRARY_PATH assignment
2023-06-21 11:39:30 +05:30

155 lines
3.3 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Oracle DB datasource",
"description": "A schema defining Oracle DB datasource",
"type": "database",
"source": {
"name": "Oracle DB",
"kind": "oracledb",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"password": {
"encrypted": true
}
}
},
"defaults": {
"host": {
"value": "localhost"
},
"port": {
"value": 1521
},
"database": {
"value": ""
},
"database_type": {
"value": "SID"
},
"username": {
"value": ""
},
"password": {
"value": ""
},
"ssl_enabled": {
"value": true
},
"client_path_type":{
"value": "default"
},
"instant_client_version": {
"value": "21_10"
}
},
"properties": {
"client_path_type": {
"label": "Client Library Location",
"key": "client_path_type",
"type": "dropdown-component-flip",
"description": "Single select dropdown for client library",
"list": [
{
"value": "default",
"name": "Default"
},
{
"value": "custom",
"name": "Custom"
}
],
"commonFields":{
"host": {
"label": "Host",
"key": "host",
"type": "text",
"description": "Enter host"
},
"port": {
"label": "Port",
"key": "port",
"type": "text",
"description": "Enter port"
},
"database_type": {
"label": "SID / Service Name",
"key": "database_type",
"type": "dropdown",
"description": "Type of the database",
"list": [
{
"name": "SID",
"value": "SID"
},
{
"name": "Service name",
"value": "SERVICE_NAME"
}
]
},
"database": {
"label": "Database Name",
"key": "database",
"type": "text",
"description": "Name of the database"
},
"ssl_enabled": {
"label": "SSL",
"key": "ssl_enabled",
"type": "toggle",
"description": "Toggle for ssl_enabled"
},
"username": {
"label": "Username",
"key": "username",
"type": "text",
"description": "Enter username"
},
"password": {
"label": "Password",
"key": "password",
"type": "password",
"description": "Enter password"
}
}
},
"custom":{
"path": {
"label": "Path",
"key": "path",
"type": "text",
"description": "Enter path"
}
},
"default": {
"instant_client_version": {
"label": "Instant Client version",
"key": "instant_client_version",
"type": "dropdown",
"description": "Select Instant Client version",
"list": [
{
"name": "21.10",
"value": "21_10"
},
{
"name": "11.2",
"value": "11_2"
}
]
}
}
},
"required": [
"host",
"port",
"username",
"password",
"client_path_type"
]
}