forked from Azure/LogicAppsTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (33 loc) · 979 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"id": "tool-execute-query-sql",
"title": "Execute SQL query on a database",
"summary": "Execute SQL query on any table in a database",
"description": "This workflow executed a query on a given table in a database. It is designed to be triggered by an HTTP request, run the query provided in the request and return the results back as a response. ",
"skus": [
"consumption"
],
"workflows": {
"default": {
"name": "Execute-query-SQL"
}
},
"featuredConnectors": [
{
"id": "connectionProviders/request",
"kind": "builtin"
},
{
"id": "/subscriptions/#subscription#/providers/Microsoft.Web/locations/#location#/managedApis/sql",
"kind": "shared"
}
],
"details": {
"By": "Microsoft",
"Type": "Workflow",
"Trigger": "Request",
"Category": "AI"
},
"tags": [
"Tools"
]
}