com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessGroupIncludeExternalEvaluationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeExternalEvaluationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property evaluateUrl The API endpoint containing your business logic.
* @property keysUrl The API endpoint containing the key that Access uses to verify that the response came from your API.
*/
public data class ZeroTrustAccessGroupIncludeExternalEvaluationArgs(
public val evaluateUrl: Output? = null,
public val keysUrl: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeExternalEvaluationArgs =
com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeExternalEvaluationArgs.builder()
.evaluateUrl(evaluateUrl?.applyValue({ args0 -> args0 }))
.keysUrl(keysUrl?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ZeroTrustAccessGroupIncludeExternalEvaluationArgs].
*/
@PulumiTagMarker
public class ZeroTrustAccessGroupIncludeExternalEvaluationArgsBuilder internal constructor() {
private var evaluateUrl: Output? = null
private var keysUrl: Output? = null
/**
* @param value The API endpoint containing your business logic.
*/
@JvmName("tdpxmxmpkdjhmpgi")
public suspend fun evaluateUrl(`value`: Output) {
this.evaluateUrl = value
}
/**
* @param value The API endpoint containing the key that Access uses to verify that the response came from your API.
*/
@JvmName("dshywhpjckyrdcca")
public suspend fun keysUrl(`value`: Output) {
this.keysUrl = value
}
/**
* @param value The API endpoint containing your business logic.
*/
@JvmName("sdnkmbqjuivrtjkj")
public suspend fun evaluateUrl(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.evaluateUrl = mapped
}
/**
* @param value The API endpoint containing the key that Access uses to verify that the response came from your API.
*/
@JvmName("wifhjfvwtlkbhmri")
public suspend fun keysUrl(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keysUrl = mapped
}
internal fun build(): ZeroTrustAccessGroupIncludeExternalEvaluationArgs =
ZeroTrustAccessGroupIncludeExternalEvaluationArgs(
evaluateUrl = evaluateUrl,
keysUrl = keysUrl,
)
}