ApplicationGatewaySku Constructors

Definition

Overloads

ApplicationGatewaySku()

Initializes a new instance of the ApplicationGatewaySku class.

ApplicationGatewaySku(ApplicationGatewaySkuName, ApplicationGatewayTier, Nullable<Int32>)

Initializes a new instance of the ApplicationGatewaySku class.

ApplicationGatewaySku()

Initializes a new instance of the ApplicationGatewaySku class.

public ApplicationGatewaySku ();
Public Sub New ()

Applies to

ApplicationGatewaySku(ApplicationGatewaySkuName, ApplicationGatewayTier, Nullable<Int32>)

Initializes a new instance of the ApplicationGatewaySku class.

public ApplicationGatewaySku (Microsoft.Azure.Management.Network.Fluent.Models.ApplicationGatewaySkuName name = default, Microsoft.Azure.Management.Network.Fluent.Models.ApplicationGatewayTier tier = default, int? capacity = default);
new Microsoft.Azure.Management.Network.Fluent.Models.ApplicationGatewaySku : Microsoft.Azure.Management.Network.Fluent.Models.ApplicationGatewaySkuName * Microsoft.Azure.Management.Network.Fluent.Models.ApplicationGatewayTier * Nullable<int> -> Microsoft.Azure.Management.Network.Fluent.Models.ApplicationGatewaySku
Public Sub New (Optional name As ApplicationGatewaySkuName = Nothing, Optional tier As ApplicationGatewayTier = Nothing, Optional capacity As Nullable(Of Integer) = Nothing)

Parameters

name
ApplicationGatewaySkuName

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

tier
ApplicationGatewayTier

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

capacity
Nullable<Int32>

Capacity (instance count) of an application gateway.

Applies to