以前,Powershell模块AzureRm.EventHub
有Get-AzureRmEventHubNamespaceKey
,很容易获得密钥。现在它从powershell v5开始被删除。现在我如何获得EventHubNameSpace SAS Key。这是我在我的机器上找到的powershell获取cmdlet的列表。
Get-AzureRmEventHub
Get-AzureRmEventHubAuthorizationRule
Get-AzureRmEventHubConsumerGroup
Get-AzureRmEventHubGeoDRConfiguration
Get-AzureRmEventHubKey
Get-AzureRmEventHubNamespace
Get-AzureRmIotHubEventHubConsumerGroup
由于
答案 0 :(得分:2)
您可以使用Invoke-AzureRmResourceAction
来执行此操作:
Invoke-AzureRmResourceAction -ResourceGroupName rgName -ResourceType Microsoft.EventHub/namespaces/AuthorizationRules -ResourceName eventhubName/RootManageSharedAccessKey -Action listKeys -ApiVersion 2015-08-01 -Force