Show / Hide Table of Contents

    Class MetricAlertAction

    An alert action.

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

    Constructors

    MetricAlertAction()

    Initializes a new instance of the MetricAlertAction class.

    Declaration
    public MetricAlertAction ();

    MetricAlertAction(String, IDictionary<String,String>)

    Initializes a new instance of the MetricAlertAction class.

    Declaration
    public MetricAlertAction (string actionGroupId = null, System.Collections.Generic.IDictionary<string,string> webhookProperties = null);
    Parameters
    String actionGroupId

    the id of the action group to use.

    IDictionary<String,String> webhookProperties

    The properties of a webhook object.

    Properties

    ActionGroupId

    Gets or sets the id of the action group to use.

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

    WebhookProperties

    Gets or sets the properties of a webhook object.

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

    Back to top Azure SDK for Net