Http Route Route Match Args
data class HttpRouteRouteMatchArgs(val fullPathMatch: Output<String>? = null, val headers: Output<List<HttpRouteHeaderMatchArgs>>? = null, val ignoreCase: Output<Boolean>? = null, val prefixMatch: Output<String>? = null, val queryParameters: Output<List<HttpRouteQueryParameterMatchArgs>>? = null, val regexMatch: Output<String>? = null) : ConvertibleToJava<HttpRouteRouteMatchArgs>
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 HttpRouteRouteMatchArgs(fullPathMatch: Output<String>? = null, headers: Output<List<HttpRouteHeaderMatchArgs>>? = null, ignoreCase: Output<Boolean>? = null, prefixMatch: Output<String>? = null, queryParameters: Output<List<HttpRouteQueryParameterMatchArgs>>? = null, regexMatch: Output<String>? = null)
Functions
Properties
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.