如何获取逻辑应用程序的工作流定义为JSON?
我可以使用New-AzLogicApp命令从JSON定义文件创建新的Logic App
但是我看不到如何逆转该过程,即获取现有Logic App的JSON定义。
我尝试过Get-AzLogicApp,它返回了一个Workflow对象。
但是我在最后一步受阻,即从工作流回到实际的JSON文件
答案 0 :(得分:0)
您可以使用REST API
来获取详细信息。
REST Api Documentation
或者您可以尝试使用Get-AzLogicApp | ConvertFrom-Json | ConvertTo-Json
看看是否有帮助
答案 1 :(得分:0)
如果要获取逻辑应用程序的定义,请尝试以下命令。
$logicapp = Get-AzResource -ResourceGroupName <ResourceGroupName> -ResourceType Microsoft.Logic/workflows -ResourceName "<logic app name>"
$logicapp.properties.definition | ConvertTo-Json
如果要以.json
文件的形式获取它,只需更改第二行,如下所示。
$logicapp.properties.definition | ConvertTo-Json | Out-File "C:\Users\joyw\Desktop\logic.json"
更新:
您可以将ConvertTo-Json
的{{1}}的{{3}}参数指定为3
,如果要在JSON表示中包含更多级别的包含对象,也可以使用其他值来指定它。
-深度
指定JSON表示形式中包含多少级所包含的对象。默认值为2。
$logicapp.properties.definition | ConvertTo-Json -Depth 3
答案 2 :(得分:0)
我已经在客户端中深入研究了一个项目,您需要这样做:
1 )Get-AzLogicApp
$lapp.Definition.ToString()-> this is the entire definition of the logicapp
2) Save the definition to a file
3) Use New-AzLogicApp or Set-AzLogicApp with -DefinitionFilePath pointing to that file
$a= New-AzLogicApp -ResourceGroupName $rg -name $name1 -location $loc -DefinitionFilePath $fileName1 -ParameterFilePath $parm1
$a.Parameters.Count
*for Parameters i use this content in a file
{
"$connections": {
"value": {
"office365": {
"connectionId": "/subscriptions/SUBS-DEPLOY/resourceGroups/RG-DEPLOY/providers/Microsoft.Web/connections/office365",
"connectionName": "office365",
"id": "/subscriptions/SUBS-DEPLOY/providers/Microsoft.Web/locations/westeurope/managedApis/office365"
},
"sharepointonline": {
"connectionId": "/subscriptions/SUBS-DEPLOY/resourceGroups/RG-DEPLOY/providers/Microsoft.Web/connections/sharepointonline",
"connectionName": "sharepointonline",
"id": "/subscriptions/SUBS-DEPLOY/providers/Microsoft.Web/locations/westeurope/managedApis/sharepointonline"
}
}
}
}
replace SUBS-DEPLOY with the subscription id and RG-DEPLOY with resource group name and all good.
Anything just buzz: stationsolutions_at_gmail.com
Hope it helps
Here's the code ..
function Get-LogicApp($resourceGroupName ,$location,$name)
{
Write-Host " Get LogicApp Definition $name"
$lapp = Get-AzLogicApp -ResourceGroupName $resourceGroupName -Name $name
$o= $lapp.Definition.ToString()
$fileName = "..\logicapps\" + $name + ".logicapp.json"
$o | Out-File -FilePath $fileName
$parms = "..\logicapps\templates\parms.json"
$fileName = "..\logicapps\" + $name + ".logicapp.parms.json"
Copy-Item -Path $parms $fileName
Write-Host " LogicApp Definition $resourceGroupName > $fileName"
}