Class AutoScaleRun
- java.lang.Object
-
- com.microsoft.azure.management.batch.AutoScaleRun
-
public class AutoScaleRun extends Object
The results and errors from an execution of a pool autoscale formula.
-
-
Constructor Summary
Constructors Constructor Description AutoScaleRun()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AutoScaleRunErrorerror()Get the error value.org.joda.time.DateTimeevaluationTime()Get the evaluationTime value.Stringresults()Get the results value.AutoScaleRunwithError(AutoScaleRunError error)Set the error value.AutoScaleRunwithEvaluationTime(org.joda.time.DateTime evaluationTime)Set the evaluationTime value.AutoScaleRunwithResults(String results)Set the results value.
-
-
-
Method Detail
-
evaluationTime
public org.joda.time.DateTime evaluationTime()
Get the evaluationTime value.- Returns:
- the evaluationTime value
-
withEvaluationTime
public AutoScaleRun withEvaluationTime(org.joda.time.DateTime evaluationTime)
Set the evaluationTime value.- Parameters:
evaluationTime- the evaluationTime value to set- Returns:
- the AutoScaleRun object itself.
-
results
public String results()
Get the results value.- Returns:
- the results value
-
withResults
public AutoScaleRun withResults(String results)
Set the results value.- Parameters:
results- the results value to set- Returns:
- the AutoScaleRun object itself.
-
error
public AutoScaleRunError error()
Get the error value.- Returns:
- the error value
-
withError
public AutoScaleRun withError(AutoScaleRunError error)
Set the error value.- Parameters:
error- the error value to set- Returns:
- the AutoScaleRun object itself.
-
-