com.pulumi.gcp.gkeonprem.kotlin.inputs.BareMetalClusterNetworkConfigIslandModeCidrArgs.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.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.gkeonprem.inputs.BareMetalClusterNetworkConfigIslandModeCidrArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property podAddressCidrBlocks All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges. This field cannot be changed after creation.
* @property serviceAddressCidrBlocks All services in the cluster are assigned an RFC1918 IPv4 address from these ranges. This field cannot be changed after creation.
*/
public data class BareMetalClusterNetworkConfigIslandModeCidrArgs(
public val podAddressCidrBlocks: Output>,
public val serviceAddressCidrBlocks: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.BareMetalClusterNetworkConfigIslandModeCidrArgs =
com.pulumi.gcp.gkeonprem.inputs.BareMetalClusterNetworkConfigIslandModeCidrArgs.builder()
.podAddressCidrBlocks(podAddressCidrBlocks.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.serviceAddressCidrBlocks(
serviceAddressCidrBlocks.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
).build()
}
/**
* Builder for [BareMetalClusterNetworkConfigIslandModeCidrArgs].
*/
@PulumiTagMarker
public class BareMetalClusterNetworkConfigIslandModeCidrArgsBuilder internal constructor() {
private var podAddressCidrBlocks: Output>? = null
private var serviceAddressCidrBlocks: Output>? = null
/**
* @param value All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges. This field cannot be changed after creation.
*/
@JvmName("qssulhlpyfciqdqk")
public suspend fun podAddressCidrBlocks(`value`: Output>) {
this.podAddressCidrBlocks = value
}
@JvmName("xxygnwrlqasfnyxb")
public suspend fun podAddressCidrBlocks(vararg values: Output) {
this.podAddressCidrBlocks = Output.all(values.asList())
}
/**
* @param values All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges. This field cannot be changed after creation.
*/
@JvmName("gxoohumxvmqivsdq")
public suspend fun podAddressCidrBlocks(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy