com.pulumi.gcp.sql.kotlin.outputs.UserSqlServerUserDetail.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.sql.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property disabled If the user has been disabled.
* @property serverRoles The server roles for this user in the database.
*/
public data class UserSqlServerUserDetail(
public val disabled: Boolean? = null,
public val serverRoles: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.sql.outputs.UserSqlServerUserDetail): UserSqlServerUserDetail = UserSqlServerUserDetail(
disabled = javaType.disabled().map({ args0 -> args0 }).orElse(null),
serverRoles = javaType.serverRoles().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy