
com.pulumi.googlenative.gkehub.v1.kotlin.outputs.StatusResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.gkehub.v1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Status specifies state for the subcomponent.
* @property code Code specifies AppDevExperienceFeature's subcomponent ready state.
* @property description Description is populated if Code is Failed, explaining why it has failed.
*/
public data class StatusResponse(
public val code: String,
public val description: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.gkehub.v1.outputs.StatusResponse): StatusResponse = StatusResponse(
code = javaType.code(),
description = javaType.description(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy