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

com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessPolicyExcludeGsuiteArgs.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.ZeroTrustAccessPolicyExcludeGsuiteArgs.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.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property emails The email of the Google Workspace group.
 * @property identityProviderId The ID of your Google Workspace identity provider.
 */
public data class ZeroTrustAccessPolicyExcludeGsuiteArgs(
    public val emails: Output>? = null,
    public val identityProviderId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessPolicyExcludeGsuiteArgs =
        com.pulumi.cloudflare.inputs.ZeroTrustAccessPolicyExcludeGsuiteArgs.builder()
            .emails(emails?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .identityProviderId(identityProviderId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ZeroTrustAccessPolicyExcludeGsuiteArgs].
 */
@PulumiTagMarker
public class ZeroTrustAccessPolicyExcludeGsuiteArgsBuilder internal constructor() {
    private var emails: Output>? = null

    private var identityProviderId: Output? = null

    /**
     * @param value The email of the Google Workspace group.
     */
    @JvmName("atertsvgqmgnjmcf")
    public suspend fun emails(`value`: Output>) {
        this.emails = value
    }

    @JvmName("hpwukjhuvyytdddn")
    public suspend fun emails(vararg values: Output) {
        this.emails = Output.all(values.asList())
    }

    /**
     * @param values The email of the Google Workspace group.
     */
    @JvmName("fbaudmlrumbdspep")
    public suspend fun emails(values: List>) {
        this.emails = Output.all(values)
    }

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

    /**
     * @param value The email of the Google Workspace group.
     */
    @JvmName("blwfpunkbkffrhsm")
    public suspend fun emails(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.emails = mapped
    }

    /**
     * @param values The email of the Google Workspace group.
     */
    @JvmName("quwxcmtdohutwsbl")
    public suspend fun emails(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.emails = mapped
    }

    /**
     * @param value The ID of your Google Workspace identity provider.
     */
    @JvmName("kacwdpqpbucsrswa")
    public suspend fun identityProviderId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identityProviderId = mapped
    }

    internal fun build(): ZeroTrustAccessPolicyExcludeGsuiteArgs =
        ZeroTrustAccessPolicyExcludeGsuiteArgs(
            emails = emails,
            identityProviderId = identityProviderId,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy