ToolJet/plugins/packages/snowflake/lib/manifest.json
Akshay 1228c3b48d
Feature: Snowflake integration 🚀 (#2261)
* wip

* establish connection to snowflake ds

* fix icon

* fix snowflake operations manifest

* add documentation

* fix formatting

* add snowflake optional params

* update snowflake sdk dependencies
2022-02-17 14:33:27 +05:30

65 lines
1.5 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Snowflake datasource",
"description": "A schema defining Snowflake datasource",
"type": "database",
"source": {
"name": "Snowflake",
"kind": "snowflake",
"exposedVariables": {
"isLoading": {},
"data": {},
"rawData": {}
},
"options": {
"username": { "type": "string" },
"account": { "type": "string" },
"password": { "type": "string", "encrypted": true }
}
},
"properties": {
"username": {
"label": "Username",
"key": "username",
"type": "text",
"description": "Enter username"
},
"account": {
"label": "Account",
"key": "account",
"type": "text",
"description": "Enter account"
},
"password": {
"label": "Password",
"key": "password",
"type": "password",
"description": "Enter password"
},
"database": {
"label": "Database",
"key": "database",
"type": "text",
"description": "Enter database"
},
"schema": {
"label": "Schema",
"key": "schema",
"type": "text",
"description": "Enter schema"
},
"warehouse": {
"label": "Warehouse",
"key": "warehouse",
"type": "text",
"description": "Enter warehouse"
},
"role": {
"label": "Role",
"key": "role",
"type": "text",
"description": "Enter role"
}
},
"required": ["account", "username", "password"]
}