All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.looker.kotlin.outputs.InstanceUserMetadata.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.13.1.0
Show newest version
@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