Class AzureFunctionReceiver
- java.lang.Object
-
- com.microsoft.azure.management.monitor.AzureFunctionReceiver
-
public class AzureFunctionReceiver extends Object
An azure function receiver.
-
-
Constructor Summary
Constructors Constructor Description AzureFunctionReceiver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringfunctionAppResourceId()Get the azure resource id of the function app.StringfunctionName()Get the function name in the function app.StringhttpTriggerUrl()Get the http trigger url where http request sent to.Stringname()Get the name of the azure function receiver.AzureFunctionReceiverwithFunctionAppResourceId(String functionAppResourceId)Set the azure resource id of the function app.AzureFunctionReceiverwithFunctionName(String functionName)Set the function name in the function app.AzureFunctionReceiverwithHttpTriggerUrl(String httpTriggerUrl)Set the http trigger url where http request sent to.AzureFunctionReceiverwithName(String name)Set the name of the azure function receiver.
-
-
-
Method Detail
-
name
public String name()
Get the name of the azure function receiver. Names must be unique across all receivers within an action group.- Returns:
- the name value
-
withName
public AzureFunctionReceiver withName(String name)
Set the name of the azure function receiver. Names must be unique across all receivers within an action group.- Parameters:
name- the name value to set- Returns:
- the AzureFunctionReceiver object itself.
-
functionAppResourceId
public String functionAppResourceId()
Get the azure resource id of the function app.- Returns:
- the functionAppResourceId value
-
withFunctionAppResourceId
public AzureFunctionReceiver withFunctionAppResourceId(String functionAppResourceId)
Set the azure resource id of the function app.- Parameters:
functionAppResourceId- the functionAppResourceId value to set- Returns:
- the AzureFunctionReceiver object itself.
-
functionName
public String functionName()
Get the function name in the function app.- Returns:
- the functionName value
-
withFunctionName
public AzureFunctionReceiver withFunctionName(String functionName)
Set the function name in the function app.- Parameters:
functionName- the functionName value to set- Returns:
- the AzureFunctionReceiver object itself.
-
httpTriggerUrl
public String httpTriggerUrl()
Get the http trigger url where http request sent to.- Returns:
- the httpTriggerUrl value
-
withHttpTriggerUrl
public AzureFunctionReceiver withHttpTriggerUrl(String httpTriggerUrl)
Set the http trigger url where http request sent to.- Parameters:
httpTriggerUrl- the httpTriggerUrl value to set- Returns:
- the AzureFunctionReceiver object itself.
-
-