Standard Web Test Validation Rules
data class StandardWebTestValidationRules(val content: StandardWebTestValidationRulesContent? = null, val expectedStatusCode: Int? = null, val sslCertRemainingLifetime: Int? = null, val sslCheckEnabled: Boolean? = null)
Constructors
Link copied to clipboard
constructor(content: StandardWebTestValidationRulesContent? = null, expectedStatusCode: Int? = null, sslCertRemainingLifetime: Int? = null, sslCheckEnabled: Boolean? = null)
Properties
Link copied to clipboard
A content
block as defined above.
Link copied to clipboard
The expected status code of the response. Default is '200', '0' means 'response code < 400'
Link copied to clipboard
The number of days of SSL certificate validity remaining for the checked endpoint. If the certificate has a shorter remaining lifetime left, the test will fail. This number should be between 1 and 365.
Link copied to clipboard
Should the SSL check be enabled?