com.pulumi.gcp.dataplex.kotlin.outputs.DatascanData.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 DatascanData(
public val entity: String? = null,
public val resource: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataplex.outputs.DatascanData): DatascanData =
DatascanData(
entity = javaType.entity().map({ args0 -> args0 }).orElse(null),
resource = javaType.resource().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy