Interface ApplicationGateway.UpdateStages.WithInstanceCount
-
- All Known Subinterfaces:
ApplicationGateway.Update
- Enclosing interface:
- ApplicationGateway.UpdateStages
public static interface ApplicationGateway.UpdateStages.WithInstanceCountThe stage of an application gateway update allowing to specify the capacity (number of instances) of the application gateway.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGateway.UpdatewithAutoScale(int minCapacity, int maxCapacity)Specifies the min and max auto scale bound.ApplicationGateway.UpdatewithInstanceCount(int instanceCount)Specifies the capacity (number of instances) for the application gateway.
-
-
-
Method Detail
-
withInstanceCount
ApplicationGateway.Update withInstanceCount(int instanceCount)
Specifies the capacity (number of instances) for the application gateway.- Parameters:
instanceCount- the capacity as a number between 1 and 10 but also based on the limits imposed by the selected applicatiob gateway size- Returns:
- the next stage of the update
-
withAutoScale
ApplicationGateway.Update withAutoScale(int minCapacity, int maxCapacity)
Specifies the min and max auto scale bound.- Parameters:
minCapacity- lower bound on number of Application Gateway capacity.maxCapacity- upper bound on number of Application Gateway capacity.- Returns:
- the next stage of the update
-
-