我如何使用Powershell在Azure上停止和启动逻辑应用程序?

时间:2019-09-16 11:19:33

标签: azure azure-logic-apps

我想停止并启动,即使用Powershell在Azure上重新启动逻辑应用程序

我查看了文档,其中显示了以下内容:

Stop-AzureRmLogicAppRun -ResourceGroupName "ResourceGroup11" -Name 
"LogicApp03" -RunName "08587489104702792076" -Force

但是我在哪里可以找到Azure上的-RunName?

1 个答案:

答案 0 :(得分:0)

运行出现在Runs history中:

enter image description here

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"