com.pulumi.gcp.healthcare.kotlin.inputs.PipelineJobReconciliationPipelineJobArgs.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.PipelineJobReconciliationPipelineJobArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property fhirStoreDestination The harmonized FHIR store to write harmonized FHIR resources to,
* in the format of: project/{projectID}/locations/{locationID}/datasets/{datasetName}/fhirStores/{id}
* @property matchingUriPrefix Specifies the top level directory of the matching configs used
* in all mapping pipelines, which extract properties for resources
* to be matched on.
* Example: gs://{bucket-id}/{path/to/matching/configs}
* @property mergeConfig Specifies the location of the reconciliation configuration.
* Structure is documented below.
*/
public data class PipelineJobReconciliationPipelineJobArgs(
public val fhirStoreDestination: Output? = null,
public val matchingUriPrefix: Output,
public val mergeConfig: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.healthcare.inputs.PipelineJobReconciliationPipelineJobArgs =
com.pulumi.gcp.healthcare.inputs.PipelineJobReconciliationPipelineJobArgs.builder()
.fhirStoreDestination(fhirStoreDestination?.applyValue({ args0 -> args0 }))
.matchingUriPrefix(matchingUriPrefix.applyValue({ args0 -> args0 }))
.mergeConfig(mergeConfig.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [PipelineJobReconciliationPipelineJobArgs].
*/
@PulumiTagMarker
public class PipelineJobReconciliationPipelineJobArgsBuilder internal constructor() {
private var fhirStoreDestination: Output? = null
private var matchingUriPrefix: Output? = null
private var mergeConfig: Output? = null
/**
* @param value The harmonized FHIR store to write harmonized FHIR resources to,
* in the format of: project/{projectID}/locations/{locationID}/datasets/{datasetName}/fhirStores/{id}
*/
@JvmName("fxrhsoqlifudmdbe")
public suspend fun fhirStoreDestination(`value`: Output) {
this.fhirStoreDestination = value
}
/**
* @param value Specifies the top level directory of the matching configs used
* in all mapping pipelines, which extract properties for resources
* to be matched on.
* Example: gs://{bucket-id}/{path/to/matching/configs}
*/
@JvmName("rigohdhspvbvefqa")
public suspend fun matchingUriPrefix(`value`: Output) {
this.matchingUriPrefix = value
}
/**
* @param value Specifies the location of the reconciliation configuration.
* Structure is documented below.
*/
@JvmName("jaykyxsjhwsxfnaa")
public suspend fun mergeConfig(`value`: Output) {
this.mergeConfig = value
}
/**
* @param value The harmonized FHIR store to write harmonized FHIR resources to,
* in the format of: project/{projectID}/locations/{locationID}/datasets/{datasetName}/fhirStores/{id}
*/
@JvmName("chbhpabncwhxfwas")
public suspend fun fhirStoreDestination(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fhirStoreDestination = mapped
}
/**
* @param value Specifies the top level directory of the matching configs used
* in all mapping pipelines, which extract properties for resources
* to be matched on.
* Example: gs://{bucket-id}/{path/to/matching/configs}
*/
@JvmName("oyfvwslvkfxhkets")
public suspend fun matchingUriPrefix(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.matchingUriPrefix = mapped
}
/**
* @param value Specifies the location of the reconciliation configuration.
* Structure is documented below.
*/
@JvmName("xlemcebhdhiunrxj")
public suspend fun mergeConfig(`value`: PipelineJobReconciliationPipelineJobMergeConfigArgs) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.mergeConfig = mapped
}
/**
* @param argument Specifies the location of the reconciliation configuration.
* Structure is documented below.
*/
@JvmName("wqsretamlgoicdsh")
public suspend fun mergeConfig(argument: suspend PipelineJobReconciliationPipelineJobMergeConfigArgsBuilder.() -> Unit) {
val toBeMapped = PipelineJobReconciliationPipelineJobMergeConfigArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.mergeConfig = mapped
}
internal fun build(): PipelineJobReconciliationPipelineJobArgs =
PipelineJobReconciliationPipelineJobArgs(
fhirStoreDestination = fhirStoreDestination,
matchingUriPrefix = matchingUriPrefix ?: throw PulumiNullFieldException("matchingUriPrefix"),
mergeConfig = mergeConfig ?: throw PulumiNullFieldException("mergeConfig"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy