Class ServerFirewallRuleProperties
java.lang.Object
com.azure.resourcemanager.sql.fluent.models.ServerFirewallRuleProperties
- All Implemented Interfaces:
com.azure.json.JsonSerializable<ServerFirewallRuleProperties>
public final class ServerFirewallRuleProperties
extends Object
implements com.azure.json.JsonSerializable<ServerFirewallRuleProperties>
The properties of a server firewall rule.
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of ServerFirewallRuleProperties class. -
Method Summary
Modifier and TypeMethodDescriptionGet the endIpAddress property: The end IP address of the firewall rule.static ServerFirewallRulePropertiesfromJson(com.azure.json.JsonReader jsonReader) Reads an instance of ServerFirewallRuleProperties from the JsonReader.Get the startIpAddress property: The start IP address of the firewall rule.com.azure.json.JsonWritertoJson(com.azure.json.JsonWriter jsonWriter) voidvalidate()Validates the instance.withEndIpAddress(String endIpAddress) Set the endIpAddress property: The end IP address of the firewall rule.withStartIpAddress(String startIpAddress) Set the startIpAddress property: The start IP address of the firewall rule.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Constructor Details
-
ServerFirewallRuleProperties
public ServerFirewallRuleProperties()Creates an instance of ServerFirewallRuleProperties class.
-
-
Method Details
-
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.
-
withStartIpAddress
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.
-
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.
-
withEndIpAddress
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.
-
validate
public void validate()Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
toJson
- Specified by:
toJsonin interfacecom.azure.json.JsonSerializable<ServerFirewallRuleProperties>- Throws:
IOException
-
fromJson
public static ServerFirewallRuleProperties fromJson(com.azure.json.JsonReader jsonReader) throws IOException 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.
-