Del via


ServerFirewallRuleProperties Class

  • java.lang.Object
    • com.azure.resourcemanager.sql.fluent.models.ServerFirewallRuleProperties

Implements

public final class ServerFirewallRuleProperties
implements JsonSerializable<ServerFirewallRuleProperties>

The properties of a server firewall rule.

Constructor Summary

Constructor Description
ServerFirewallRuleProperties()

Creates an instance of ServerFirewallRuleProperties class.

Method Summary

Modifier and Type Method and Description
String endIpAddress()

Get the endIpAddress property: The end IP address of the firewall rule.

static ServerFirewallRuleProperties fromJson(JsonReader jsonReader)

Reads an instance of ServerFirewallRuleProperties from the JsonReader.

String startIpAddress()

Get the startIpAddress property: The start IP address of the firewall rule.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

ServerFirewallRuleProperties withEndIpAddress(String endIpAddress)

Set the endIpAddress property: The end IP address of the firewall rule.

ServerFirewallRuleProperties withStartIpAddress(String startIpAddress)

Set the startIpAddress property: The start IP address of the firewall rule.

Methods inherited from java.lang.Object

Constructor Details

ServerFirewallRuleProperties

public ServerFirewallRuleProperties()

Creates an instance of ServerFirewallRuleProperties class.

Method Details

endIpAddress

public String endIpAddress()

Get the endIpAddress property: 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.

Returns:

the endIpAddress value.

fromJson

public static ServerFirewallRuleProperties fromJson(JsonReader jsonReader)

Reads an instance of ServerFirewallRuleProperties from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of ServerFirewallRuleProperties if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the ServerFirewallRuleProperties.

startIpAddress

public String startIpAddress()

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

Returns:

the startIpAddress value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withEndIpAddress

public ServerFirewallRuleProperties withEndIpAddress(String endIpAddress)

Set the endIpAddress property: 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.

Parameters:

endIpAddress - the endIpAddress value to set.

Returns:

the ServerFirewallRuleProperties object itself.

withStartIpAddress

public ServerFirewallRuleProperties withStartIpAddress(String startIpAddress)

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

Parameters:

startIpAddress - the startIpAddress value to set.

Returns:

the ServerFirewallRuleProperties object itself.

Applies to