Class SingleBaseline
The baseline values for a single sensitivity value.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class SingleBaseline
Constructors
SingleBaseline()
Initializes a new instance of the SingleBaseline class.
Declaration
public SingleBaseline ();
SingleBaseline(String, IList<Nullable<Double>>, IList<Nullable<Double>>)
Initializes a new instance of the SingleBaseline class.
Declaration
public SingleBaseline (string sensitivity, System.Collections.Generic.IList<Nullable<double>> lowThresholds, System.Collections.Generic.IList<Nullable<double>> highThresholds);
Parameters
|
String
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 string Sensitivity { get; set; }
Property Value
|
String
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
|
ValidationException
Thrown if validation fails |