7

有没有像 ServiceBus 提供者这样的东西?作为我的应用程序的一部分,我想包含一个 SB 命名空间、主题和订阅。您是否期望使用 ARM 部署网站,并使用服务接口编写其他支持功能的脚本?

4

2 回答 2

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,                           
        }         
     }
于 2015-12-15T15:57:53.200 回答
3

还没有 Service Bus Provider。从客户端计算机创建/管理服务总线的唯一方法是通过PowerShell或通过利用Azure SDKREST 管理 API的自定义代码。

于 2015-02-17T05:08:17.293 回答