com.pulumi.gcp.healthcare.kotlin.outputs.DicomStoreStreamConfig.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.outputs
import kotlin.Suppress
/**
*
* @property bigqueryDestination BigQueryDestination to include a fully qualified BigQuery table URI where DICOM instance metadata will be streamed.
* Structure is documented below.
*/
public data class DicomStoreStreamConfig(
public val bigqueryDestination: DicomStoreStreamConfigBigqueryDestination,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.healthcare.outputs.DicomStoreStreamConfig): DicomStoreStreamConfig = DicomStoreStreamConfig(
bigqueryDestination = javaType.bigqueryDestination().let({ args0 ->
com.pulumi.gcp.healthcare.kotlin.outputs.DicomStoreStreamConfigBigqueryDestination.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy