public static interface SqlServer.UpdateStages.WithFirewallRule
| Modifier and Type | Method and Description |
|---|---|
SqlServer.Update |
withNewFirewallRule(String ipAddress)
Create new firewall rule in the SQL Server.
|
SqlServer.Update |
withNewFirewallRule(String startIPAddress,
String endIPAddress)
Create new firewall rule in the SQL Server.
|
SqlServer.Update |
withNewFirewallRule(String startIPAddress,
String endIPAddress,
String firewallRuleName)
Creates new firewall rule in the SQL Server.
|
SqlServer.Update |
withoutFirewallRule(String firewallRuleName)
Removes firewall rule from the SQL Server.
|
SqlServer.Update withNewFirewallRule(String ipAddress)
ipAddress - IP address for the firewall ruleSqlServer.Update withNewFirewallRule(String startIPAddress, String endIPAddress)
startIPAddress - Start IP address for the firewall ruleendIPAddress - IP address for the firewall ruleSqlServer.Update withNewFirewallRule(String startIPAddress, String endIPAddress, String firewallRuleName)
startIPAddress - start IP address for the firewall ruleendIPAddress - end IP address for the firewall rulefirewallRuleName - name for the firewall ruleSqlServer.Update withoutFirewallRule(String firewallRuleName)
firewallRuleName - name of the firewall rule to be removed/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/