com.pulumi.cloudflare.kotlin.inputs.AccessGroupExcludeOktaArgs.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.AccessGroupExcludeOktaArgs.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 The ID of your Okta identity provider.
* @property names The name of the Okta Group.
*/
public data class AccessGroupExcludeOktaArgs(
public val identityProviderId: Output? = null,
public val names: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.inputs.AccessGroupExcludeOktaArgs =
com.pulumi.cloudflare.inputs.AccessGroupExcludeOktaArgs.builder()
.identityProviderId(identityProviderId?.applyValue({ args0 -> args0 }))
.names(names?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AccessGroupExcludeOktaArgs].
*/
@PulumiTagMarker
public class AccessGroupExcludeOktaArgsBuilder internal constructor() {
private var identityProviderId: Output? = null
private var names: Output>? = null
/**
* @param value The ID of your Okta identity provider.
*/
@JvmName("vrcyrfsxtpukcumc")
public suspend fun identityProviderId(`value`: Output) {
this.identityProviderId = value
}
/**
* @param value The name of the Okta Group.
*/
@JvmName("ewqqbxbjwcwsubla")
public suspend fun names(`value`: Output>) {
this.names = value
}
@JvmName("vicanyjutggpfree")
public suspend fun names(vararg values: Output) {
this.names = Output.all(values.asList())
}
/**
* @param values The name of the Okta Group.
*/
@JvmName("dmasvavhmcoxliie")
public suspend fun names(values: List