内部数据网关上的SAP连接器

问题描述

我正在尝试使用ARM模板部署SAP连接器,但是我找不到该参数的详细信息。到目前为止,我已经弄清楚了以下内容:

{
    "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion": "1.0.0.0","parameters": {
        "connections_sap_name": {
            "type": "String"
        },"onPremiseDataGatewayName": {
            "type": "string"
        },"onPremiseDataGatewayResourceGroup": {
            "type": "string"
        },"sapPassword": {
            "type": "string"
        },"sapUser": {
            "type": "string"
        }
    },"variables": {},"resources": [
        {
            "type": "Microsoft.Web/connections","apiVersion": "2016-06-01","name": "[parameters('connections_sap_name')]","location": "westeurope","properties": {
                "displayName": "[parameters('connections_sap_name')]","customParameterValues": {},"api": {
                    "id": "/subscriptions/xxxxx/providers/Microsoft.Web/locations/westeurope/managedApis/sap"
                },"parameterValues": {
                    "authType": "basic","username": "[parameters('sapUser')]","password": "[parameters('sapPassword')]","client": "300","logonType": "Group","messageServerHost": "xx.xxx.xx.xx","systemID": "Q01","logonGroup": "Q01","gateway": {
                          "name": "[parameters('onPremiseDataGatewayName')]","id": "[concat('/subscriptions/',subscription().subscriptionId,'/resourceGroups/',parameters('onPremiseDataGatewayResourceGroup'),'/providers/Microsoft.Web/connectionGateways/',parameters('onPremiseDataGatewayName'))]"
                    }
                }
            }
        }
    ]
}

但是在Azure门户中打开api连接器时,我仍然不知道如何设置字段:

  • MS服务名称或端口号
  • SNC SSO(= ON)
  • SNC保护质量(=身份验证)

有人有任何线索或可以指出正确的方向吗?我已经搜索了好几个小时了。

非常感谢! 彼得

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...