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

com.pulumi.azurenative.security.kotlin.outputs.AssessmentStatusResponseResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.security.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * The result of the assessment
 * @property cause Programmatic code for the cause of the assessment status
 * @property code Programmatic code for the status of the assessment
 * @property description Human readable description of the assessment status
 * @property firstEvaluationDate The time that the assessment was created and first evaluated. Returned as UTC time in ISO 8601 format
 * @property statusChangeDate The time that the status of the assessment last changed. Returned as UTC time in ISO 8601 format
 */
public data class AssessmentStatusResponseResponse(
    public val cause: String? = null,
    public val code: String,
    public val description: String? = null,
    public val firstEvaluationDate: String,
    public val statusChangeDate: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.security.outputs.AssessmentStatusResponseResponse): AssessmentStatusResponseResponse = AssessmentStatusResponseResponse(
            cause = javaType.cause().map({ args0 -> args0 }).orElse(null),
            code = javaType.code(),
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            firstEvaluationDate = javaType.firstEvaluationDate(),
            statusChangeDate = javaType.statusChangeDate(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy