Вам необходимо включить в тело следующие свойства.
{
"name":"test3",
"linkedReadProperties":[
"/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/microsoft.insights/components/<appinsight-name>/api",
"/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/microsoft.insights/components/<appinsight-name>/agentconfig"
],
"linkedWriteProperties":[
"/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/microsoft.insights/components/<appinsight-name>/annotations"
]
}
Эти три свойства соответствуют свойствам на портале -> ваше приложение -> API Access
-> Create API key
.
api - Read telemetry
agentconfig - Authenticate SDK control channel
annotations - Write annotations
Вам необходимо выбрать хотя бы один из них, включая тело запроса.
ДляНапример, вы просто выбираете первый, как показано ниже.
Тело должно быть:
{
"name":"test3",
"linkedReadProperties":[
"/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/microsoft.insights/components/<appinsight-name>/api"
],
"linkedWriteProperties":[]
}