Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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<IpRule> 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
*/
Expand All @@ -34,7 +38,7 @@ public List<IpRule> 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.
Expand Down