HttpQueryParameterMatchArgs

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

Link copied to clipboard
open override fun toJava(): HttpQueryParameterMatchArgs

Properties

Link copied to clipboard
val exactMatch: Output<String>? = null

The queryParameterMatch matches if the value of the parameter exactly matches the contents of exactMatch. Only one of presentMatch, exactMatch, or regexMatch must be set.

Link copied to clipboard
val name: Output<String>? = null

The name of the query parameter to match. The query parameter must exist in the request, in the absence of which the request match fails.

Link copied to clipboard
val presentMatch: Output<Boolean>? = null

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, or regexMatch must be set.

Link copied to clipboard
val regexMatch: Output<String>? = null

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.