Table of Contents

Class FirewallRuleModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

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

string

Id

The identifier for the rule

[JsonProperty("Id", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int Id { get; set; }

Property Value

int

Name

The name of the rule. Unique per database.

[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }

Property Value

string

StartIpAddress

The starting IP Address of the allowed range.

[JsonProperty("StartIpAddress", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string StartIpAddress { get; set; }

Property Value

string