ToolJet/marketplace/plugins/s3/lib/manifest.json
Arpit f098f447d1
fixes: integrating plugins from marketplace (#5678)
* fixes: integrating plugins from marketplace to apps

* clean up

* update deps: markeplace to node 18

* adds plivo

* updates plivo icon

* fixes app crash on clicking sidebae datasources popup

* fixes app crash for rendering selected ds form from leftsidebar

* fixes app crash for loading installed plugins

* fixes: updated correct plugin id to testconection

* init

* updates s3 plugin name

* checking if marketplace flag is "true"

* updates github svg

* plugin icon fix

* fixes:components werent rendering if marketplace plugin queries were used

* github plugin: error message for invalid creds

* fixes: typos

* fixes multiple installation of the same plugin
2023-03-16 18:17:25 +05:30

165 lines
No EOL
3.6 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "AWS S3 datasource",
"description": "A schema defining AWS S3 datasource",
"type": "cloud-storage",
"source": {
"name": "AWS S3 plugin",
"kind": "s3",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"access_key": {
"type": "string"
},
"secret_key": {
"type": "string",
"encrypted": true
},
"region": {
"type": "string"
}
}
},
"defaults": {
"access_key": {
"value": ""
},
"secret_key": {
"value": ""
},
"region": {
"value": ""
}
},
"properties": {
"access_key": {
"label": "Access key",
"key": "access_key",
"type": "text",
"description": "Enter access key"
},
"secret_key": {
"label": "Secret key",
"key": "secret_key",
"type": "password",
"description": "Enter secret key"
},
"region": {
"label": "Region",
"key": "region",
"type": "dropdown",
"description": "Single select dropdown for region",
"list": [
{
"name": "US East (Ohio)",
"value": "us-east-2"
},
{
"name": "US East (N. Virginia)",
"value": "us-east-1"
},
{
"name": "US West (N. California)",
"value": "us-west-1"
},
{
"name": "US West (Oregon)",
"value": "us-west-2"
},
{
"name": "Africa (Cape Town)",
"value": "af-south-1"
},
{
"name": "Asia Pacific (Hong Kong)",
"value": "ap-east-1"
},
{
"name": "Asia Pacific (Mumbai)",
"value": "ap-south-1"
},
{
"name": "Asia Pacific (Osaka)",
"value": "ap-northeast-3"
},
{
"name": "Asia Pacific (Seoul)",
"value": "ap-northeast-2"
},
{
"name": "Asia Pacific (Singapore)",
"value": "ap-southeast-1"
},
{
"name": "Asia Pacific (Sydney)",
"value": "ap-southeast-2"
},
{
"name": "Asia Pacific (Tokyo)",
"value": "ap-northeast-1"
},
{
"name": "Canada (Central)",
"value": "ca-central-1"
},
{
"name": "China (Beijing)",
"value": "cn-north-1"
},
{
"name": "China (Ningxia)",
"value": "cn-northwest-1"
},
{
"name": "Europe (Frankfurt)",
"value": "eu-central-1"
},
{
"name": "Europe (Ireland)",
"value": "eu-west-1"
},
{
"name": "Europe (London)",
"value": "eu-west-2"
},
{
"name": "Europe (Milan)",
"value": "eu-south-1"
},
{
"name": "Europe (Paris)",
"value": "eu-west-3"
},
{
"name": "Europe (Stockholm)",
"value": "eu-north-1"
},
{
"name": "Middle East (Bahrain)",
"value": "me-south-1"
},
{
"name": "South America (São Paulo)",
"value": "sa-east-1"
},
{
"name": "AWS GovCloud (US-East)",
"value": "us-gov-east-1"
},
{
"name": "AWS GovCloud (US-West)",
"value": "us-gov-west-1"
}
]
}
},
"required": [
"access_key",
"secret_key",
"region"
]
}