ApplicationGatewayFirewallRule Constructors

Definition

Overloads

ApplicationGatewayFirewallRule()

Initializes a new instance of the ApplicationGatewayFirewallRule class.

ApplicationGatewayFirewallRule(Int32, String, String, String, String)

Initializes a new instance of the ApplicationGatewayFirewallRule class.

ApplicationGatewayFirewallRule()

Initializes a new instance of the ApplicationGatewayFirewallRule class.

public ApplicationGatewayFirewallRule ();
Public Sub New ()

Applies to

ApplicationGatewayFirewallRule(Int32, String, String, String, String)

Initializes a new instance of the ApplicationGatewayFirewallRule class.

public ApplicationGatewayFirewallRule (int ruleId, string ruleIdString = default, string state = default, string action = default, string description = default);
new Microsoft.Azure.Management.Network.Models.ApplicationGatewayFirewallRule : int * string * string * string * string -> Microsoft.Azure.Management.Network.Models.ApplicationGatewayFirewallRule
Public Sub New (ruleId As Integer, Optional ruleIdString As String = Nothing, Optional state As String = Nothing, Optional action As String = Nothing, Optional description As String = Nothing)

Parameters

ruleId
Int32

The identifier of the web application firewall rule.

ruleIdString
String

The string representation of the web application firewall rule identifier.

state
String

The string representation of the web application firewall rule state. Possible values include: 'Enabled', 'Disabled'

action
String

The string representation of the web application firewall rule action. Possible values include: 'None', 'AnomalyScoring', 'Allow', 'Block', 'Log'

description
String

The description of the web application firewall rule.

Applies to