ToolJet/plugins/packages/gcs/lib/manifest.json
Arpit f193ec1c07
Bugfix - source options are lost on save in client (#6454)
* fixes: source options are lost on save in client

* fixes: source options are lost on save for twillo
2023-06-15 17:33:22 +05:30

38 lines
No EOL
830 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Google Cloud Storage datasource",
"description": "A schema defining GCS datasource",
"type": "cloud-storage",
"source": {
"name": "GCS",
"kind": "gcs",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"private_key": {
"type": "string",
"encrypted": true
}
}
},
"defaults": {
"private_key": {
"value": ""
}
},
"properties": {
"private_key": {
"label": "Private key",
"key": "private_key",
"type": "textarea",
"description": "Enter JSON private key for service account",
"encrypted": true
}
},
"required": [
"private_key"
]
}