Class TimeSeriesInformation
The time series info needed for calculating the baseline.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class TimeSeriesInformation
Constructors
TimeSeriesInformation()
Initializes a new instance of the TimeSeriesInformation class.
Declaration
public TimeSeriesInformation ();
TimeSeriesInformation(IList<String>, IList<Nullable<Double>>, IList<Nullable<DateTime>>)
Initializes a new instance of the TimeSeriesInformation class.
Declaration
public TimeSeriesInformation (System.Collections.Generic.IList<string> sensitivities, System.Collections.Generic.IList<Nullable<double>> values, System.Collections.Generic.IList<Nullable<DateTime>> timestamps = null);
Parameters
|
IList<String>
sensitivities
the list of sensitivities for calculating the baseline. |
|
IList<Nullable<Double>>
values
The metric values to calculate the baseline. |
|
IList<Nullable<DateTime>>
timestamps
the array of timestamps of the baselines. |
Properties
Sensitivities
Gets or sets the list of sensitivities for calculating the baseline.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="sensitivities")]
public System.Collections.Generic.IList<string> Sensitivities { get; set; }
Property Value
|
IList<String>
|
Timestamps
Gets or sets the array of timestamps of the baselines.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="timestamps")]
public System.Collections.Generic.IList<Nullable<DateTime>> Timestamps { get; set; }
Property Value
|
IList<Nullable<DateTime>>
|
Values
Gets or sets the metric values to calculate the baseline.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="values")]
public System.Collections.Generic.IList<Nullable<double>> Values { get; set; }
Property Value
|
IList<Nullable<Double>>
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
|
ValidationException
Thrown if validation fails |