ToolJet/plugins/packages/cosmosdb/lib/manifest.json
Arpit 84e7cef097
[Plugins] CosmosDB integration (#3828)
* init

* cosmos db icon

* manifest file

* adds azure package

* test connection

* operations: list databases

* operation: read item, insert items with a lookup function

* operation: delete item

* operation: query database using SQL-like syntax

* adds unit tests

* adds unit test: query db

* clean up

* docs: cosmosdb

* docs: cleanup

* typo

* updated the image(docs)

* updated inserting operation: field: placeholder

* item id for delete operation

* Revert "item id for delete operation"

This reverts commit bc2d1b87e4.

* item id for delete operation
2022-09-01 23:03:44 +05:30

48 lines
No EOL
992 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "CosmosDB datasource",
"description": "A schema defining CosmosDB datasource",
"type": "database",
"source": {
"name": "CosmosDB",
"kind": "cosmosdb",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"endpoint": {
"type": "string"
},
"key": {
"type": "string",
"encrypted": true
}
}
},
"defaults": {
"endpoint": {
"value": ""
},
"key": {
"value": ""
}
},
"properties": {
"endPoint": {
"label": "End point",
"key": "endpoint",
"type": "text",
"description": "https://your-account.documents.azure.com"
},
"key": {
"label": "Key",
"key": "key",
"type": "password",
"description": "Enter your key"
}
},
"required": ["endpoint", "key"]
}