ToolJet/plugins/packages/azureblobstorage/lib/manifest.json
Arpit 6d81ebe28b
[plugin] Datasource plugin for Azure blob storage (#5398)
* 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>
2023-07-20 12:20:18 +05:30

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"
]
}