ToolJet/plugins/packages/athena/lib/operations.json

66 lines
1.8 KiB
JSON
Raw Normal View History

2022-06-06 13:44:21 +00:00
{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
"title": "Amazon Athena datasource",
"description": "A schema defining Amazon Athena datasource",
"type": "api",
"defaults": {
"mode": "sql"
},
"properties": {
"mode": {
2022-06-14 12:44:37 +00:00
"label": "Query",
2022-06-06 13:44:21 +00:00
"key": "mode",
"type": "dropdown-component-flip",
"description": "Single select dropdown for mode",
"list": [
{
"name": "SQL Query",
"value": "sql"
}
]
},
"sql": {
"query": {
"key": "query",
"type": "codehinter",
"description": "Enter query",
"height": "150px"
2022-06-14 12:44:37 +00:00
},
"Pagination": {
"label": "Pagination",
"key": "pagination",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter pagination number",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "10"
},
"NextToken": {
2022-06-14 13:48:33 +00:00
"label": "Next token",
2022-06-14 12:44:37 +00:00
"key": "nextToken",
"type": "codehinter",
"lineNumbers": false,
2022-06-14 13:48:33 +00:00
"description": "Enter next token",
2022-06-14 12:44:37 +00:00
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "ARfCDXRjMkQsR1NWziK1ARgiip3umf3q0/bZmNZWeQxUDc7iSToT7uJHy2yo8nL5FyxQoIIkuPh/zDD51xld7SoALA+zhMhpZg=="
},
"QueryExecutionId": {
2022-06-14 13:48:33 +00:00
"label": "Query execution id",
2022-06-14 12:44:37 +00:00
"key": "queryExecutionId",
"type": "codehinter",
"lineNumbers": false,
2022-06-14 13:48:33 +00:00
"description": "Enter query execution id",
2022-06-14 12:44:37 +00:00
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "c274843b-4c5c-4ccf-ac8b-e33d595b927d"
2022-06-06 13:44:21 +00:00
}
}
}
}