Show / Hide Table of Contents

    Class WebhookNotification

    Webhook notification of an autoscale event.

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

    Constructors

    WebhookNotification()

    Initializes a new instance of the WebhookNotification class.

    Declaration
    public WebhookNotification ();

    WebhookNotification(String, IDictionary<String,String>)

    Initializes a new instance of the WebhookNotification class.

    Declaration
    public WebhookNotification (string serviceUri = null, System.Collections.Generic.IDictionary<string,string> properties = null);
    Parameters
    String serviceUri

    the service address to receive the notification.

    IDictionary<String,String> properties

    a property bag of settings. This value can be empty.

    Properties

    Properties

    Gets or sets a property bag of settings. This value can be empty.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties")]
    public System.Collections.Generic.IDictionary<string,string> Properties { get; set; }
    Property Value
    IDictionary<String,String>

    ServiceUri

    Gets or sets the service address to receive the notification.

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

    Back to top Azure SDK for Net