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

how to get the list of azure logic apps present in a particular azure resource group using azure powershell commands

假设我在 Azure 资源组 X 中创建了逻辑应用程序 1、逻辑应用程序 2、逻辑应用程序 3 等。然后使用 Azure Powershell 命令,我想获取此逻辑应用程序列表 'X' Azure 资源组

这个 PowerShell 核心命令应该可以工作;将 "myresourcegroup" 替换为您要搜索的资源组的名称。在 Azure Cloud Shell 中,您可以通过 运行 pwsh.

访问 PowerShell Core
Find-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupNameContains "myresourcegroup"

你应该试试

Get-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupName resourcegroupname

我这边很好用。