mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 22:47:28 +00:00
189 lines
No EOL
4.1 KiB
JSON
189 lines
No EOL
4.1 KiB
JSON
|
|
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Amazon Athena datasource",
|
|
"description": "A schema defining Amazon Athena datasource",
|
|
"type": "api",
|
|
"source": {
|
|
"name": "Amazon Athena",
|
|
"kind": "athena",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"access_key": {
|
|
"type": "string"
|
|
},
|
|
"secret_key": {
|
|
"type": "string",
|
|
"encrypted": true
|
|
},
|
|
"region": {
|
|
"type": "string"
|
|
},
|
|
"output_location": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"database": {
|
|
"value": ""
|
|
},
|
|
"output_location": {
|
|
"value": ""
|
|
},
|
|
"access_key": {
|
|
"value": ""
|
|
},
|
|
"secret_key": {
|
|
"value": ""
|
|
},
|
|
"region": {
|
|
"value": ""
|
|
}
|
|
},
|
|
"properties": {
|
|
"database": {
|
|
"label": "Database",
|
|
"key": "database",
|
|
"type": "text",
|
|
"description": "Enter database name"
|
|
},
|
|
"output_location": {
|
|
"label": "S3 output location",
|
|
"key": "output_location",
|
|
"type": "text",
|
|
"description": "Enter output location"
|
|
},
|
|
"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",
|
|
"output_location",
|
|
"database"
|
|
]
|
|
} |