HttpRouteRuleMatchQueryParameterArgs

data class HttpRouteRuleMatchQueryParameterArgs(val exactMatch: Output<String>? = null, val presentMatch: Output<Boolean>? = null, val queryParameter: Output<String>? = null, val regexMatch: Output<String>? = null) : ConvertibleToJava<HttpRouteRuleMatchQueryParameterArgs>

Constructors

Link copied to clipboard
constructor(exactMatch: Output<String>? = null, presentMatch: Output<Boolean>? = null, queryParameter: Output<String>? = null, regexMatch: Output<String>? = null)

Properties

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

The value of the query parameter must exactly match the contents of exactMatch.

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

Specifies that the QueryParameterMatcher matches if request contains query parameter, irrespective of whether the parameter has a value or not.

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

The name of the query parameter to match.

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

The value of the query parameter must match the regular expression specified by regexMatch.For regular expression grammar, please see https://github.com/google/re2/wiki/Syntax

Functions

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