Class Baseline
- java.lang.Object
-
- com.microsoft.azure.management.monitor.Baseline
-
public class Baseline extends Object
The baseline values for a single sensitivity value.
-
-
Constructor Summary
Constructors Constructor Description Baseline()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Double>highThresholds()Get the high thresholds of the baseline.List<Double>lowThresholds()Get the low thresholds of the baseline.Sensitivitysensitivity()Get the sensitivity of the baseline.BaselinewithHighThresholds(List<Double> highThresholds)Set the high thresholds of the baseline.BaselinewithLowThresholds(List<Double> lowThresholds)Set the low thresholds of the baseline.BaselinewithSensitivity(Sensitivity sensitivity)Set the sensitivity of the baseline.
-
-
-
Method Detail
-
sensitivity
public Sensitivity sensitivity()
Get the sensitivity of the baseline. Possible values include: 'Low', 'Medium', 'High'.- Returns:
- the sensitivity value
-
withSensitivity
public Baseline withSensitivity(Sensitivity sensitivity)
Set the sensitivity of the baseline. Possible values include: 'Low', 'Medium', 'High'.- Parameters:
sensitivity- the sensitivity value to set- Returns:
- the Baseline object itself.
-
lowThresholds
public List<Double> lowThresholds()
Get the low thresholds of the baseline.- Returns:
- the lowThresholds value
-
withLowThresholds
public Baseline withLowThresholds(List<Double> lowThresholds)
Set the low thresholds of the baseline.- Parameters:
lowThresholds- the lowThresholds value to set- Returns:
- the Baseline object itself.
-
highThresholds
public List<Double> highThresholds()
Get the high thresholds of the baseline.- Returns:
- the highThresholds value
-
-