gpt4 book ai didi

azure - Powershell : How to create/Manage Shared Access Policy for a Service Bus queue

转载 作者:行者123 更新时间:2023-12-03 00:35:20 27 4
gpt4 key购买 nike

能够使用以下代码创建队列,

$queuename = "samplequeue"
$CurrentNamespace = Get-AzureSBNamespace -Name "mynamespace"
$NamespaceManager = [Microsoft.ServiceBus.NamespaceManager]::CreateFromConnectionString($CurrentNamespace.ConnectionString);
$QueueDescription = New-Object -TypeName Microsoft.ServiceBus.Messaging.QueueDescription -ArgumentList $queuename
$NamespaceManager.CreateQueue($QueueDescription);

我正在寻找 powershell cmdlet 来创建/管理 ServiceBus 队列的共享访问策略。

能够从管理门户添加它。

enter image description here

还尝试了以下 cmdlet,

New-AzureSBAuthorizationRule -Name "readwritepolicy" -Namespace "mynamespace"-Permission $("Send") -EntityName "notsure" -EntityType "Queue"

这给了我以下错误,

New-AzureSBAuthorizationRule : Object reference not set to an instance of an object.
At line:1 char:1
+ New-AzureSBAuthorizationRule -Name "readwritepolicy" -Namespace "mynamespace" ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [New-AzureSBAuthorizationRule], NullReferenceException
+ FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceBus.NewAzureSBAuthorizationRuleCommand

我做错了什么吗?实体名称是什么?

最佳答案

我知道这有点旧,但它出现在我的搜索中并使我成功,所以我认为值得分享

我通过添加以下答案来使其工作,如图所示,因为我在使用 new-AzureSBAuthorizationRule cmdlet 时遇到错误

$NamespaceManager.UpdateTopic($topic)

但是我正在添加一个主题,所以在这个例子中它是

$NamespaceManager.UpdateQueue($queuename)

关于azure - Powershell : How to create/Manage Shared Access Policy for a Service Bus queue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31294807/

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