RateLimitMatchRequest

data class RateLimitMatchRequest(val methods: List<String>? = null, val schemes: List<String>? = null, val urlPattern: String? = null)

Constructors

Link copied to clipboard
constructor(methods: List<String>? = null, schemes: List<String>? = null, urlPattern: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val methods: List<String>? = null

HTTP Methods to match traffic on. Available values: GET, POST, PUT, DELETE, PATCH, HEAD, _ALL_.

Link copied to clipboard
val schemes: List<String>? = null

HTTP schemes to match traffic on. Available values: HTTP, HTTPS, _ALL_.

Link copied to clipboard
val urlPattern: String? = null

The URL pattern to match comprised of the host and path, i.e. example.org/path. Wildcard are expanded to match applicable traffic, query strings are not matched. Use _ for all traffic to your zone.