ApplicationGateway.UpdateStages.WithInstanceCount Interface

public static interface ApplicationGateway.UpdateStages.WithInstanceCount

The stage of an application gateway update allowing to specify the capacity (number of instances) of the application gateway.

Method Summary

Modifier and Type Method and Description
abstract Update withAutoScale(int minCapacity, int maxCapacity)

Specifies the min and max auto scale bound.

abstract Update withInstanceCount(int instanceCount)

Specifies the capacity (number of instances) for the application gateway.

Method Details

withAutoScale

public abstract 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

withInstanceCount

public abstract 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

Applies to