Class RedisFirewallRuleCreateParameters
- java.lang.Object
-
- com.microsoft.azure.management.redis.RedisFirewallRuleCreateParameters
-
public class RedisFirewallRuleCreateParameters extends Object
Parameters required for creating a firewall rule on redis cache.
-
-
Constructor Summary
Constructors Constructor Description RedisFirewallRuleCreateParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringendIP()Get the endIP value.StringstartIP()Get the startIP value.RedisFirewallRuleCreateParameterswithEndIP(String endIP)Set the endIP value.RedisFirewallRuleCreateParameterswithStartIP(String startIP)Set the startIP value.
-
-
-
Method Detail
-
startIP
public String startIP()
Get the startIP value.- Returns:
- the startIP value
-
withStartIP
public RedisFirewallRuleCreateParameters withStartIP(String startIP)
Set the startIP value.- Parameters:
startIP- the startIP value to set- Returns:
- the RedisFirewallRuleCreateParameters object itself.
-
endIP
public String endIP()
Get the endIP value.- Returns:
- the endIP value
-
withEndIP
public RedisFirewallRuleCreateParameters withEndIP(String endIP)
Set the endIP value.- Parameters:
endIP- the endIP value to set- Returns:
- the RedisFirewallRuleCreateParameters object itself.
-
-