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

com.pulumi.cloudflare.kotlin.inputs.AccessIdentityProviderScimConfigArgs.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.AccessIdentityProviderScimConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property enabled
 * @property groupMemberDeprovision
 * @property seatDeprovision
 * @property secret
 * @property userDeprovision
 */
public data class AccessIdentityProviderScimConfigArgs(
    public val enabled: Output? = null,
    public val groupMemberDeprovision: Output? = null,
    public val seatDeprovision: Output? = null,
    public val secret: Output? = null,
    public val userDeprovision: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.AccessIdentityProviderScimConfigArgs =
        com.pulumi.cloudflare.inputs.AccessIdentityProviderScimConfigArgs.builder()
            .enabled(enabled?.applyValue({ args0 -> args0 }))
            .groupMemberDeprovision(groupMemberDeprovision?.applyValue({ args0 -> args0 }))
            .seatDeprovision(seatDeprovision?.applyValue({ args0 -> args0 }))
            .secret(secret?.applyValue({ args0 -> args0 }))
            .userDeprovision(userDeprovision?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AccessIdentityProviderScimConfigArgs].
 */
@PulumiTagMarker
public class AccessIdentityProviderScimConfigArgsBuilder internal constructor() {
    private var enabled: Output? = null

    private var groupMemberDeprovision: Output? = null

    private var seatDeprovision: Output? = null

    private var secret: Output? = null

    private var userDeprovision: Output? = null

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

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

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

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

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

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

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

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

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

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

    internal fun build(): AccessIdentityProviderScimConfigArgs = AccessIdentityProviderScimConfigArgs(
        enabled = enabled,
        groupMemberDeprovision = groupMemberDeprovision,
        seatDeprovision = seatDeprovision,
        secret = secret,
        userDeprovision = userDeprovision,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy