有没有办法用powershell访问logic app standard single-tenant parameters.json的内容?

问题描述 投票:0回答:0

我正在尝试找到一种方法来获取逻辑应用程序标准单租户使用的 parameters.json,但我找不到任何方法。

我知道命令

Get-AzLogicApp
存在,但它仅适用于逻辑应用程序消费多租户。

我发现可以与标准一起使用的命令是

$resource = Get-AzResource `
    -ResourceGroupName "resourceGroupName" `
    -ResourceType 'Microsoft.Web/sites' `
    -Name "logicAppName"

返回的对象没有给出任何与 parameters.json 相关的属性。 有没有其他方法可以通过 powershell 访问它?

powershell azure-logic-apps azure-powershell azure-logic-app-standard
© www.soinside.com 2019 - 2024. All rights reserved.