All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.dataplex.kotlin.outputs.DatascanData.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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