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

com.pulumi.azure.securitycenter.kotlin.outputs.AssessmentStatus.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: 6.15.0.0
Show newest version
@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