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

com.pulumi.gcp.healthcare.kotlin.outputs.PipelineJobReconciliationPipelineJob.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.13.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.healthcare.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @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 PipelineJobReconciliationPipelineJob(
    public val fhirStoreDestination: String? = null,
    public val matchingUriPrefix: String,
    public val mergeConfig: PipelineJobReconciliationPipelineJobMergeConfig,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.healthcare.outputs.PipelineJobReconciliationPipelineJob): PipelineJobReconciliationPipelineJob = PipelineJobReconciliationPipelineJob(
            fhirStoreDestination = javaType.fhirStoreDestination().map({ args0 -> args0 }).orElse(null),
            matchingUriPrefix = javaType.matchingUriPrefix(),
            mergeConfig = javaType.mergeConfig().let({ args0 ->
                com.pulumi.gcp.healthcare.kotlin.outputs.PipelineJobReconciliationPipelineJobMergeConfig.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy