![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.portal.kotlin.outputs.DashboardLensResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.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