Test-ServiceBusName / Test-EventHub / Function-App

时间:2018-02-22 12:37:49

标签: powershell azure azure-powershell powershell-v5.0 cmdlets

您好我有一个powershell脚本,可以将一些工件部署到azure。一些工件是

  • functionapp
  • functionappservice
  • eventhubnamespace / eventhubname
  • storageaccount 我使用以下参数来验证存储帐户和eventhub命名空间是否可用。

    Test-AzureRmEventHubName
    Get-AzureRmStorageAccountNameAvailability 
    

    我找不到任何其他cmd-lets为服务总线/ servicebus队列等其他资源做同样的事情。 的由于

1 个答案:

答案 0 :(得分:1)

我可以建议一个解决存在问题的工作

#replace the below condition with get command for the specific resource that you want to check
if(Get-AzureRmEventHub -ResourceGroupName Rgroup -Namespace testnamespace -Name testname -ea SilentlyContinue){
"not found"
}
else{
"found"
}

但是如果像Test-AzureServiceBusName这样的cmdlet可用,那么肯定会更好