ApplicationGatewaySku Class

  • java.lang.Object
    • com.microsoft.azure.management.network.ApplicationGatewaySku

public class ApplicationGatewaySku

SKU of an application gateway.

Constructor Summary

Constructor Description
ApplicationGatewaySku()

Method Summary

Modifier and Type Method and Description
java.lang.Integer capacity()

Get capacity (instance count) of an application gateway.

ApplicationGatewaySkuName name()

Get name of an application gateway SKU.

ApplicationGatewayTier tier()

Get tier of an application gateway.

ApplicationGatewaySku withCapacity(Integer capacity)

Set capacity (instance count) of an application gateway.

ApplicationGatewaySku withName(ApplicationGatewaySkuName name)

Set name of an application gateway SKU.

ApplicationGatewaySku withTier(ApplicationGatewayTier tier)

Set tier of an application gateway.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

ApplicationGatewaySku

public ApplicationGatewaySku()

Method Details

capacity

public Integer capacity()

Get capacity (instance count) of an application gateway.

Returns:

the capacity value

name

public ApplicationGatewaySkuName name()

Get name of an application gateway SKU. Possible values include: 'Standard_Small', 'Standard_Medium', 'Standard_Large', 'WAF_Medium', 'WAF_Large', 'Standard_v2', 'WAF_v2'.

Returns:

the name value

tier

public ApplicationGatewayTier tier()

Get tier of an application gateway. Possible values include: 'Standard', 'WAF', 'Standard_v2', 'WAF_v2'.

Returns:

the tier value

withCapacity

public ApplicationGatewaySku withCapacity(Integer capacity)

Set capacity (instance count) of an application gateway.

Parameters:

capacity - the capacity value to set

Returns:

the ApplicationGatewaySku object itself.

withName

public ApplicationGatewaySku withName(ApplicationGatewaySkuName name)

Set name of an application gateway SKU. Possible values include: 'Standard_Small', 'Standard_Medium', 'Standard_Large', 'WAF_Medium', 'WAF_Large', 'Standard_v2', 'WAF_v2'.

Parameters:

name - the name value to set

Returns:

the ApplicationGatewaySku object itself.

withTier

public ApplicationGatewaySku withTier(ApplicationGatewayTier tier)

Set tier of an application gateway. Possible values include: 'Standard', 'WAF', 'Standard_v2', 'WAF_v2'.

Parameters:

tier - the tier value to set

Returns:

the ApplicationGatewaySku object itself.

Applies to