Class AutoScaleRunError
- java.lang.Object
-
- com.microsoft.azure.management.batch.AutoScaleRunError
-
public class AutoScaleRunError extends Object
An error that occurred when autoscaling a pool.
-
-
Constructor Summary
Constructors Constructor Description AutoScaleRunError()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringcode()Get the code value.List<AutoScaleRunError>details()Get the details value.Stringmessage()Get the message value.AutoScaleRunErrorwithCode(String code)Set the code value.AutoScaleRunErrorwithDetails(List<AutoScaleRunError> details)Set the details value.AutoScaleRunErrorwithMessage(String message)Set the message value.
-
-
-
Method Detail
-
code
public String code()
Get the code value.- Returns:
- the code value
-
withCode
public AutoScaleRunError withCode(String code)
Set the code value.- Parameters:
code- the code value to set- Returns:
- the AutoScaleRunError object itself.
-
message
public String message()
Get the message value.- Returns:
- the message value
-
withMessage
public AutoScaleRunError withMessage(String message)
Set the message value.- Parameters:
message- the message value to set- Returns:
- the AutoScaleRunError object itself.
-
details
public List<AutoScaleRunError> details()
Get the details value.- Returns:
- the details value
-
withDetails
public AutoScaleRunError withDetails(List<AutoScaleRunError> details)
Set the details value.- Parameters:
details- the details value to set- Returns:
- the AutoScaleRunError object itself.
-
-