com.pulumi.gcp.healthcare.kotlin.outputs.FhirStoreStreamConfigBigqueryDestination.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.String
import kotlin.Suppress
/**
*
* @property datasetUri BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId
* @property schemaConfig The configuration for the exported BigQuery schema.
* Structure is documented below.
*/
public data class FhirStoreStreamConfigBigqueryDestination(
public val datasetUri: String,
public val schemaConfig: FhirStoreStreamConfigBigqueryDestinationSchemaConfig,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.healthcare.outputs.FhirStoreStreamConfigBigqueryDestination): FhirStoreStreamConfigBigqueryDestination = FhirStoreStreamConfigBigqueryDestination(
datasetUri = javaType.datasetUri(),
schemaConfig = javaType.schemaConfig().let({ args0 ->
com.pulumi.gcp.healthcare.kotlin.outputs.FhirStoreStreamConfigBigqueryDestinationSchemaConfig.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy