SqlServer.DefinitionStages.WithFirewallRule Interface
public interface WithFirewallRule
The stage of the SQL Server definition allowing to specify the SQL Firewall rules.
A SQL Server definition for specifying the firewall rule.
Method Summary
Modifier and Type | Method and Description |
---|---|
SqlFirewallRule.DefinitionStages.Blank<Sql |
defineFirewallRule(String firewallRuleName)
Begins the definition of a new SQL Firewall rule to be added to this server. |
Sql |
withNewFirewallRule(String ipAddress)
Creates new firewall rule in the SQL Server. |
Sql |
withNewFirewallRule(String startIPAddress, String endIPAddress)
Creates new firewall rule in the SQL Server. |
Sql |
withNewFirewallRule(String startIPAddress, String endIPAddress, String firewallRuleName)
Creates new firewall rule in the SQL Server. |
Sql |
withoutAccessFromAzureServices()
Sets the Azure services default access to this server to false. The default is to allow Azure services default access to this server via a special firewall rule named "AllowAllWindowsAzureIps" with the start IP "0.0.0.0". |
Method Details
defineFirewallRule
public SqlFirewallRule.DefinitionStages.Blank
Begins the definition of a new SQL Firewall rule to be added to this server.
Parameters:
Returns:
withNewFirewallRule
public WithCreate withNewFirewallRule(String ipAddress)
Creates new firewall rule in the SQL Server.
Parameters:
Returns:
withNewFirewallRule
public WithCreate withNewFirewallRule(String startIPAddress, String endIPAddress)
Creates new firewall rule in the SQL Server.
Parameters:
Returns:
withNewFirewallRule
public WithCreate withNewFirewallRule(String startIPAddress, String endIPAddress, String firewallRuleName)
Creates new firewall rule in the SQL Server.
Parameters:
Returns:
withoutAccessFromAzureServices
public WithCreate withoutAccessFromAzureServices()
Sets the Azure services default access to this server to false.
The default is to allow Azure services default access to this server via a special firewall rule named "AllowAllWindowsAzureIps" with the start IP "0.0.0.0".
Returns:
Applies to
Azure SDK for Java