com.pulumi.vault.okta.kotlin.outputs.AuthBackendUser.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 AuthBackendUser(
public val groups: List? = null,
public val policies: List? = null,
public val username: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.vault.okta.outputs.AuthBackendUser): AuthBackendUser =
AuthBackendUser(
groups = javaType.groups().map({ args0 -> args0 }),
policies = javaType.policies().map({ args0 -> args0 }),
username = javaType.username(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy