RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs

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

Constructors

constructor(exactMatch: Output<String>? = null, name: Output<String>, presentMatch: Output<Boolean>? = null, regexMatch: Output<String>? = null)

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

Link copied to clipboard
val name: Output<String>

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 and 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 the regular expression grammar, please see en.cppreference.com/w/cpp/regex/ecmascript Only one of presentMatch, exactMatch and regexMatch must be set.

Functions

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