mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 22:47:28 +00:00
* add default manifest attributes for snowflake * fix imports and clones with default datasource * bumpt to v2.16.1
103 lines
2.1 KiB
JSON
103 lines
2.1 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": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"username": { "type": "string" },
|
|
"account": { "type": "string" },
|
|
"password": {
|
|
"type": "string",
|
|
"encrypted": true
|
|
},
|
|
"database": {
|
|
"type": "string"
|
|
},
|
|
"schema": {
|
|
"type": "string"
|
|
},
|
|
"warehouse": {
|
|
"type": "string"
|
|
},
|
|
"role": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"username": {
|
|
"value": ""
|
|
},
|
|
"account": {
|
|
"value": ""
|
|
},
|
|
"password": {
|
|
"value": ""
|
|
},
|
|
"database": {
|
|
"value": ""
|
|
},
|
|
"schema": {
|
|
"value": ""
|
|
},
|
|
"warehouse": {
|
|
"value": ""
|
|
},
|
|
"role": {
|
|
"value": ""
|
|
}
|
|
},
|
|
"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"]
|
|
}
|