com.pulumi.gcp.gkehub.kotlin.outputs.FeatureResourceState.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.gkehub.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property hasResources (Output)
* Whether this Feature has outstanding resources that need to be cleaned up before it can be disabled.
* @property state (Output)
* Output only. The "running state" of the Feature in this Hub.
* Structure is documented below.
*/
public data class FeatureResourceState(
public val hasResources: Boolean? = null,
public val state: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkehub.outputs.FeatureResourceState): FeatureResourceState = FeatureResourceState(
hasResources = javaType.hasResources().map({ args0 -> args0 }).orElse(null),
state = javaType.state().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy