正在尝试对API管理服务启用Application Insights。Application Insights位于另一个订阅中。参数“ApplicationInsightsInstanceRI”包含完整的资源AI ID。是否知道发生此错误的原因?
**错误:**无效的资源类型:在API版本“2019-12- 01”的命名空间“Microsoft.Insights”中找不到该资源类型。
"type": "Microsoft.ApiManagement/service/loggers",
"name": "[concat(parameters('apiManagementServiceName'), '/', parameters('ApplicationInsightsInstanceName'))]",
"dependsOn": ["[resourceId('Microsoft.ApiManagement/service', parameters('apiManagementServiceName'))]"],
"apiVersion": "2018-06-01-preview",
"properties": {
"loggerType": "applicationInsights",
"description": "Logger resources to APIM",
"resourceid": "[parameters('ApplicationInsightsInstanceRI')]"
"credentials": {
"instrumentationKey": "[reference(resourceId('Microsoft.Insights/component', parameters('ApplicationInsightsInstanceName')), '2019-12-01', 'Full').properties.InstrumentationKey]",
1条答案
按热度按时间iswrvxsc1#
知道为什么会出现此错误吗?
此错误是由于无效的检测键。在我的模板中直接提到检测键后,我能够得到所需的结果& API调用工作正常。
下面是对我有效的模板。