【发布时间】:2019-06-27 12:02:25
【问题描述】:
是否可以为在 SQL 中触发创建记录的逻辑应用构建 ARM 模板?
我尝试了各种方法,但我总是遇到的问题是找不到连接。
我已经在 Azure 中创建了连接,并通过使用该连接的门户手动创建逻辑应用来证明它有效。
这是我最新的实现(暂时硬编码):
{
"type": "Microsoft.Logic/workflows",
"apiVersion": "2017-07-01",
"name": "Data-Sync-Scheduler",
"location": "[parameters('location')]",
"properties": {
"state": "Enabled",
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"HTTP": {
"inputs": {
"method": "GET",
"queries": {
"scheduleId": "@{triggerBody()?['ScheduleId']}"
},
"uri": "<MY URL>"
},
"operationOptions": "DisableAsyncPattern",
"runAfter": {},
"type": "Http"
}
},
"contentVersion": "1.0.0.0",
"outputs": {},
"parameters": {
"$connections": {
"defaultValue": {
"sql": {
"connectionId": "/subscriptions/<ID>/resourceGroups/AZJACK001/providers/Microsoft.Web/connections/sql_2",
"connectionName": "sql_2",
"id": "/subscriptions/<ID>/providers/Microsoft.Web/locations/centralus/managedApis/sql"
}
},
"type": "Object"
}
},
"triggers": {
"When_an_item_is_created": {
"inputs": {
"host": {
"connection": {
"name": "@parameters('$connections')['sql']['connectionId']"
}
},
"method": "get",
"path": "/datasets/default/tables/@{encodeURIComponent(encodeURIComponent('[dbo].[Schedule]'))}/onnewitems"
},
"recurrence": {
"frequency": "Minute",
"interval": 1
},
"splitOn": "@triggerBody()?['value']",
"type": "ApiConnection"
}
}
}
}
}
编辑 1:这是一个 Azure SQL 托管数据库。
【问题讨论】:
-
SQL 服务器在哪里? Azure SQL 还是本地 SQL?
-
抱歉 - Azure SQL
标签: azure azure-sql-database azure-logic-apps