WebAclResponseInspectionJsonArgs

data class WebAclResponseInspectionJsonArgs(val failureValues: Output<List<String>>, val identifier: Output<String>, val successValues: Output<List<String>>) : ConvertibleToJava<WebAclResponseInspectionJsonArgs>

Response JSON that indicate success or failure of a login request

Constructors

Link copied to clipboard
constructor(failureValues: Output<List<String>>, identifier: Output<String>, successValues: Output<List<String>>)

Properties

Link copied to clipboard
val failureValues: Output<List<String>>

Values for the specified identifier in the response JSON that indicate a failed login or account creation attempt. To be counted as a failure, the value must be an exact match, including case. Each value must be unique among the success and failure values. JSON example: "FailureValues": [ "False", "Failed" ]

Link copied to clipboard
val identifier: Output<String>

The identifier for the value to match against in the JSON. The identifier must be an exact match, including case. JSON examples: "Identifier": [ "/login/success" ] and "Identifier": [ "/sign-up/success" ]

Link copied to clipboard
val successValues: Output<List<String>>

Values for the specified identifier in the response JSON that indicate a successful login or account creation attempt. To be counted as a success, the value must be an exact match, including case. Each value must be unique among the success and failure values. JSON example: "SuccessValues": [ "True", "Succeeded" ]

Functions

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