gpt4 book ai didi

Azure SignalR 无服务器 ARM 模板

转载 作者:行者123 更新时间:2023-12-03 05:02:14 25 4
gpt4 key购买 nike

是否可以设置SignalR模式(默认||无服务器||经典)在 ARM 模板内?

我当前使用的 ARM 模板的快照:

 "resources": [
{
"comments": "SignalR serverless arm ressource",
"type": "Microsoft.SignalRService/SignalR",
"sku": {
"name": "Free_F1",
"tier": "Free",
"size": "F1",
"capacity": 1
},
"name": "[parameters('SignalR_Name')]",
"apiVersion": "2018-10-01",
"location": "potatocountry",
"tags": {
"CostCenter": "-",
"Product": "signalr",
"Team": "t5"
},
"scale": null,
"properties": {
"hostNamePrefix": null
},
"dependsOn": []
}

使用此模板,SignalR 会在默认模式下生成。需要无服务器模式。

最佳答案

原始答案

我没有在 API 中看到这一点。定义。我在 resources.azure.com 中没有看到它,导出模板时也没有看到它。所以我想答案是:“不”。

更新

实际上,这就是门户的作用:

/subscriptions/id/resourceGroups/name/providers/Microsoft.SignalRService/SignalR/name/switchFeatures?api-version=2018-10-01

使用此有效负载:

{"features":[{"flag":"ServiceMode","value":"Serverless"}]}

尝试这样的事情:

"type": "Microsoft.SignalRService/SignalR/switchFeatures",
"name": "[concat(parameters('SignalR_Name'), '/doesntmatter')]",
"apiVersion": "2018-10-01",
"location": "xxx",
"properties": {
"features": [{
"flag": "ServiceMode",
"value": "Serverless"
}]
}

关于Azure SignalR 无服务器 ARM 模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54555125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com