com.pulumi.gcp.biglake.kotlin.outputs.DatabaseHiveOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.biglake.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property locationUri Cloud Storage folder URI where the database data is stored, starting with "gs://".
* @property parameters Stores user supplied Hive database parameters. An object containing a
* list of"key": value pairs.
* Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.
* - - -
*/
public data class DatabaseHiveOptions(
public val locationUri: String? = null,
public val parameters: Map? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.biglake.outputs.DatabaseHiveOptions): DatabaseHiveOptions = DatabaseHiveOptions(
locationUri = javaType.locationUri().map({ args0 -> args0 }).orElse(null),
parameters = javaType.parameters().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy