com.pulumi.gcp.gkeonprem.kotlin.outputs.VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlock.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.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property gateway The network gateway used by the VMware User Cluster.
* @property ips The node's network configurations used by the VMware User Cluster.
* Structure is documented below.
* @property netmask The netmask used by the VMware User Cluster.
*/
public data class VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlock(
public val gateway: String? = null,
public val ips: List? = null,
public val netmask: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkeonprem.outputs.VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlock): VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlock =
VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlock(
gateway = javaType.gateway().map({ args0 -> args0 }).orElse(null),
ips = javaType.ips().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.gkeonprem.kotlin.outputs.VMwareClusterNetworkConfigControlPlaneV2ConfigControlPlaneIpBlockIp.Companion.toKotlin(args0)
})
}),
netmask = javaType.netmask().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy