2021-11-04 09:00:09 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json-schema.org/",
|
|
|
|
|
"$id": "https://tooljet.io/Gcs.schema.json",
|
|
|
|
|
"title": "Google Cloud Storage datasource",
|
|
|
|
|
"description": "A schema defining GCS datasource",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"source": {
|
|
|
|
|
"name": "GCS",
|
|
|
|
|
"kind": "gcs",
|
|
|
|
|
"exposedVariables": {
|
|
|
|
|
"isLoading": {},
|
|
|
|
|
"data": {},
|
|
|
|
|
"rawData": {}
|
|
|
|
|
},
|
|
|
|
|
"options": {
|
|
|
|
|
"private_key": { "type": "string", "encrypted": true }
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-11-22 08:22:32 +00:00
|
|
|
"defaults": {
|
|
|
|
|
"private_key": { "value": "" }
|
|
|
|
|
},
|
2021-11-04 09:00:09 +00:00
|
|
|
"properties": {
|
|
|
|
|
"private_key": {
|
|
|
|
|
"$label": "Private key",
|
|
|
|
|
"$key": "private_key",
|
|
|
|
|
"type": "textarea",
|
|
|
|
|
"description": "Enter JSON private key for service account"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"required": ["private_key"]
|
|
|
|
|
}
|