com.pulumi.gcp.container.kotlin.outputs.GetClusterNodePoolAutoConfig.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.container.kotlin.outputs
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
*
* @property networkTags Collection of Compute Engine network tags that can be applied to a node's underlying VM instance.
* @property resourceManagerTags A map of resource manager tags. Resource manager tag keys and values have the same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456. The field is ignored (both PUT & PATCH) when empty.
*/
public data class GetClusterNodePoolAutoConfig(
public val networkTags: List,
public val resourceManagerTags: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetClusterNodePoolAutoConfig): GetClusterNodePoolAutoConfig = GetClusterNodePoolAutoConfig(
networkTags = javaType.networkTags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.container.kotlin.outputs.GetClusterNodePoolAutoConfigNetworkTag.Companion.toKotlin(args0)
})
}),
resourceManagerTags = javaType.resourceManagerTags().map({ args0 ->
args0.key.to(args0.value)
}).toMap(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy