mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-29 01:17:24 +00:00
* Feature: Prometheus plugin (#13161) * prometheus plugin * added existing props * Host and database can be dynamically configured in query builder for PostgreSQL and MySQL data sources (#13163) * Fix: Postgresql datasource tries to connect via ssl even when ssl toggle is off (#13167) * The ability to provide a partition key for deleting items in CosmosDB datasource has been enabled (#13166) * Feature: Ability to configure the database name in Redis datasource (#13165) * Fix: Avoid setting Content-Type header for requests without body and configure different host for all environments in OpenAPI [PRE-RELEASE] (#13230) * Send content-type only with body in request * Persist OpenAPI parameters per operation only * Configure different host * Add disable styles to the select input * Feat: New fields 'client id' and 'client secret' have been introduced in the Slack datasource configuration page in pre-release (#13162) * Update slack frontend * Update slack backend to handle custom creds * Add backfill migrations * Dynamically change dropdown according to versions * Change migration file name * Correctly access scope in chat:write logic --------- Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com> Co-authored-by: Parth <108089718+parthy007@users.noreply.github.com> Co-authored-by: Akshay <akshaysasidrn@gmail.com>
160 lines
No EOL
3.5 KiB
JSON
160 lines
No EOL
3.5 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Redis datasource",
|
|
"description": "A schema defining redis datasource",
|
|
"type": "database",
|
|
"source": {
|
|
"name": "Redis",
|
|
"kind": "redis",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"host": {
|
|
"type": "string"
|
|
},
|
|
"port": {
|
|
"type": "string"
|
|
},
|
|
"username": {
|
|
"type": "string"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"encrypted": true
|
|
},
|
|
"database": {
|
|
"type": "string"
|
|
},
|
|
"ca_cert": {
|
|
"encrypted": true
|
|
},
|
|
"client_key": {
|
|
"encrypted": true
|
|
},
|
|
"client_cert": {
|
|
"encrypted": true
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"host": {
|
|
"value": "localhost"
|
|
},
|
|
"port": {
|
|
"value": 6379
|
|
},
|
|
"username": {
|
|
"value": ""
|
|
},
|
|
"password": {
|
|
"value": ""
|
|
},
|
|
"tls_enabled": {
|
|
"value": false
|
|
},
|
|
"tls_certificate": {
|
|
"value": "none"
|
|
}
|
|
},
|
|
"properties": {
|
|
"tls_certificate": {
|
|
"label": "TLS Certificate",
|
|
"key": "tls_certificate",
|
|
"type": "dropdown-component-flip",
|
|
"description": "Single select dropdown for choosing certificates",
|
|
"list": [
|
|
{
|
|
"value": "ca_certificate",
|
|
"name": "CA certificate"
|
|
},
|
|
{
|
|
"value": "client_certificate",
|
|
"name": "Client certificate"
|
|
},
|
|
{
|
|
"value": "none",
|
|
"name": "None"
|
|
}
|
|
],
|
|
"commonFields": {
|
|
"host": {
|
|
"label": "Host",
|
|
"key": "host",
|
|
"type": "text",
|
|
"description": "Enter host"
|
|
},
|
|
"port": {
|
|
"label": "Port",
|
|
"key": "port",
|
|
"type": "text",
|
|
"description": "Enter port"
|
|
},
|
|
"database": {
|
|
"label": "Database",
|
|
"key": "database",
|
|
"type": "text",
|
|
"description": "Enter database name"
|
|
},
|
|
"username": {
|
|
"label": "Username",
|
|
"key": "username",
|
|
"type": "text",
|
|
"description": "Enter username"
|
|
},
|
|
"password": {
|
|
"label": "Password",
|
|
"key": "password",
|
|
"type": "password",
|
|
"description": "Enter password"
|
|
},
|
|
"tls_enabled": {
|
|
"label": "TLS",
|
|
"key": "tls_enabled",
|
|
"type": "toggle",
|
|
"description": "Toggle for TLS"
|
|
}
|
|
}
|
|
},
|
|
"ca_certificate": {
|
|
"ca_cert": {
|
|
"label": "CA Cert",
|
|
"key": "ca_cert",
|
|
"type": "textarea",
|
|
"encrypted": true,
|
|
"description": "Enter ca certificate"
|
|
}
|
|
},
|
|
"client_certificate": {
|
|
"client_key": {
|
|
"label": "Client Key",
|
|
"key": "client_key",
|
|
"type": "textarea",
|
|
"encrypted": true,
|
|
"description": "Enter client key"
|
|
},
|
|
"client_cert": {
|
|
"label": "Client Cert",
|
|
"key": "client_cert",
|
|
"type": "textarea",
|
|
"encrypted": true,
|
|
"description": "Enter client certificate"
|
|
},
|
|
"ca_cert": {
|
|
"label": "CA Cert",
|
|
"key": "ca_cert",
|
|
"type": "textarea",
|
|
"encrypted": true,
|
|
"description": "Enter ca certificate"
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"scheme",
|
|
"host",
|
|
"port",
|
|
"password"
|
|
]
|
|
} |