NetworkRuleSet Constructors
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
NetworkRuleSet() |
Initializes a new instance of the NetworkRuleSet class. |
NetworkRuleSet(IList<IpRule>) |
Initializes a new instance of the NetworkRuleSet class. |
NetworkRuleSet()
Initializes a new instance of the NetworkRuleSet class.
public NetworkRuleSet ();
Public Sub New ()
Applies to
NetworkRuleSet(IList<IpRule>)
Initializes a new instance of the NetworkRuleSet class.
public NetworkRuleSet (System.Collections.Generic.IList<Microsoft.Azure.Management.Search.Models.IpRule> ipRules = default);
new Microsoft.Azure.Management.Search.Models.NetworkRuleSet : System.Collections.Generic.IList<Microsoft.Azure.Management.Search.Models.IpRule> -> Microsoft.Azure.Management.Search.Models.NetworkRuleSet
Public Sub New (Optional ipRules As IList(Of IpRule) = Nothing)
Parameters
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.
Applies to
Azure SDK for .NET