com.pulumi.azure.hdinsight.kotlin.outputs.HadoopClusterMetastoresHive.kt Maven / Gradle / Ivy
@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 Hive 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 Hive metastore. Changing this forces a new resource to be created.
* @property username The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
*/
public data class HadoopClusterMetastoresHive(
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.HadoopClusterMetastoresHive): HadoopClusterMetastoresHive = HadoopClusterMetastoresHive(
databaseName = javaType.databaseName(),
password = javaType.password(),
server = javaType.server(),
username = javaType.username(),
)
}
}