TimeSeriesElement Constructors

Definition

Overloads

TimeSeriesElement()

Initializes a new instance of the TimeSeriesElement class.

TimeSeriesElement(IList<MetadataValue>, IList<MetricValue>)

Initializes a new instance of the TimeSeriesElement class.

TimeSeriesElement()

Initializes a new instance of the TimeSeriesElement class.

public TimeSeriesElement ();
Public Sub New ()

Applies to

TimeSeriesElement(IList<MetadataValue>, IList<MetricValue>)

Initializes a new instance of the TimeSeriesElement class.

public TimeSeriesElement (System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.MetadataValue> metadatavalues = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.MetricValue> data = default);
new Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement : System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.MetadataValue> * System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.MetricValue> -> Microsoft.Azure.Management.Monitor.Models.TimeSeriesElement
Public Sub New (Optional metadatavalues As IList(Of MetadataValue) = Nothing, Optional data As IList(Of MetricValue) = Nothing)

Parameters

metadatavalues
IList<MetadataValue>

the metadata values returned if $filter was specified in the call.

data
IList<MetricValue>

An array of data points representing the metric values. This is only returned if a result type of data is specified.

Applies to