Class TimeSeriesElement
A time series result type. The discriminator value is always TimeSeries in this case.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class TimeSeriesElement
Constructors
TimeSeriesElement()
Initializes a new instance of the TimeSeriesElement class.
Declaration
public TimeSeriesElement ();
TimeSeriesElement(IList<MetadataValue>, IList<MetricValue>)
Initializes a new instance of the TimeSeriesElement class.
Declaration
public TimeSeriesElement (System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.MetadataValue> metadatavalues = null, System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.MetricValue> data = null);
Parameters
|
IList<MetadataValue>
metadatavalues
the metadata values returned if $filter was specified in the call. |
|
IList<MetricValue>
data
An array of data points representing the metric values. This is only returned if a result type of data is specified. |
Properties
Data
Gets or sets an array of data points representing the metric values. This is only returned if a result type of data is specified.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="data")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.MetricValue> Data { get; set; }
Property Value
|
IList<MetricValue>
|
Metadatavalues
Gets or sets the metadata values returned if $filter was specified in the call.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="metadatavalues")]
public System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.MetadataValue> Metadatavalues { get; set; }
Property Value
|
IList<MetadataValue>
|