![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.looker.kotlin.outputs.InstanceUserMetadata.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.looker.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property additionalDeveloperUserCount Number of additional Developer Users to allocate to the Looker Instance.
* @property additionalStandardUserCount Number of additional Standard Users to allocate to the Looker Instance.
* @property additionalViewerUserCount Number of additional Viewer Users to allocate to the Looker Instance.
*/
public data class InstanceUserMetadata(
public val additionalDeveloperUserCount: Int? = null,
public val additionalStandardUserCount: Int? = null,
public val additionalViewerUserCount: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.looker.outputs.InstanceUserMetadata): InstanceUserMetadata = InstanceUserMetadata(
additionalDeveloperUserCount = javaType.additionalDeveloperUserCount().map({ args0 ->
args0
}).orElse(null),
additionalStandardUserCount = javaType.additionalStandardUserCount().map({ args0 ->
args0
}).orElse(null),
additionalViewerUserCount = javaType.additionalViewerUserCount().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy