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

com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessGroupExcludeAuthContextArgs.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.ZeroTrustAccessGroupExcludeAuthContextArgs.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 ZeroTrustAccessGroupExcludeAuthContextArgs(
    public val acId: Output,
    public val id: Output,
    public val identityProviderId: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupExcludeAuthContextArgs =
        com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupExcludeAuthContextArgs.builder()
            .acId(acId.applyValue({ args0 -> args0 }))
            .id(id.applyValue({ args0 -> args0 }))
            .identityProviderId(identityProviderId.applyValue({ args0 -> args0 })).build()
}

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

    /**
     * @param value The ID of the Authentication Context.
     */
    @JvmName("rtrweeyydmkjjnjq")
    public suspend fun id(`value`: Output) {
        this.id = value
    }

    /**
     * @param value The ID of the Azure Identity provider.
     */
    @JvmName("dkxjpfyjnmnsbhbp")
    public suspend fun identityProviderId(`value`: Output) {
        this.identityProviderId = value
    }

    /**
     * @param value The ACID of the Authentication Context.
     */
    @JvmName("jsivxtvltauvedbr")
    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("oqjnvicrprjoxywe")
    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("llwlamjhsomshgrp")
    public suspend fun identityProviderId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.identityProviderId = mapped
    }

    internal fun build(): ZeroTrustAccessGroupExcludeAuthContextArgs =
        ZeroTrustAccessGroupExcludeAuthContextArgs(
            acId = acId ?: throw PulumiNullFieldException("acId"),
            id = id ?: throw PulumiNullFieldException("id"),
            identityProviderId = identityProviderId ?: throw PulumiNullFieldException("identityProviderId"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy