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

com.pulumi.azurenative.portal.kotlin.outputs.DashboardLensResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.portal.kotlin.outputs

import kotlin.Any
import kotlin.Int
import kotlin.Suppress
import kotlin.collections.List

/**
 * A dashboard lens.
 * @property metadata The dashboard len's metadata.
 * @property order The lens order.
 * @property parts The dashboard parts.
 */
public data class DashboardLensResponse(
    public val metadata: Any? = null,
    public val order: Int,
    public val parts: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.portal.outputs.DashboardLensResponse): DashboardLensResponse = DashboardLensResponse(
            metadata = javaType.metadata().map({ args0 -> args0 }).orElse(null),
            order = javaType.order(),
            parts = javaType.parts().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.portal.kotlin.outputs.DashboardPartsResponse.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy