com.pulumi.gcp.healthcare.kotlin.inputs.PipelineJobMappingPipelineJobMappingConfigArgs.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.healthcare.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.healthcare.inputs.PipelineJobMappingPipelineJobMappingConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property description Describes the mapping configuration.
* @property whistleConfigSource Specifies the path to the mapping configuration for harmonization pipeline.
* Structure is documented below.
*/
public data class PipelineJobMappingPipelineJobMappingConfigArgs(
public val description: Output? = null,
public val whistleConfigSource: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.healthcare.inputs.PipelineJobMappingPipelineJobMappingConfigArgs =
com.pulumi.gcp.healthcare.inputs.PipelineJobMappingPipelineJobMappingConfigArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.whistleConfigSource(
whistleConfigSource?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [PipelineJobMappingPipelineJobMappingConfigArgs].
*/
@PulumiTagMarker
public class PipelineJobMappingPipelineJobMappingConfigArgsBuilder internal constructor() {
private var description: Output? = null
private var whistleConfigSource:
Output? = null
/**
* @param value Describes the mapping configuration.
*/
@JvmName("dxngkgdymjkvjyyw")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Specifies the path to the mapping configuration for harmonization pipeline.
* Structure is documented below.
*/
@JvmName("wxmhdowdcdaicrbd")
public suspend fun whistleConfigSource(`value`: Output) {
this.whistleConfigSource = value
}
/**
* @param value Describes the mapping configuration.
*/
@JvmName("wnublpftqlftgjaa")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value Specifies the path to the mapping configuration for harmonization pipeline.
* Structure is documented below.
*/
@JvmName("porqrwdcccudyebg")
public suspend fun whistleConfigSource(`value`: PipelineJobMappingPipelineJobMappingConfigWhistleConfigSourceArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.whistleConfigSource = mapped
}
/**
* @param argument Specifies the path to the mapping configuration for harmonization pipeline.
* Structure is documented below.
*/
@JvmName("wsgdjdxubbbguqaq")
public suspend fun whistleConfigSource(argument: suspend PipelineJobMappingPipelineJobMappingConfigWhistleConfigSourceArgsBuilder.() -> Unit) {
val toBeMapped =
PipelineJobMappingPipelineJobMappingConfigWhistleConfigSourceArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.whistleConfigSource = mapped
}
internal fun build(): PipelineJobMappingPipelineJobMappingConfigArgs =
PipelineJobMappingPipelineJobMappingConfigArgs(
description = description,
whistleConfigSource = whistleConfigSource,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy