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

com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessPolicyIncludeSamlArgs.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.

There is a newer version: 5.40.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin.inputs

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

/**
 * Builder for [ZeroTrustAccessPolicyIncludeSamlArgs].
 */
@PulumiTagMarker
public class ZeroTrustAccessPolicyIncludeSamlArgsBuilder internal constructor() {
    private var attributeName: Output? = null

    private var attributeValue: Output? = null

    private var identityProviderId: Output? = null

    /**
     * @param value
     */
    @JvmName("xtlfehwwbtitsvwy")
    public suspend fun attributeName(`value`: Output) {
        this.attributeName = value
    }

    /**
     * @param value
     */
    @JvmName("nnjneqdrgpkhtrsx")
    public suspend fun attributeValue(`value`: Output) {
        this.attributeValue = value
    }

    /**
     * @param value
     */
    @JvmName("ukyifvemubycrvrc")
    public suspend fun identityProviderId(`value`: Output) {
        this.identityProviderId = value
    }

    /**
     * @param value
     */
    @JvmName("uueaamonqqaynxad")
    public suspend fun attributeName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.attributeName = mapped
    }

    /**
     * @param value
     */
    @JvmName("kqhifmolaktcodmv")
    public suspend fun attributeValue(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.attributeValue = mapped
    }

    /**
     * @param value
     */
    @JvmName("fpqmpuvybgxodqoi")
    public suspend fun identityProviderId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identityProviderId = mapped
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy