com.pulumi.gcp.bigquery.kotlin.inputs.ConnectionSparkMetastoreServiceConfigArgs.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.bigquery.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.bigquery.inputs.ConnectionSparkMetastoreServiceConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property metastoreService Resource name of an existing Dataproc Metastore service in the form of projects/[projectId]/locations/[region]/services/[serviceId].
*/
public data class ConnectionSparkMetastoreServiceConfigArgs(
public val metastoreService: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.bigquery.inputs.ConnectionSparkMetastoreServiceConfigArgs =
com.pulumi.gcp.bigquery.inputs.ConnectionSparkMetastoreServiceConfigArgs.builder()
.metastoreService(metastoreService?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ConnectionSparkMetastoreServiceConfigArgs].
*/
@PulumiTagMarker
public class ConnectionSparkMetastoreServiceConfigArgsBuilder internal constructor() {
private var metastoreService: Output? = null
/**
* @param value Resource name of an existing Dataproc Metastore service in the form of projects/[projectId]/locations/[region]/services/[serviceId].
*/
@JvmName("qrcxleytxjcihmru")
public suspend fun metastoreService(`value`: Output) {
this.metastoreService = value
}
/**
* @param value Resource name of an existing Dataproc Metastore service in the form of projects/[projectId]/locations/[region]/services/[serviceId].
*/
@JvmName("jrnjnjkqmmhiacxw")
public suspend fun metastoreService(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.metastoreService = mapped
}
internal fun build(): ConnectionSparkMetastoreServiceConfigArgs =
ConnectionSparkMetastoreServiceConfigArgs(
metastoreService = metastoreService,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy