com.pulumi.vault.okta.kotlin.inputs.AuthBackendUserArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-vault-kotlin Show documentation
Show all versions of pulumi-vault-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.vault.okta.kotlin.inputs
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 com.pulumi.vault.okta.inputs.AuthBackendUserArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property groups Groups within the Okta auth backend to associate with this user
* @property policies Policies to associate with this user
* @property username Name of the user within Okta
*/
public data class AuthBackendUserArgs(
public val groups: Output>? = null,
public val policies: Output>? = null,
public val username: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.vault.okta.inputs.AuthBackendUserArgs =
com.pulumi.vault.okta.inputs.AuthBackendUserArgs.builder()
.groups(groups?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.policies(policies?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.username(username.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AuthBackendUserArgs].
*/
@PulumiTagMarker
public class AuthBackendUserArgsBuilder internal constructor() {
private var groups: Output>? = null
private var policies: Output>? = null
private var username: Output? = null
/**
* @param value Groups within the Okta auth backend to associate with this user
*/
@JvmName("wpedodlrjkfxpcge")
public suspend fun groups(`value`: Output>) {
this.groups = value
}
@JvmName("hyslcnamdiklxsci")
public suspend fun groups(vararg values: Output) {
this.groups = Output.all(values.asList())
}
/**
* @param values Groups within the Okta auth backend to associate with this user
*/
@JvmName("clkxhukdhwnemdme")
public suspend fun groups(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy