gpt4 book ai didi

azure - 创建 Azure 服务总线命名空间

转载 作者:行者123 更新时间:2023-12-03 05:09:07 24 4
gpt4 key购买 nike

是否可以以编程方式创建 ServiceBus 命名空间、创建身份、分配发送/监听权限等?

我找到了following SO question与两年前相比,但我怀疑情况同时发生了变化,答案可能会有所不同。

最佳答案

以下是使用 Azure PowerShell cmdlet 创建它的方法(例如,在美国东部):

New-AzureSBNamespace -Name "[YOUR SB NAMESPACE NAME]" -Location "East US"

REST API 始终存在。我没有将其用于服务总线,否则我会给您一个示例。相反,这里是它的链接供您引用。 :)

http://msdn.microsoft.com/en-us/library/azure/jj856303.aspx

如果您想要 C# 体验,还可以使用一个客户端库(预览版)。

enter image description here

以下是使用服务总线管理库的示例代码:

        // Get this from the portal
var subscriptionId = "5f830156-0000-0000-0000-000000000000";
// Get this from your .publishsettings file
var managementCert = "MIIKFAI...really long string of base64...==";

var creds = new CertificateCloudCredentials(
subscriptionId,
new X509Certificate2(Convert.FromBase64String(managementCert)));

ServiceBusManagementClient sbMgmtClient = new ServiceBusManagementClient(creds);
sbMgmtClient.Namespaces.Create("[YOUR SB NAMESPACE NAME]", "East US");

关于azure - 创建 Azure 服务总线命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26186287/

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