com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessPolicyExcludeGsuiteArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-kotlin Show documentation
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