FirewallRuleInner Constructors

Definition

Overloads

FirewallRuleInner()

Initializes a new instance of the FirewallRuleInner class.

FirewallRuleInner(String, String, String, String, String, String, String)

Initializes a new instance of the FirewallRuleInner class.

FirewallRuleInner()

Initializes a new instance of the FirewallRuleInner class.

public FirewallRuleInner ();
Public Sub New ()

Applies to

FirewallRuleInner(String, String, String, String, String, String, String)

Initializes a new instance of the FirewallRuleInner class.

public FirewallRuleInner (string startIpAddress, string endIpAddress, string id = default, string name = default, string type = default, string kind = default, string location = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.FirewallRuleInner : string * string * string * string * string * string * string -> Microsoft.Azure.Management.Sql.Fluent.Models.FirewallRuleInner
Public Sub New (startIpAddress As String, endIpAddress As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional kind As String = Nothing, Optional location As String = Nothing)

Parameters

startIpAddress
String

The start IP address of the firewall rule. Must be IPv4 format. Use value '0.0.0.0' to represent 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' to represent all Azure-internal IP addresses.

id
String
name
String
type
String
kind
String

Kind of server that contains this firewall rule.

location
String

Location of the server that contains this firewall rule.

Applies to