Class MetricData
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.MetricData
-
public abstract class MetricData extends Object
-
-
Constructor Summary
Constructors Constructor Description MetricData()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Double
average()
The sum of all of the values in the time range.abstract Long
count()
The number of samples in the time range.static MetricData
create(Date timeStamp, Double total, Double average, Double minimum, Double maximum, Long count)
abstract Double
maximum()
The greatest value in the time range.abstract Double
minimum()
The least value in the time range.abstract Date
timeStamp()
The timestamp for the metric value in ISO 8601 format.abstract Double
total()
The average value in the time range
-
-
-
Method Detail
-
timeStamp
public abstract Date timeStamp()
The timestamp for the metric value in ISO 8601 format.
-
-