简体   繁体   English

azure资源管理器服务提供商?

[英]azure resource manager servicebus provider?

Is there such a thing as a ServiceBus provider? 有没有ServiceBus提供商这样的东西? As part of my application I would like to include a SB namespace, topic and subscriptions. 作为我的应用程序的一部分,我想包括一个SB命名空间,主题和订阅。 Is the expectation that you deploy the website(s) using ARM, and use the service interface for scripting the other supporting features? 您是否期望使用ARM部署网站,并使用服务接口来编写其他支持功能的脚本?

There is a Service Bus Provider now. 现在有一个服务总线提供商。 Sample template: 示例模板:

    {
      "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,                           
        }         
     }

There isn't a Service Bus Provider yet. 还没有服务总线提供商。 The only way you can create / manage Service Bus from a client machine is via PowerShell or through custom code leveraging either an Azure SDK or the REST Management API . 从客户端计算机创建/管理Service Bus的唯一方法是通过PowerShell或利用Azure SDKREST Management API的自定义代码。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM