Show / Hide Table of Contents

    Class MetricAlertStatus

    An alert status.

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

    Constructors

    MetricAlertStatus()

    Initializes a new instance of the MetricAlertStatus class.

    Declaration
    public MetricAlertStatus ();

    MetricAlertStatus(String, String, String, MetricAlertStatusProperties)

    Initializes a new instance of the MetricAlertStatus class.

    Declaration
    public MetricAlertStatus (string name = null, string id = null, string type = null, Microsoft.Azure.Management.Monitor.Models.MetricAlertStatusProperties properties = null);
    Parameters
    String name

    The status name.

    String id

    The alert rule arm id.

    String type

    The extended resource type name.

    MetricAlertStatusProperties properties

    The alert status properties of the metric alert status.

    Properties

    Id

    Gets or sets the alert rule arm id.

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

    Name

    Gets or sets the status name.

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

    Properties

    Gets or sets the alert status properties of the metric alert status.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="properties")]
    public Microsoft.Azure.Management.Monitor.Models.MetricAlertStatusProperties Properties { get; set; }
    Property Value
    MetricAlertStatusProperties

    Type

    Gets or sets the extended resource type name.

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

    Back to top Azure SDK for Net