API Connect用于Logic Apps的ARM模板

问题描述 投票:-2回答:2

任何人都可以指向ARM模板来构建用于Logic Apps的API连接吗?

特别是在gmail,o365和az表存储之后。

定位在Azure DevOps管道中使用。

azure-devops azure-resource-manager azure-logic-apps
2个回答
1
投票

如果要为表存储创建API连接,可以参考此SO thread

对于gmail和o365,我们可以先从Azure Portal创建API连接,然后我们就可以获得相应的ARM模板。

enter image description here

{
  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {},
  "variables": {},
  "resources": [
    {
      "type": "Microsoft.Web/connections",
      "name": "tomtestGmail",
      "apiVersion": "2016-06-01",
      "location": "centralus",
      "scale": null,
      "properties": {
        "displayName": "[email protected]",
        "customParameterValues": {},
        "api": {
          "id": "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/managedApis/gmail"
        }
      },
      "dependsOn": []
    }
  ],
  "outputs": {}
}

注意:我使用gmail连接API测试它,但是有一个很大的问题,我们需要进行身份验证

但我无法找到避免这种情况的方法。

enter image description here


1
投票

我向产品组确认,无论是运行auth脚本还是单击门户,都需要人工干预。在我的情况下,我移动到SMTP连接器,因为我只是在做电子邮件。尝试使用其他o365服务的更大问题。

© www.soinside.com 2019 - 2024. All rights reserved.