RestResponseResponse

data class RestResponseResponse(val regex: RestResponseResponseRegex? = null, val successStatusCodes: List<String>? = null)

The properties that make up the expected REST response

Constructors

Link copied to clipboard
constructor(regex: RestResponseResponseRegex? = null, successStatusCodes: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The regular expressions to match the response content with.

Link copied to clipboard

The HTTP status codes expected in a successful health check response. The response is expected to match one of the given status codes. If no expected status codes are provided, default expected status code is 200 OK.