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 id = default, string name = default, string type = default, string startIpAddress = default, string endIpAddress = default);
new Microsoft.Azure.Management.Sql.Models.FirewallRule : string * string * string * string * string -> Microsoft.Azure.Management.Sql.Models.FirewallRule
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

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

startIpAddress
String

The start IP address of the firewall rule. Must be IPv4 format. Use value '0.0.0.0' for all Azure-internal IP addresses.

endIpAddress
String

The end IP address of the firewall rule. Must be IPv4 format. Must be greater than or equal to startIpAddress. Use value '0.0.0.0' for all Azure-internal IP addresses.

Applies to