IUpdateBeta.WithFirewallRule Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WithFirewallRule(IRedisFirewallRule) |
Creates or updates Redis cache firewall rule with range of IP addresses permitted to connect to the cache. |
WithFirewallRule(String, String, String) |
Creates or updates Redis cache firewall rule with range of IP addresses permitted to connect to the cache. |
WithFirewallRule(IRedisFirewallRule)
Creates or updates Redis cache firewall rule with range of IP addresses permitted to connect to the cache.
public Microsoft.Azure.Management.Redis.Fluent.RedisCache.Update.IUpdate WithFirewallRule (Microsoft.Azure.Management.Redis.Fluent.Models.IRedisFirewallRule rule);
abstract member WithFirewallRule : Microsoft.Azure.Management.Redis.Fluent.Models.IRedisFirewallRule -> Microsoft.Azure.Management.Redis.Fluent.RedisCache.Update.IUpdate
Public Function WithFirewallRule (rule As IRedisFirewallRule) As IUpdate
Parameters
- rule
- IRedisFirewallRule
Firewall rule that specifies name, lowest and highest IP address included in the range of permitted IP addresses.
Returns
Applies to
WithFirewallRule(String, String, String)
Creates or updates Redis cache firewall rule with range of IP addresses permitted to connect to the cache.
public Microsoft.Azure.Management.Redis.Fluent.RedisCache.Update.IUpdate WithFirewallRule (string name, string lowestIp, string highestIp);
abstract member WithFirewallRule : string * string * string -> Microsoft.Azure.Management.Redis.Fluent.RedisCache.Update.IUpdate
Public Function WithFirewallRule (name As String, lowestIp As String, highestIp As String) As IUpdate
Parameters
- name
- String
Name of the rule.
- lowestIp
- String
Lowest IP address included in the range.
- highestIp
- String
Highest IP address included in the range.
Returns
Applies to
Azure SDK for .NET