com.pulumi.gcp.gkeonprem.kotlin.outputs.VMwareClusterNetworkConfigStaticIpConfigIpBlock.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 VMwareClusterNetworkConfigStaticIpConfigIpBlock(
public val gateway: String,
public val ips: List,
public val netmask: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkeonprem.outputs.VMwareClusterNetworkConfigStaticIpConfigIpBlock): VMwareClusterNetworkConfigStaticIpConfigIpBlock =
VMwareClusterNetworkConfigStaticIpConfigIpBlock(
gateway = javaType.gateway(),
ips = javaType.ips().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.gkeonprem.kotlin.outputs.VMwareClusterNetworkConfigStaticIpConfigIpBlockIp.Companion.toKotlin(args0)
})
}),
netmask = javaType.netmask(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy