Class AutoHealCustomAction
- java.lang.Object
-
- com.microsoft.azure.management.appservice.AutoHealCustomAction
-
public class AutoHealCustomAction extends Object
Custom action to be executed when an auto heal rule is triggered.
-
-
Constructor Summary
Constructors Constructor Description AutoHealCustomAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringexe()Get executable to be run.Stringparameters()Get parameters for the executable.AutoHealCustomActionwithExe(String exe)Set executable to be run.AutoHealCustomActionwithParameters(String parameters)Set parameters for the executable.
-
-
-
Method Detail
-
exe
public String exe()
Get executable to be run.- Returns:
- the exe value
-
withExe
public AutoHealCustomAction withExe(String exe)
Set executable to be run.- Parameters:
exe- the exe value to set- Returns:
- the AutoHealCustomAction object itself.
-
parameters
public String parameters()
Get parameters for the executable.- Returns:
- the parameters value
-
withParameters
public AutoHealCustomAction withParameters(String parameters)
Set parameters for the executable.- Parameters:
parameters- the parameters value to set- Returns:
- the AutoHealCustomAction object itself.
-
-