Class FirewallRuleModel
Describes the firewall rule for an Azure Sql Database.
public class FirewallRuleModel
- Inheritance
-
FirewallRuleModel
- Inherited Members
Properties
EndIpAddress
The last IP address that will be allowed (in the specified range).
[JsonProperty("EndIpAddress", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string EndIpAddress { get; set; }
Property Value
Id
The identifier for the rule
[JsonProperty("Id", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int Id { get; set; }
Property Value
Name
The name of the rule. Unique per database.
[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
Property Value
StartIpAddress
The starting IP Address of the allowed range.
[JsonProperty("StartIpAddress", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string StartIpAddress { get; set; }