com.pulumi.azure.hdinsight.kotlin.outputs.HadoopClusterMetastores.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.hdinsight.kotlin.outputs
import kotlin.Suppress
/**
*
* @property ambari An `ambari` block as defined below.
* @property hive A `hive` block as defined below.
* @property oozie An `oozie` block as defined below.
*/
public data class HadoopClusterMetastores(
public val ambari: HadoopClusterMetastoresAmbari? = null,
public val hive: HadoopClusterMetastoresHive? = null,
public val oozie: HadoopClusterMetastoresOozie? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.hdinsight.outputs.HadoopClusterMetastores):
HadoopClusterMetastores = HadoopClusterMetastores(
ambari = javaType.ambari().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.hdinsight.kotlin.outputs.HadoopClusterMetastoresAmbari.Companion.toKotlin(args0)
})
}).orElse(null),
hive = javaType.hive().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.hdinsight.kotlin.outputs.HadoopClusterMetastoresHive.Companion.toKotlin(args0)
})
}).orElse(null),
oozie = javaType.oozie().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.hdinsight.kotlin.outputs.HadoopClusterMetastoresOozie.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy