Show / Hide Table of Contents

    Class Baseline

    The baseline values for a single sensitivity value.

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

    Constructors

    Baseline()

    Initializes a new instance of the Baseline class.

    Declaration
    public Baseline ();

    Baseline(Sensitivity, IList<Nullable<Double>>, IList<Nullable<Double>>)

    Initializes a new instance of the Baseline class.

    Declaration
    public Baseline (Microsoft.Azure.Management.Monitor.Models.Sensitivity sensitivity, System.Collections.Generic.IList<Nullable<double>> lowThresholds, System.Collections.Generic.IList<Nullable<double>> highThresholds);
    Parameters
    Sensitivity sensitivity

    the sensitivity of the baseline. Possible values include: 'Low', 'Medium', 'High'

    IList<Nullable<Double>> lowThresholds

    The low thresholds of the baseline.

    IList<Nullable<Double>> highThresholds

    The high thresholds of the baseline.

    Properties

    HighThresholds

    Gets or sets the high thresholds of the baseline.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="highThresholds")]
    public System.Collections.Generic.IList<Nullable<double>> HighThresholds { get; set; }
    Property Value
    IList<Nullable<Double>>

    LowThresholds

    Gets or sets the low thresholds of the baseline.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="lowThresholds")]
    public System.Collections.Generic.IList<Nullable<double>> LowThresholds { get; set; }
    Property Value
    IList<Nullable<Double>>

    Sensitivity

    Gets or sets the sensitivity of the baseline. Possible values include: 'Low', 'Medium', 'High'

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

    Methods

    Validate()

    Validate the object.

    Declaration
    public virtual void Validate ();
    Exceptions
    ValidationException

    Thrown if validation fails

    Back to top Azure SDK for Net