WebAclCookieMatchPattern

data class WebAclCookieMatchPattern(val all: Any? = null, val excludedCookies: List<String>? = null, val includedCookies: List<String>? = null)

The pattern to look for in the request cookies.

Constructors

Link copied to clipboard
constructor(all: Any? = null, excludedCookies: List<String>? = null, includedCookies: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val all: Any? = null

Inspect all parts of the web request cookies.

Link copied to clipboard

Inspect only the cookies whose keys don't match any of the strings specified here.

Link copied to clipboard

Inspect only the cookies that have a key that matches one of the strings specified here.