com.pulumi.gcp.looker.kotlin.inputs.InstanceUserMetadataArgs.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.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.looker.inputs.InstanceUserMetadataArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @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 InstanceUserMetadataArgs(
public val additionalDeveloperUserCount: Output? = null,
public val additionalStandardUserCount: Output? = null,
public val additionalViewerUserCount: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.looker.inputs.InstanceUserMetadataArgs =
com.pulumi.gcp.looker.inputs.InstanceUserMetadataArgs.builder()
.additionalDeveloperUserCount(additionalDeveloperUserCount?.applyValue({ args0 -> args0 }))
.additionalStandardUserCount(additionalStandardUserCount?.applyValue({ args0 -> args0 }))
.additionalViewerUserCount(additionalViewerUserCount?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [InstanceUserMetadataArgs].
*/
@PulumiTagMarker
public class InstanceUserMetadataArgsBuilder internal constructor() {
private var additionalDeveloperUserCount: Output? = null
private var additionalStandardUserCount: Output? = null
private var additionalViewerUserCount: Output? = null
/**
* @param value Number of additional Developer Users to allocate to the Looker Instance.
*/
@JvmName("fhbkhsfiqhwmudkm")
public suspend fun additionalDeveloperUserCount(`value`: Output) {
this.additionalDeveloperUserCount = value
}
/**
* @param value Number of additional Standard Users to allocate to the Looker Instance.
*/
@JvmName("egbmrpexuxoytnjt")
public suspend fun additionalStandardUserCount(`value`: Output) {
this.additionalStandardUserCount = value
}
/**
* @param value Number of additional Viewer Users to allocate to the Looker Instance.
*/
@JvmName("akdgcwuunkvkltnv")
public suspend fun additionalViewerUserCount(`value`: Output) {
this.additionalViewerUserCount = value
}
/**
* @param value Number of additional Developer Users to allocate to the Looker Instance.
*/
@JvmName("baytobuirlelqaic")
public suspend fun additionalDeveloperUserCount(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.additionalDeveloperUserCount = mapped
}
/**
* @param value Number of additional Standard Users to allocate to the Looker Instance.
*/
@JvmName("mqqnxrhpykqofyjh")
public suspend fun additionalStandardUserCount(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.additionalStandardUserCount = mapped
}
/**
* @param value Number of additional Viewer Users to allocate to the Looker Instance.
*/
@JvmName("uitabkpcwyktcfta")
public suspend fun additionalViewerUserCount(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.additionalViewerUserCount = mapped
}
internal fun build(): InstanceUserMetadataArgs = InstanceUserMetadataArgs(
additionalDeveloperUserCount = additionalDeveloperUserCount,
additionalStandardUserCount = additionalStandardUserCount,
additionalViewerUserCount = additionalViewerUserCount,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy