All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessGroupIncludeSamlArgs.kt Maven / Gradle / Ivy

Go to download

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.ZeroTrustAccessGroupIncludeSamlArgs.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 ZeroTrustAccessGroupIncludeSamlArgs(
    public val attributeName: Output? = null,
    public val attributeValue: Output? = null,
    public val identityProviderId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeSamlArgs =
        com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeSamlArgs.builder()
            .attributeName(attributeName?.applyValue({ args0 -> args0 }))
            .attributeValue(attributeValue?.applyValue({ args0 -> args0 }))
            .identityProviderId(identityProviderId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ZeroTrustAccessGroupIncludeSamlArgs].
 */
@PulumiTagMarker
public class ZeroTrustAccessGroupIncludeSamlArgsBuilder 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("nuiorqfnowynrsas")
    public suspend fun attributeName(`value`: Output) {
        this.attributeName = value
    }

    /**
     * @param value The SAML attribute value to look for.
     */
    @JvmName("onrwowcgpkjufgeb")
    public suspend fun attributeValue(`value`: Output) {
        this.attributeValue = value
    }

    /**
     * @param value The ID of your SAML identity provider.
     */
    @JvmName("eqcsxcxikuhvfkoy")
    public suspend fun identityProviderId(`value`: Output) {
        this.identityProviderId = value
    }

    /**
     * @param value The name of the SAML attribute.
     */
    @JvmName("hrdrgfmgxpoflfmw")
    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("xbetsfewblvkkeqq")
    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("wntrkexahdfpucru")
    public suspend fun identityProviderId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identityProviderId = mapped
    }

    internal fun build(): ZeroTrustAccessGroupIncludeSamlArgs = ZeroTrustAccessGroupIncludeSamlArgs(
        attributeName = attributeName,
        attributeValue = attributeValue,
        identityProviderId = identityProviderId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy