Share via


FirewallRule Constructors

Definition

Overloads

FirewallRule()

Initializes a new instance of the FirewallRule class.

FirewallRule(String, String, String, String, String)

Initializes a new instance of the FirewallRule class.

FirewallRule()

Initializes a new instance of the FirewallRule class.

public FirewallRule ();
Public Sub New ()

Applies to

FirewallRule(String, String, String, String, String)

Initializes a new instance of the FirewallRule class.

public FirewallRule (string startIpAddress, string endIpAddress, string id = default, string name = default, string type = default);
public FirewallRule (string id = default, string name = default, string type = default, string startIpAddress = default, string endIpAddress = default);
new Microsoft.Azure.Management.DataLake.Store.Models.FirewallRule : string * string * string * string * string -> Microsoft.Azure.Management.DataLake.Store.Models.FirewallRule
new Microsoft.Azure.Management.DataLake.Store.Models.FirewallRule : string * string * string * string * string -> Microsoft.Azure.Management.DataLake.Store.Models.FirewallRule
Public Sub New (startIpAddress As String, endIpAddress As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing)
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional startIpAddress As String = Nothing, Optional endIpAddress As String = Nothing)

Parameters

startIpAddressid
String

The start IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.

endIpAddressname
String

The end IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.

idtype
String

The resource identifier.

namestartIpAddress
String

The resource name.

typeendIpAddress
String

The resource type.

Applies to