com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyTestingOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.recaptcha.kotlin.outputs
import kotlin.Double
import kotlin.String
import kotlin.Suppress
/**
*
* @property testingChallenge For challenge-based keys only (CHECKBOX, INVISIBLE), all challenge requests for this site will return nocaptcha if NOCAPTCHA, or an unsolvable challenge if UNSOLVABLE_CHALLENGE. Possible values: TESTING_CHALLENGE_UNSPECIFIED, NOCAPTCHA, UNSOLVABLE_CHALLENGE
* @property testingScore All assessments for this Key will return this score. Must be between 0 (likely not legitimate) and 1 (likely legitimate) inclusive.
*/
public data class EnterpriseKeyTestingOptions(
public val testingChallenge: String? = null,
public val testingScore: Double? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.recaptcha.outputs.EnterpriseKeyTestingOptions): EnterpriseKeyTestingOptions = EnterpriseKeyTestingOptions(
testingChallenge = javaType.testingChallenge().map({ args0 -> args0 }).orElse(null),
testingScore = javaType.testingScore().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy