com.pulumi.gcp.dataplex.kotlin.outputs.DatascanDataProfileSpecExcludeFields.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.dataplex.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property fieldNames Expected input is a list of fully qualified names of fields as in the schema.
* Only top-level field names for nested fields are supported.
* For instance, if 'x' is of nested field type, listing 'x' is supported but 'x.y.z' is not supported. Here 'y' and 'y.z' are nested fields of 'x'.
*/
public data class DatascanDataProfileSpecExcludeFields(
public val fieldNames: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataplex.outputs.DatascanDataProfileSpecExcludeFields): DatascanDataProfileSpecExcludeFields = DatascanDataProfileSpecExcludeFields(
fieldNames = javaType.fieldNames().map({ args0 -> args0 }),
)
}
}