作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
能够使用以下代码创建队列,
$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 队列的共享访问策略。
能够从管理门户添加它。
还尝试了以下 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/
我是一名优秀的程序员,十分优秀!