Show / Hide Table of Contents

Class Whitelist

An array of IP addresses that bypass the Web Application Firewall. Supports both single IP addresses or subnet masks (CIDR notation).

Inheritance
object
Whitelist
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WaasService.Models
Assembly: OCI.DotNetSDK.Waas.dll
Syntax
public class Whitelist

Properties

AddressLists

Declaration
[JsonProperty(PropertyName = "addressLists")]
public List<string> AddressLists { get; set; }
Property Value
Type Description
List<string>

A list of OCID of IP address lists to include in the whitelist.

Addresses

Declaration
[JsonProperty(PropertyName = "addresses")]
public List<string> Addresses { get; set; }
Property Value
Type Description
List<string>

A set of IP addresses or CIDR notations to include in the whitelist.

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The unique name of the whitelist.

Remarks

Required

In this article
Back to top