RuleGroupJsonMatchPatternArgs

data class RuleGroupJsonMatchPatternArgs(val all: Output<Any>? = null, val includedPaths: Output<List<String>>? = null) : ConvertibleToJava<RuleGroupJsonMatchPatternArgs>

The pattern to look for in the JSON body.

Constructors

Link copied to clipboard
constructor(all: Output<Any>? = null, includedPaths: Output<List<String>>? = null)

Properties

Link copied to clipboard
val all: Output<Any>? = null

Inspect all parts of the web request's JSON body.

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

Match only the specified include paths. See also MatchScope in the JsonBody FieldToMatch specification. Provide the include paths using JSON Pointer syntax. For example, "IncludedPaths": ["/dogs/0/name", "/dogs/1/name"] . For information about this syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer . You must specify either this setting or the All setting, but not both.

Functions

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