如何使用azure powershell命令获取特定azure资源组中存在的azure逻辑应用程序列表

如何使用azure powershell命令获取特定azure资源组中存在的azure逻辑应用程序列表,azure,powershell,azure-resource-manager,azure-powershell,azure-logic-apps,Azure,Powershell,Azure Resource Manager,Azure Powershell,Azure Logic Apps,假设我在Azure资源组X中创建了逻辑应用程序1、逻辑应用程序2、逻辑应用程序3等。然后使用Azure Powershell命令,我希望获得“X”Azure资源组下存在的逻辑应用程序列表此Powershell核心命令应能工作;将“myresourcegroup”替换为要搜索的资源组的名称。在Azure Cloud Shell中,您可以通过运行pwsh来访问PowerShell核心 Find-AzureRmResource -ResourceType "Microsoft.Logic/workfl

假设我在Azure资源组X中创建了逻辑应用程序1、逻辑应用程序2、逻辑应用程序3等。然后使用Azure Powershell命令,我希望获得“X”Azure资源组下存在的逻辑应用程序列表

此Powershell核心命令应能工作;将“myresourcegroup”替换为要搜索的资源组的名称。在Azure Cloud Shell中,您可以通过运行
pwsh
来访问PowerShell核心

Find-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupNameContains "myresourcegroup"

此PowerShell核心命令应该可以工作;将“myresourcegroup”替换为要搜索的资源组的名称。在Azure Cloud Shell中,您可以通过运行
pwsh
来访问PowerShell核心

Find-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupNameContains "myresourcegroup"
你应该试试

Get-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupName resourcegroupname
对我来说效果很好

你应该试试

Get-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupName resourcegroupname
对我来说效果很好


这不会产生任何结果。这不会产生任何结果。