com.pulumi.gcp.dataproc.kotlin.inputs.ClusterClusterConfigMetastoreConfigArgs.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.dataproc.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.dataproc.inputs.ClusterClusterConfigMetastoreConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property dataprocMetastoreService Resource name of an existing Dataproc Metastore service.
* Only resource names including projectid and location (region) are valid. Examples:
* `projects/[projectId]/locations/[dataproc_region]/services/[service-name]`
*/
public data class ClusterClusterConfigMetastoreConfigArgs(
public val dataprocMetastoreService: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.dataproc.inputs.ClusterClusterConfigMetastoreConfigArgs =
com.pulumi.gcp.dataproc.inputs.ClusterClusterConfigMetastoreConfigArgs.builder()
.dataprocMetastoreService(dataprocMetastoreService.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterClusterConfigMetastoreConfigArgs].
*/
@PulumiTagMarker
public class ClusterClusterConfigMetastoreConfigArgsBuilder internal constructor() {
private var dataprocMetastoreService: Output? = null
/**
* @param value Resource name of an existing Dataproc Metastore service.
* Only resource names including projectid and location (region) are valid. Examples:
* `projects/[projectId]/locations/[dataproc_region]/services/[service-name]`
*/
@JvmName("euqtphimglcmiffx")
public suspend fun dataprocMetastoreService(`value`: Output) {
this.dataprocMetastoreService = value
}
/**
* @param value Resource name of an existing Dataproc Metastore service.
* Only resource names including projectid and location (region) are valid. Examples:
* `projects/[projectId]/locations/[dataproc_region]/services/[service-name]`
*/
@JvmName("uifmgbidhyodryfl")
public suspend fun dataprocMetastoreService(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.dataprocMetastoreService = mapped
}
internal fun build(): ClusterClusterConfigMetastoreConfigArgs =
ClusterClusterConfigMetastoreConfigArgs(
dataprocMetastoreService = dataprocMetastoreService ?: throw
PulumiNullFieldException("dataprocMetastoreService"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy