Table of Contents

Class NetworkAclAction

Namespace
Auth0.ManagementApi.Models.NetworkAcl
Assembly
Auth0.ManagementApi.dll

The action to be taken when a request matches or does not match the criteria defined in the Network ACL rule.

public class NetworkAclAction
Inheritance
NetworkAclAction
Inherited Members

Properties

Allow

Indicates the rule will allow requests that either match or not_match specific criteria.

[JsonProperty("allow")]
public bool? Allow { get; set; }

Property Value

bool?

Block

Indicates the rule will block requests that either match or not_match specific criteria

[JsonProperty("block")]
public bool? Block { get; set; }

Property Value

bool?

Log

Indicates the rule will log requests that either match or not_match specific criteria

[JsonProperty("log")]
public bool? Log { get; set; }

Property Value

bool?

Redirect

Indicates the rule will redirect requests that either match or not_match specific criteria

[JsonProperty("redirect")]
public bool? Redirect { get; set; }

Property Value

bool?

RedirectUri

The URI to which the match or not_match requests will be routed

[JsonProperty("redirect_uri")]
public string? RedirectUri { get; set; }

Property Value

string