com.pulumi.azure.hdinsight.kotlin.outputs.KafkaClusterMetastoresAmbari.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.String
import kotlin.Suppress
/**
*
* @property databaseName The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
* @property password The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
* @property server The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
* @property username The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
*/
public data class KafkaClusterMetastoresAmbari(
public val databaseName: String,
public val password: String,
public val server: String,
public val username: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.hdinsight.outputs.KafkaClusterMetastoresAmbari):
KafkaClusterMetastoresAmbari = KafkaClusterMetastoresAmbari(
databaseName = javaType.databaseName(),
password = javaType.password(),
server = javaType.server(),
username = javaType.username(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy