![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.securitycenter.kotlin.outputs.AssessmentStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.securitycenter.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property cause Specifies the cause of the assessment status.
* @property code Specifies the programmatic code of the assessment status. Possible values are `Healthy`, `Unhealthy` and `NotApplicable`.
* @property description Specifies the human readable description of the assessment status.
*/
public data class AssessmentStatus(
public val cause: String? = null,
public val code: String,
public val description: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.securitycenter.outputs.AssessmentStatus): AssessmentStatus = AssessmentStatus(
cause = javaType.cause().map({ args0 -> args0 }).orElse(null),
code = javaType.code(),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy