我想停止并启动,即使用Powershell在Azure上重新启动逻辑应用程序
我查看了文档,其中显示了以下内容:
Stop-AzureRmLogicAppRun -ResourceGroupName "ResourceGroup11" -Name
"LogicApp03" -RunName "08587489104702792076" -Force
但是我在哪里可以找到Azure上的-RunName?
答案 0 :(得分:0)
运行出现在Runs history
中:
RunName
只是运行标识符。
因此,您可以从azure门户网站获取它,也可以使用Powershell和Get-AzureRmLogicAppRunHistory
(如果使用的是新的az powershell module,则可以使用Get-AzLogicAppRunHistory
来获得运行历史记录。)
要运行所有Running
,可以尝试以下命令:
Get-AzureRmLogicAppRunHistory -ResourceGroupName <rg name> -Name <logicapp name> | Where {$_.Status -eq 'Running'}
如果您要禁用逻辑应用,请使用以下命令:
Set-AzureRmLogicApp -ResourceGroupName <rg name> -Name <logicapp name> -State "Disabled"