本文介绍了使用PowerShell v5将高级服务总线的消息传递单元设置为4的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想通过PowerShell 5将高级服务总线的消息传递单元设置为4.使用以下命令:
I want to set the messaging unit of premium service bus to 4 via PowerShell 5.Using following command:
New-AzureRmServiceBusNamespace -ResourceGroup Default-ServiceBus-NorthEurope `
-Location NorthEurope -NamespaceName #{PremiumServiceBus} -SkuName "Premium" `
-Capacity 4
它给出的容量是无法识别的变量.
It gives capacity is unrecognized variable.
该怎么办?
推荐答案
Capacity
参数未由Powershlell cmdlet定义(请参阅文档).可以使用 REST API .看起来PS库和MSFT需要解决的REST API之间存在脱节.
Capacity
parameter is not defined by the Powershlell cmdlet (see documentation). This is possible using REST API. Looks like a disconnect between the PS library and REST API that MSFT would need to address.
我已经提出了一个问题,以便MSFT小组可以解决该问题
I've raised an issue so that MSFT team can address it.
这篇关于使用PowerShell v5将高级服务总线的消息传递单元设置为4的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!