com.pulumi.gcp.gkeonprem.kotlin.outputs.VMwareClusterDataplaneV2.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.gkeonprem.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property advancedNetworking Enable advanced networking which requires dataplane_v2_enabled to be set true.
* @property dataplaneV2Enabled Enables Dataplane V2.
* @property windowsDataplaneV2Enabled Enable Dataplane V2 for clusters with Windows nodes.
*/
public data class VMwareClusterDataplaneV2(
public val advancedNetworking: Boolean? = null,
public val dataplaneV2Enabled: Boolean? = null,
public val windowsDataplaneV2Enabled: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkeonprem.outputs.VMwareClusterDataplaneV2): VMwareClusterDataplaneV2 = VMwareClusterDataplaneV2(
advancedNetworking = javaType.advancedNetworking().map({ args0 -> args0 }).orElse(null),
dataplaneV2Enabled = javaType.dataplaneV2Enabled().map({ args0 -> args0 }).orElse(null),
windowsDataplaneV2Enabled = javaType.windowsDataplaneV2Enabled().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy