从 azure 逻辑应用标准工作流程中提取 swagger 定义

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

有谁知道从具有 htpp 触发器的逻辑应用程序标准工作流程中提取 swagger(开放 api)定义的方法吗?

azure azure-logic-apps azure-logic-app-standard
1个回答
0
投票

从 azure 逻辑应用标准工作流程中提取 swagger 定义

您可以使用 Get-AzLogic 从消耗计划中获取资源类型为

Microsoft.Logic/workflows/name
的指定:

(Get-AzLogicApp -ResourceGroupName "rgname" -Name "logiappanme").Definition.ToString()

enter image description here

对于标准计划,资源类型为

Microsoft.Web/sites
。所以据我所知,你无法获取定义 json,我确实同意@Thomas,但你可以使用以下方式获取站点属性:

az logicapp show --resource-group "rithwik" --name "rit65y"

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.