HttpRouteRouteMatchResponse

data class HttpRouteRouteMatchResponse(val fullPathMatch: String, val headers: List<HttpRouteHeaderMatchResponse>, val ignoreCase: Boolean, val prefixMatch: String, val queryParameters: List<HttpRouteQueryParameterMatchResponse>, val regexMatch: String)

RouteMatch defines specifications used to match requests. If multiple match types are set, this RouteMatch will match if ALL type of matches are matched.

Constructors

Link copied to clipboard
fun HttpRouteRouteMatchResponse(fullPathMatch: String, headers: List<HttpRouteHeaderMatchResponse>, ignoreCase: Boolean, prefixMatch: String, queryParameters: List<HttpRouteQueryParameterMatchResponse>, regexMatch: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The HTTP request path value should exactly match this value. Only one of full_path_match, prefix_match, or regex_match should be used.

Link copied to clipboard

Specifies a list of HTTP request headers to match against. ALL of the supplied headers must be matched.

Link copied to clipboard

Specifies if prefix_match and full_path_match matches are case sensitive. The default value is false.

Link copied to clipboard

The HTTP request path value must begin with specified prefix_match. prefix_match must begin with a /. Only one of full_path_match, prefix_match, or regex_match should be used.

Link copied to clipboard

Specifies a list of query parameters to match against. ALL of the query parameters must be matched.

Link copied to clipboard

The HTTP request path value must satisfy the regular expression specified by regex_match after removing any query parameters and anchor supplied with the original URL. For regular expression grammar, please see https://github.com/google/re2/wiki/Syntax Only one of full_path_match, prefix_match, or regex_match should be used.