com.pulumi.gcp.dataplex.kotlin.outputs.AssetDiscoveryStatusStat.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.dataplex.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property dataItems The count of data items within the referenced resource.
* @property dataSize The number of stored data bytes within the referenced resource.
* @property filesets The count of fileset entities within the referenced resource.
* @property tables The count of table entities within the referenced resource.
*/
public data class AssetDiscoveryStatusStat(
public val dataItems: Int? = null,
public val dataSize: Int? = null,
public val filesets: Int? = null,
public val tables: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataplex.outputs.AssetDiscoveryStatusStat): AssetDiscoveryStatusStat = AssetDiscoveryStatusStat(
dataItems = javaType.dataItems().map({ args0 -> args0 }).orElse(null),
dataSize = javaType.dataSize().map({ args0 -> args0 }).orElse(null),
filesets = javaType.filesets().map({ args0 -> args0 }).orElse(null),
tables = javaType.tables().map({ args0 -> args0 }).orElse(null),
)
}
}