是否存在ServiceBus提供商这样的问题?作为我的应用程序的一部分,我想包括一个SB命名空间,主题和订阅。您是否期望使用ARM部署网站,并使用服务接口编写其他支持功能的脚本?
答案 0 :(得分:7)
现在有一个服务总线提供商。样本模板:
{
"apiVersion": "2014-09-01",
"name": "[parameters('namespace')]",
"type": "Microsoft.ServiceBus/namespaces",
"location": "[parameters('resourceLacation')]",
"properties": {
"messagingSku": "1", //basic tier
"enabled": true,
"status": "Active",
"namespaceType": "Messaging",
"eventHubEnabled": true,
}
}
答案 1 :(得分:3)
还没有服务总线提供商。从客户端计算机创建/管理Service Bus的唯一方法是通过PowerShell或通过自定义代码利用Azure SDK或REST Management API。