URLMap Path Matcher Route Rule Match Rule Query Parameter Match Args
data class URLMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs(val exactMatch: Output<String>? = null, val name: Output<String>, val presentMatch: Output<Boolean>? = null, val regexMatch: Output<String>? = null) : ConvertibleToJava<URLMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs>
Properties
Link copied to clipboard
The queryParameterMatch matches if the value of the parameter exactly matches the contents of exactMatch. Only one of presentMatch, exactMatch and regexMatch must be set.
Link copied to clipboard
Specifies that the queryParameterMatch matches if the request contains the query parameter, irrespective of whether the parameter has a value or not. Only one of presentMatch, exactMatch and regexMatch must be set.
Link copied to clipboard
The queryParameterMatch matches if the value of the parameter matches the regular expression specified by regexMatch. For the regular expression grammar, please see en.cppreference.com/w/cpp/regex/ecmascript Only one of presentMatch, exactMatch and regexMatch must be set.