Interface SqlServer.UpdateStages.WithFirewallRule
- All Known Subinterfaces:
SqlServer.Update
- Enclosing interface:
- SqlServer.UpdateStages
public static interface SqlServer.UpdateStages.WithFirewallRule
The stage of the SQL Server update definition allowing to specify the SQL Firewall rules.
-
Method Summary
Modifier and TypeMethodDescriptionwithNewFirewallRule(String ipAddress) Deprecated.withNewFirewallRule(String startIPAddress, String endIPAddress) Deprecated.withNewFirewallRule(String startIPAddress, String endIPAddress, String firewallRuleName) Deprecated.withoutFirewallRule(String firewallRuleName) Deprecated.
-
Method Details
-
withNewFirewallRule
Deprecated.Create new firewall rule in the SQL Server.- Parameters:
ipAddress- IP address for the firewall rule- Returns:
- Next stage of the SQL Server update
-
withNewFirewallRule
Deprecated.Create new firewall rule in the SQL Server.- Parameters:
startIPAddress- Start IP address for the firewall ruleendIPAddress- IP address for the firewall rule- Returns:
- Next stage of the SQL Server update
-
withNewFirewallRule
@Deprecated SqlServer.Update withNewFirewallRule(String startIPAddress, String endIPAddress, String firewallRuleName) Deprecated.Creates new firewall rule in the SQL Server.- Parameters:
startIPAddress- start IP address for the firewall ruleendIPAddress- end IP address for the firewall rulefirewallRuleName- name for the firewall rule- Returns:
- Next stage of the SQL Server update
-
withoutFirewallRule
Deprecated.Removes firewall rule from the SQL Server.- Parameters:
firewallRuleName- name of the firewall rule to be removed- Returns:
- Next stage of the SQL Server update
-