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 Details

    • withNewFirewallRule

      @Deprecated SqlServer.Update withNewFirewallRule(String ipAddress)
      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 SqlServer.Update withNewFirewallRule(String startIPAddress, String endIPAddress)
      Deprecated.
      Create new firewall rule in the SQL Server.
      Parameters:
      startIPAddress - Start IP address for the firewall rule
      endIPAddress - 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 rule
      endIPAddress - end IP address for the firewall rule
      firewallRuleName - name for the firewall rule
      Returns:
      Next stage of the SQL Server update
    • withoutFirewallRule

      @Deprecated SqlServer.Update withoutFirewallRule(String firewallRuleName)
      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