WebTestPropertiesContentValidationArgs

data class WebTestPropertiesContentValidationArgs(val contentMatch: Output<String>? = null, val ignoreCase: Output<Boolean>? = null, val passIfTextFound: Output<Boolean>? = null) : ConvertibleToJava<WebTestPropertiesContentValidationArgs>

The collection of content validation properties

Constructors

Link copied to clipboard
constructor(contentMatch: Output<String>? = null, ignoreCase: Output<Boolean>? = null, passIfTextFound: Output<Boolean>? = null)

Properties

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

Content to look for in the return of the WebTest. Must not be null or empty.

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

When set, this value makes the ContentMatch validation case insensitive.

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

When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

Functions

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