Interface SqlFirewallRuleOperations.DefinitionStages.WithIpAddressRange
-
- All Known Subinterfaces:
SqlFirewallRuleOperations.SqlFirewallRuleOperationsDefinition
- Enclosing interface:
- SqlFirewallRuleOperations.DefinitionStages
public static interface SqlFirewallRuleOperations.DefinitionStages.WithIpAddressRangeThe SQL Firewall Rule definition to set the Ip address range for the parent SQL Server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlFirewallRuleOperations.DefinitionStages.WithCreatewithIpAddress(String ipAddress)Sets the ending Ip address of SQL server's firewall rule.SqlFirewallRuleOperations.DefinitionStages.WithCreatewithIpAddressRange(String startIpAddress, String endIpAddress)Sets the starting Ip address of SQL server's firewall rule.
-
-
-
Method Detail
-
withIpAddressRange
SqlFirewallRuleOperations.DefinitionStages.WithCreate withIpAddressRange(String startIpAddress, String endIpAddress)
Sets the starting Ip address of SQL server's firewall rule.- Parameters:
startIpAddress- starting Ip address in Ipv4 format.endIpAddress- starting Ip address in Ipv4 format.- Returns:
- The next stage of the definition.
-
withIpAddress
SqlFirewallRuleOperations.DefinitionStages.WithCreate withIpAddress(String ipAddress)
Sets the ending Ip address of SQL server's firewall rule.- Parameters:
ipAddress- Ip address in Ipv4 format.- Returns:
- The next stage of the definition.
-
-