Share via


AzureFunctionReceiver Constructors

Definition

Overloads

AzureFunctionReceiver()

Initializes a new instance of the AzureFunctionReceiver class.

AzureFunctionReceiver(String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the AzureFunctionReceiver class.

AzureFunctionReceiver()

Initializes a new instance of the AzureFunctionReceiver class.

public AzureFunctionReceiver ();
Public Sub New ()

Applies to

AzureFunctionReceiver(String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the AzureFunctionReceiver class.

public AzureFunctionReceiver (string name, string functionAppResourceId, string functionName, string httpTriggerUrl, bool? useCommonAlertSchema = default);
new Microsoft.Azure.Management.Monitor.Models.AzureFunctionReceiver : string * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.Monitor.Models.AzureFunctionReceiver
Public Sub New (name As String, functionAppResourceId As String, functionName As String, httpTriggerUrl As String, Optional useCommonAlertSchema As Nullable(Of Boolean) = Nothing)

Parameters

name
String

The name of the azure function receiver. Names must be unique across all receivers within an action group.

functionAppResourceId
String

The azure resource id of the function app.

functionName
String

The function name in the function app.

httpTriggerUrl
String

The http trigger url where http request sent to.

useCommonAlertSchema
Nullable<Boolean>

Indicates whether to use common alert schema.

Applies to