Standard Web Test Validation Rules Args
data class StandardWebTestValidationRulesArgs(val content: Output<StandardWebTestValidationRulesContentArgs>? = null, val expectedStatusCode: Output<Int>? = null, val sslCertRemainingLifetime: Output<Int>? = null, val sslCheckEnabled: Output<Boolean>? = null) : ConvertibleToJava<StandardWebTestValidationRulesArgs>
Constructors
Link copied to clipboard
constructor(content: Output<StandardWebTestValidationRulesContentArgs>? = null, expectedStatusCode: Output<Int>? = null, sslCertRemainingLifetime: Output<Int>? = null, sslCheckEnabled: Output<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?