com.pulumi.gcp.dataplex.kotlin.inputs.DatascanDataProfileSpecPostScanActionsArgs.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.dataplex.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.dataplex.inputs.DatascanDataProfileSpecPostScanActionsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property bigqueryExport If set, results will be exported to the provided BigQuery table.
* Structure is documented below.
*/
public data class DatascanDataProfileSpecPostScanActionsArgs(
public val bigqueryExport: Output? =
null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.dataplex.inputs.DatascanDataProfileSpecPostScanActionsArgs =
com.pulumi.gcp.dataplex.inputs.DatascanDataProfileSpecPostScanActionsArgs.builder()
.bigqueryExport(
bigqueryExport?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [DatascanDataProfileSpecPostScanActionsArgs].
*/
@PulumiTagMarker
public class DatascanDataProfileSpecPostScanActionsArgsBuilder internal constructor() {
private var bigqueryExport: Output? =
null
/**
* @param value If set, results will be exported to the provided BigQuery table.
* Structure is documented below.
*/
@JvmName("ppnluaorxgbmlufh")
public suspend fun bigqueryExport(`value`: Output) {
this.bigqueryExport = value
}
/**
* @param value If set, results will be exported to the provided BigQuery table.
* Structure is documented below.
*/
@JvmName("gmxehjtgbsnkbacj")
public suspend fun bigqueryExport(`value`: DatascanDataProfileSpecPostScanActionsBigqueryExportArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.bigqueryExport = mapped
}
/**
* @param argument If set, results will be exported to the provided BigQuery table.
* Structure is documented below.
*/
@JvmName("mpjodvmdhembhobu")
public suspend fun bigqueryExport(argument: suspend DatascanDataProfileSpecPostScanActionsBigqueryExportArgsBuilder.() -> Unit) {
val toBeMapped = DatascanDataProfileSpecPostScanActionsBigqueryExportArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.bigqueryExport = mapped
}
internal fun build(): DatascanDataProfileSpecPostScanActionsArgs =
DatascanDataProfileSpecPostScanActionsArgs(
bigqueryExport = bigqueryExport,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy