com.pulumi.gcp.vmwareengine.kotlin.outputs.GetClusterResult.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.vmwareengine.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getCluster.
* @property id The provider-assigned unique ID for this managed resource.
* @property management
* @property name
* @property nodeTypeConfigs
* @property parent
* @property state
* @property uid
*/
public data class GetClusterResult(
public val id: String,
public val management: Boolean,
public val name: String,
public val nodeTypeConfigs: List,
public val parent: String,
public val state: String,
public val uid: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vmwareengine.outputs.GetClusterResult): GetClusterResult = GetClusterResult(
id = javaType.id(),
management = javaType.management(),
name = javaType.name(),
nodeTypeConfigs = javaType.nodeTypeConfigs().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.vmwareengine.kotlin.outputs.GetClusterNodeTypeConfig.Companion.toKotlin(args0)
})
}),
parent = javaType.parent(),
state = javaType.state(),
uid = javaType.uid(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy