
com.pulumi.azurenative.devcenter.kotlin.outputs.ImageCreationErrorDetailsResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.devcenter.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Image creation error details
* @property code An identifier for the error.
* @property message A message describing the error.
*/
public data class ImageCreationErrorDetailsResponse(
public val code: String? = null,
public val message: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.devcenter.outputs.ImageCreationErrorDetailsResponse): ImageCreationErrorDetailsResponse = ImageCreationErrorDetailsResponse(
code = javaType.code().map({ args0 -> args0 }).orElse(null),
message = javaType.message().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy