Class ApplicationGatewayAutoscaleBounds
- java.lang.Object
-
- com.microsoft.azure.management.network.ApplicationGatewayAutoscaleBounds
-
public class ApplicationGatewayAutoscaleBounds extends Object
Application Gateway autoscale bounds on number of Application Gateway instance.
-
-
Constructor Summary
Constructors Constructor Description ApplicationGatewayAutoscaleBounds()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intmax()Get the max value.intmin()Get the min value.ApplicationGatewayAutoscaleBoundswithMax(int max)Set the max value.ApplicationGatewayAutoscaleBoundswithMin(int min)Set the min value.
-
-
-
Method Detail
-
min
public int min()
Get the min value.- Returns:
- the min value
-
withMin
public ApplicationGatewayAutoscaleBounds withMin(int min)
Set the min value.- Parameters:
min- the min value to set- Returns:
- the ApplicationGatewayAutoscaleBounds object itself.
-
max
public int max()
Get the max value.- Returns:
- the max value
-
withMax
public ApplicationGatewayAutoscaleBounds withMax(int max)
Set the max value.- Parameters:
max- the max value to set- Returns:
- the ApplicationGatewayAutoscaleBounds object itself.
-
-