All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.biglake.kotlin.outputs.DatabaseHiveOptions.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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