diff --git a/sdk/search/mgmt-resource-manager/v2020_03_13/src/main/java/com/microsoft/azure/management/search/v2020_03_13/NetworkRuleSet.java b/sdk/search/mgmt-resource-manager/v2020_03_13/src/main/java/com/microsoft/azure/management/search/v2020_03_13/NetworkRuleSet.java index 0c1aea948a98..456a6f4f8398 100644 --- a/sdk/search/mgmt-resource-manager/v2020_03_13/src/main/java/com/microsoft/azure/management/search/v2020_03_13/NetworkRuleSet.java +++ b/sdk/search/mgmt-resource-manager/v2020_03_13/src/main/java/com/microsoft/azure/management/search/v2020_03_13/NetworkRuleSet.java @@ -17,15 +17,19 @@ */ public class NetworkRuleSet { /** - * A list of IP restriction rules that defines the inbound network access - * to the search service endpoint. These restriction rules are applied only - * when the EndpointAccess of the search service is Public. + * A list of IP restriction rules that defines the inbound network(s) with + * allowing access to the search service endpoint. At the meantime, all + * other public IP networks are blocked by the firewall. These restriction + * rules are applied only when the 'publicNetworkAccess' of the search + * service is 'enabled'; otherwise, traffic over public interface is not + * allowed even with any public IP rules, and private endpoint connections + * would be the exclusive access method. */ @JsonProperty(value = "ipRules") private List ipRules; /** - * Get a list of IP restriction rules that defines the inbound network access to the search service endpoint. These restriction rules are applied only when the EndpointAccess of the search service is Public. + * Get a list of IP restriction rules that defines the inbound network(s) with allowing access to the search service endpoint. At the meantime, all other public IP networks are blocked by the firewall. These restriction rules are applied only when the 'publicNetworkAccess' of the search service is 'enabled'; otherwise, traffic over public interface is not allowed even with any public IP rules, and private endpoint connections would be the exclusive access method. * * @return the ipRules value */ @@ -34,7 +38,7 @@ public List ipRules() { } /** - * Set a list of IP restriction rules that defines the inbound network access to the search service endpoint. These restriction rules are applied only when the EndpointAccess of the search service is Public. + * Set a list of IP restriction rules that defines the inbound network(s) with allowing access to the search service endpoint. At the meantime, all other public IP networks are blocked by the firewall. These restriction rules are applied only when the 'publicNetworkAccess' of the search service is 'enabled'; otherwise, traffic over public interface is not allowed even with any public IP rules, and private endpoint connections would be the exclusive access method. * * @param ipRules the ipRules value to set * @return the NetworkRuleSet object itself.