com.pulumi.cloudflare.kotlin.inputs.ZeroTrustAccessGroupIncludeOktaArgs.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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.inputs
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeOktaArgs.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 identityProviderId
* @property names
*/
public data class ZeroTrustAccessGroupIncludeOktaArgs(
public val identityProviderId: Output? = null,
public val names: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeOktaArgs =
com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeOktaArgs.builder()
.identityProviderId(identityProviderId?.applyValue({ args0 -> args0 }))
.names(names?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ZeroTrustAccessGroupIncludeOktaArgs].
*/
@PulumiTagMarker
public class ZeroTrustAccessGroupIncludeOktaArgsBuilder internal constructor() {
private var identityProviderId: Output? = null
private var names: Output>? = null
/**
* @param value
*/
@JvmName("wwomxortgncodkgt")
public suspend fun identityProviderId(`value`: Output) {
this.identityProviderId = value
}
/**
* @param value
*/
@JvmName("qtepoeqkskrhpmnl")
public suspend fun names(`value`: Output>) {
this.names = value
}
@JvmName("jhrxqdkxwisbedoq")
public suspend fun names(vararg values: Output) {
this.names = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("kbwduhbkxgqiawgm")
public suspend fun names(values: List