com.pulumi.gcp.firebase.kotlin.outputs.ExtensionsInstanceRuntimeData.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.firebase.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property fatalError The fatal error state for the extension instance
* Structure is documented below.
* @property processingState The processing state for the extension instance
* Structure is documented below.
* @property stateUpdateTime The time of the last state update.
*/
public data class ExtensionsInstanceRuntimeData(
public val fatalError: ExtensionsInstanceRuntimeDataFatalError? = null,
public val processingState: ExtensionsInstanceRuntimeDataProcessingState? = null,
public val stateUpdateTime: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.firebase.outputs.ExtensionsInstanceRuntimeData): ExtensionsInstanceRuntimeData = ExtensionsInstanceRuntimeData(
fatalError = javaType.fatalError().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.firebase.kotlin.outputs.ExtensionsInstanceRuntimeDataFatalError.Companion.toKotlin(args0)
})
}).orElse(null),
processingState = javaType.processingState().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.firebase.kotlin.outputs.ExtensionsInstanceRuntimeDataProcessingState.Companion.toKotlin(args0)
})
}).orElse(null),
stateUpdateTime = javaType.stateUpdateTime().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy