Class TimeSeriesInformation
- java.lang.Object
-
- com.microsoft.azure.management.monitor.TimeSeriesInformation
-
public class TimeSeriesInformation extends Object
The time series info needed for calculating the baseline.
-
-
Constructor Summary
Constructors Constructor Description TimeSeriesInformation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>sensitivities()Get the list of sensitivities for calculating the baseline.List<org.joda.time.DateTime>timestamps()Get the array of timestamps of the baselines.List<Double>values()Get the metric values to calculate the baseline.TimeSeriesInformationwithSensitivities(List<String> sensitivities)Set the list of sensitivities for calculating the baseline.TimeSeriesInformationwithTimestamps(List<org.joda.time.DateTime> timestamps)Set the array of timestamps of the baselines.TimeSeriesInformationwithValues(List<Double> values)Set the metric values to calculate the baseline.
-
-
-
Method Detail
-
sensitivities
public List<String> sensitivities()
Get the list of sensitivities for calculating the baseline.- Returns:
- the sensitivities value
-
withSensitivities
public TimeSeriesInformation withSensitivities(List<String> sensitivities)
Set the list of sensitivities for calculating the baseline.- Parameters:
sensitivities- the sensitivities value to set- Returns:
- the TimeSeriesInformation object itself.
-
values
public List<Double> values()
Get the metric values to calculate the baseline.- Returns:
- the values value
-
withValues
public TimeSeriesInformation withValues(List<Double> values)
Set the metric values to calculate the baseline.- Parameters:
values- the values value to set- Returns:
- the TimeSeriesInformation object itself.
-
timestamps
public List<org.joda.time.DateTime> timestamps()
Get the array of timestamps of the baselines.- Returns:
- the timestamps value
-
withTimestamps
public TimeSeriesInformation withTimestamps(List<org.joda.time.DateTime> timestamps)
Set the array of timestamps of the baselines.- Parameters:
timestamps- the timestamps value to set- Returns:
- the TimeSeriesInformation object itself.
-
-