GatewayRouteSpecHttpRouteMatchHeaderMatch

data class GatewayRouteSpecHttpRouteMatchHeaderMatch(val exact: String? = null, val prefix: String? = null, val range: GatewayRouteSpecHttpRouteMatchHeaderMatchRange? = null, val regex: String? = null, val suffix: String? = null)

Constructors

constructor(exact: String? = null, prefix: String? = null, range: GatewayRouteSpecHttpRouteMatchHeaderMatchRange? = null, regex: String? = null, suffix: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val exact: String? = null

Header value sent by the client must match the specified value exactly.

Link copied to clipboard
val prefix: String? = null

Header value sent by the client must begin with the specified characters.

Link copied to clipboard

Object that specifies the range of numbers that the header value sent by the client must be included in.

Link copied to clipboard
val regex: String? = null

Header value sent by the client must include the specified characters.

Link copied to clipboard
val suffix: String? = null

Header value sent by the client must end with the specified characters.