MetricData Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MetricData() |
Initializes a new instance of the MetricData class. |
MetricData(Nullable<DateTime>, Nullable<Double>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, Nullable<Double>) |
Initializes a new instance of the MetricData class. |
MetricData()
Initializes a new instance of the MetricData class.
public MetricData ();
Public Sub New ()
Applies to
MetricData(Nullable<DateTime>, Nullable<Double>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, Nullable<Double>)
Initializes a new instance of the MetricData class.
public MetricData (DateTime? timeStamp = default, double? sum = default, int? count = default, double? average = default, double? minimum = default, double? maximum = default);
new Microsoft.Azure.Management.StorSimple8000Series.Models.MetricData : Nullable<DateTime> * Nullable<double> * Nullable<int> * Nullable<double> * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.StorSimple8000Series.Models.MetricData
Public Sub New (Optional timeStamp As Nullable(Of DateTime) = Nothing, Optional sum As Nullable(Of Double) = Nothing, Optional count As Nullable(Of Integer) = Nothing, Optional average As Nullable(Of Double) = Nothing, Optional minimum As Nullable(Of Double) = Nothing, Optional maximum As Nullable(Of Double) = Nothing)
Parameters
- timeStamp
- System.Nullable<System.DateTime>
The time stamp of the metric data.
- sum
- System.Nullable<System.Double>
The sum of all samples at the time stamp.
- count
- System.Nullable<System.Int32>
The count of all samples at the time stamp.
- average
- System.Nullable<System.Double>
The average of all samples at the time stamp.
- minimum
- System.Nullable<System.Double>
The minimum of all samples at the time stamp.
- maximum
- System.Nullable<System.Double>
The maximum of all samples at the time stamp.