com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessGroupRequireSamlArgs.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.ZeroTrustAccessGroupRequireSamlArgs.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 attributeName The name of the SAML attribute.
* @property attributeValue The SAML attribute value to look for.
* @property identityProviderId The ID of your SAML identity provider.
*/
public data class ZeroTrustAccessGroupRequireSamlArgs(
public val attributeName: Output? = null,
public val attributeValue: Output? = null,
public val identityProviderId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupRequireSamlArgs =
com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupRequireSamlArgs.builder()
.attributeName(attributeName?.applyValue({ args0 -> args0 }))
.attributeValue(attributeValue?.applyValue({ args0 -> args0 }))
.identityProviderId(identityProviderId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ZeroTrustAccessGroupRequireSamlArgs].
*/
@PulumiTagMarker
public class ZeroTrustAccessGroupRequireSamlArgsBuilder internal constructor() {
private var attributeName: Output? = null
private var attributeValue: Output? = null
private var identityProviderId: Output? = null
/**
* @param value The name of the SAML attribute.
*/
@JvmName("wnnfwmnuhbnppjfo")
public suspend fun attributeName(`value`: Output) {
this.attributeName = value
}
/**
* @param value The SAML attribute value to look for.
*/
@JvmName("osltsoocmgrjchal")
public suspend fun attributeValue(`value`: Output) {
this.attributeValue = value
}
/**
* @param value The ID of your SAML identity provider.
*/
@JvmName("cudpxlxgrcbmxrsk")
public suspend fun identityProviderId(`value`: Output) {
this.identityProviderId = value
}
/**
* @param value The name of the SAML attribute.
*/
@JvmName("mogfagakraldtwtk")
public suspend fun attributeName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.attributeName = mapped
}
/**
* @param value The SAML attribute value to look for.
*/
@JvmName("gfilobjsrtqeifya")
public suspend fun attributeValue(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.attributeValue = mapped
}
/**
* @param value The ID of your SAML identity provider.
*/
@JvmName("ptybalcafhdhuayw")
public suspend fun identityProviderId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.identityProviderId = mapped
}
internal fun build(): ZeroTrustAccessGroupRequireSamlArgs = ZeroTrustAccessGroupRequireSamlArgs(
attributeName = attributeName,
attributeValue = attributeValue,
identityProviderId = identityProviderId,
)
}