Class NetworkAclRule
- Namespace
- Auth0.ManagementApi.Models.NetworkAcl
- Assembly
- Auth0.ManagementApi.dll
Represents a rule in a Network Access Control List (ACL).
public class NetworkAclRule
- Inheritance
-
NetworkAclRule
- Inherited Members
Properties
Action
The action to be taken when a request matches or does not match the criteria defined in the Network ACL rule.
[JsonProperty("action")]
public NetworkAclAction Action { get; set; }
Property Value
Match
The different criteria that can be used to match requests in a Network ACL rule.
[JsonProperty("match")]
public NetworkAclMatch? Match { get; set; }
Property Value
NotMatch
The different criteria that can be used to match requests in a Network ACL rule.
[JsonProperty("not_match")]
public NetworkAclMatch? NotMatch { get; set; }
Property Value
Scope
Identifies the origin of the request
[JsonProperty("scope")]
[JsonConverter(typeof(StringEnumConverter))]
public NetworkAclScope Scope { get; set; }