Show / Hide Table of Contents

    Class MetricAlertStatusProperties

    An alert status properties.

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

    Constructors

    MetricAlertStatusProperties()

    Initializes a new instance of the MetricAlertStatusProperties class.

    Declaration
    public MetricAlertStatusProperties ();

    MetricAlertStatusProperties(IDictionary<String,String>, String, Nullable<DateTime>)

    Initializes a new instance of the MetricAlertStatusProperties class.

    Declaration
    public MetricAlertStatusProperties (System.Collections.Generic.IDictionary<string,string> dimensions = null, string status = null, Nullable<DateTime> timestamp = null);
    Parameters
    IDictionary<String,String> dimensions

    An object describing the type of the dimensions.

    String status

    status value

    Nullable<DateTime> timestamp

    UTC time when the status was checked.

    Properties

    Dimensions

    Gets or sets an object describing the type of the dimensions.

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

    Status

    Gets or sets status value

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

    Timestamp

    Gets or sets UTC time when the status was checked.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="timestamp")]
    public Nullable<DateTime> Timestamp { get; set; }
    Property Value
    Nullable<DateTime>

    Back to top Azure SDK for Net