com.pulumi.gcp.dataplex.kotlin.outputs.LakeAssetStatus.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.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property activeAssets Number of active assets.
* @property securityPolicyApplyingAssets Number of assets that are in process of updating the security policy on attached resources.
* @property updateTime Output only. The time when the lake was last updated.
*/
public data class LakeAssetStatus(
public val activeAssets: Int? = null,
public val securityPolicyApplyingAssets: Int? = null,
public val updateTime: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataplex.outputs.LakeAssetStatus): LakeAssetStatus = LakeAssetStatus(
activeAssets = javaType.activeAssets().map({ args0 -> args0 }).orElse(null),
securityPolicyApplyingAssets = javaType.securityPolicyApplyingAssets().map({ args0 ->
args0
}).orElse(null),
updateTime = javaType.updateTime().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy