Http Query Parameter Match Args
data class HttpQueryParameterMatchArgs(val exactMatch: Output<String>? = null, val name: Output<String>? = null, val presentMatch: Output<Boolean>? = null, val regexMatch: Output<String>? = null) : ConvertibleToJava<HttpQueryParameterMatchArgs>
HttpRouteRuleMatch criteria for a request's query parameter.
Constructors
Link copied to clipboard
fun HttpQueryParameterMatchArgs(exactMatch: Output<String>? = null, name: Output<String>? = null, presentMatch: Output<Boolean>? = null, regexMatch: Output<String>? = null)
Functions
Properties
Link copied to clipboard
The queryParameterMatch matches if the value of the parameter matches the regular expression specified by regexMatch. For more information about regular expression syntax, see Syntax. Only one of presentMatch, exactMatch, or regexMatch must be set. Regular expressions can only be used when the loadBalancingScheme is set to INTERNAL_SELF_MANAGED.