com.pulumi.gcp.dataplex.kotlin.inputs.DatascanDataArgs.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.DatascanDataArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property entity The Dataplex entity that represents the data source(e.g. BigQuery table) for Datascan.
* @property resource The service-qualified full resource name of the cloud resource for a DataScan job to scan against. The field could be:
* (Cloud Storage bucket for DataDiscoveryScan)BigQuery table of type "TABLE" for DataProfileScan/DataQualityScan.
*/
public data class DatascanDataArgs(
public val entity: Output? = null,
public val resource: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.dataplex.inputs.DatascanDataArgs =
com.pulumi.gcp.dataplex.inputs.DatascanDataArgs.builder()
.entity(entity?.applyValue({ args0 -> args0 }))
.resource(resource?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DatascanDataArgs].
*/
@PulumiTagMarker
public class DatascanDataArgsBuilder internal constructor() {
private var entity: Output? = null
private var resource: Output? = null
/**
* @param value The Dataplex entity that represents the data source(e.g. BigQuery table) for Datascan.
*/
@JvmName("wwqpsiuegrewcumh")
public suspend fun entity(`value`: Output) {
this.entity = value
}
/**
* @param value The service-qualified full resource name of the cloud resource for a DataScan job to scan against. The field could be:
* (Cloud Storage bucket for DataDiscoveryScan)BigQuery table of type "TABLE" for DataProfileScan/DataQualityScan.
*/
@JvmName("nqghkxvwxkutighi")
public suspend fun resource(`value`: Output) {
this.resource = value
}
/**
* @param value The Dataplex entity that represents the data source(e.g. BigQuery table) for Datascan.
*/
@JvmName("uflntqcrrjwpruse")
public suspend fun entity(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.entity = mapped
}
/**
* @param value The service-qualified full resource name of the cloud resource for a DataScan job to scan against. The field could be:
* (Cloud Storage bucket for DataDiscoveryScan)BigQuery table of type "TABLE" for DataProfileScan/DataQualityScan.
*/
@JvmName("tixaydrsfelkiosx")
public suspend fun resource(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resource = mapped
}
internal fun build(): DatascanDataArgs = DatascanDataArgs(
entity = entity,
resource = resource,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy