Show / Hide Table of Contents

    Class LogicAppReceiver

    A logic app receiver.

    Inheritance
    Object
    LogicAppReceiver
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Monitor.dll
    Syntax
    public class LogicAppReceiver

    Constructors

    LogicAppReceiver()

    Initializes a new instance of the LogicAppReceiver class.

    Declaration
    public LogicAppReceiver ();

    LogicAppReceiver(String, String, String, Boolean)

    Initializes a new instance of the LogicAppReceiver class.

    Declaration
    public LogicAppReceiver (string name, string resourceId, string callbackUrl, bool useCommonAlertSchema);
    Parameters
    String name

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

    String resourceId

    The azure resource id of the logic app receiver.

    String callbackUrl

    The callback url where http request sent to.

    Boolean useCommonAlertSchema

    Indicates whether to use common alert schema.

    Properties

    CallbackUrl

    Gets or sets the callback url where http request sent to.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="callbackUrl")]
    public string CallbackUrl { get; set; }
    Property Value
    String

    Name

    Gets or sets the name of the logic app receiver. Names must be unique across all receivers within an action group.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="name")]
    public string Name { get; set; }
    Property Value
    String

    ResourceId

    Gets or sets the azure resource id of the logic app receiver.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="resourceId")]
    public string ResourceId { get; set; }
    Property Value
    String

    UseCommonAlertSchema

    Gets or sets indicates whether to use common alert schema.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="useCommonAlertSchema")]
    public bool UseCommonAlertSchema { get; set; }
    Property Value
    Boolean

    Methods

    Validate()

    Validate the object.

    Declaration
    public virtual void Validate ();
    Exceptions
    ValidationException

    Thrown if validation fails

    Back to top Azure SDK for Net