mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 06:57:40 +00:00
* Add list containers feature * Add list blobs with pagination feature * Add blob upload functionality * Add read and delete blob functionality * Change page limit keyname for listing blobs * fixed test connection false positive issye - added create container option * update default encoding type --------- Co-authored-by: vishnu r kumar <rkumar.vishnu28@gmail.com> Co-authored-by: Ganesh Kumar <ganesh8056234@gmail.com>
28 lines
No EOL
710 B
JSON
28 lines
No EOL
710 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Azure Blob Storage datasource",
|
|
"description": "A schema defining Azure Blob Storage datasource",
|
|
"type": "cloud-storage",
|
|
"source": {
|
|
"name": "Azure Blob Storage",
|
|
"kind": "azureblobstorage",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {}
|
|
},
|
|
"defaults": {},
|
|
"properties": {
|
|
"connection_string": {
|
|
"label": "Connection string",
|
|
"key": "connection_string",
|
|
"type": "text",
|
|
"description": "Enter connection string"
|
|
}
|
|
},
|
|
"required": [
|
|
"connection_string"
|
|
]
|
|
} |