Sdílet prostřednictvím


ApplicationGatewaySku Constructors

Definition

Overloads

ApplicationGatewaySku()

Initializes a new instance of the ApplicationGatewaySku class.

ApplicationGatewaySku(String, String, 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(String, String, Nullable<Int32>)

Initializes a new instance of the ApplicationGatewaySku class.

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

Parameters

name
String

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

tier
String

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