RouteSpecHttpRouteMatchHeaderMatch

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

Constructors

Link copied to clipboard
constructor(exact: String? = null, prefix: String? = null, range: RouteSpecHttpRouteMatchHeaderMatchRange? = null, regex: String? = null, suffix: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val exact: String? = null

The exact path to match on.

Link copied to clipboard
val prefix: String? = null

Value sent by the client must begin with the specified characters. Must be between 1 and 255 characters in length. This parameter must always start with /, which by itself matches all requests to the virtual router service name.

Link copied to clipboard

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

Link copied to clipboard
val regex: String? = null

The regex used to match the path.

Link copied to clipboard
val suffix: String? = null

Value sent by the client must end with the specified characters. Must be between 1 and 255 characters in length.