![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessGroupIncludeAuthContextArgs.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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeAuthContextArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property acId The ACID of the Authentication Context.
* @property id The ID of the Authentication Context.
* @property identityProviderId The ID of the Azure identity provider.
*/
public data class ZeroTrustAccessGroupIncludeAuthContextArgs(
public val acId: Output,
public val id: Output,
public val identityProviderId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeAuthContextArgs =
com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeAuthContextArgs.builder()
.acId(acId.applyValue({ args0 -> args0 }))
.id(id.applyValue({ args0 -> args0 }))
.identityProviderId(identityProviderId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ZeroTrustAccessGroupIncludeAuthContextArgs].
*/
@PulumiTagMarker
public class ZeroTrustAccessGroupIncludeAuthContextArgsBuilder internal constructor() {
private var acId: Output? = null
private var id: Output? = null
private var identityProviderId: Output? = null
/**
* @param value The ACID of the Authentication Context.
*/
@JvmName("orfotsmyegejaxwi")
public suspend fun acId(`value`: Output) {
this.acId = value
}
/**
* @param value The ID of the Authentication Context.
*/
@JvmName("nllrkonjpsbhkddj")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value The ID of the Azure identity provider.
*/
@JvmName("mvpfnvpmvjoeyfdk")
public suspend fun identityProviderId(`value`: Output) {
this.identityProviderId = value
}
/**
* @param value The ACID of the Authentication Context.
*/
@JvmName("rpbibtpvobfrdwcp")
public suspend fun acId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.acId = mapped
}
/**
* @param value The ID of the Authentication Context.
*/
@JvmName("daahaftuvdsaialx")
public suspend fun id(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.id = mapped
}
/**
* @param value The ID of the Azure identity provider.
*/
@JvmName("ycafmhuetytmbrbw")
public suspend fun identityProviderId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.identityProviderId = mapped
}
internal fun build(): ZeroTrustAccessGroupIncludeAuthContextArgs =
ZeroTrustAccessGroupIncludeAuthContextArgs(
acId = acId ?: throw PulumiNullFieldException("acId"),
id = id ?: throw PulumiNullFieldException("id"),
identityProviderId = identityProviderId ?: throw PulumiNullFieldException("identityProviderId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy