![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.stack.kotlin.inputs.HciLogicalNetworkSubnetIpPoolArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.stack.kotlin.inputs
import com.pulumi.azure.stack.inputs.HciLogicalNetworkSubnetIpPoolArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property end The IPv4 address of the end of the IP address pool. Changing this forces a new resource to be created.
* @property start The IPv4 address of the start of the IP address pool. Changing this forces a new resource to be created.
*/
public data class HciLogicalNetworkSubnetIpPoolArgs(
public val end: Output,
public val start: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.stack.inputs.HciLogicalNetworkSubnetIpPoolArgs =
com.pulumi.azure.stack.inputs.HciLogicalNetworkSubnetIpPoolArgs.builder()
.end(end.applyValue({ args0 -> args0 }))
.start(start.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HciLogicalNetworkSubnetIpPoolArgs].
*/
@PulumiTagMarker
public class HciLogicalNetworkSubnetIpPoolArgsBuilder internal constructor() {
private var end: Output? = null
private var start: Output? = null
/**
* @param value The IPv4 address of the end of the IP address pool. Changing this forces a new resource to be created.
*/
@JvmName("gkuhwtbmqdehdbtx")
public suspend fun end(`value`: Output) {
this.end = value
}
/**
* @param value The IPv4 address of the start of the IP address pool. Changing this forces a new resource to be created.
*/
@JvmName("iiptbwjdurdtglgw")
public suspend fun start(`value`: Output) {
this.start = value
}
/**
* @param value The IPv4 address of the end of the IP address pool. Changing this forces a new resource to be created.
*/
@JvmName("darvndkgpwighuwq")
public suspend fun end(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.end = mapped
}
/**
* @param value The IPv4 address of the start of the IP address pool. Changing this forces a new resource to be created.
*/
@JvmName("yvaofdjxhlxjpabw")
public suspend fun start(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.start = mapped
}
internal fun build(): HciLogicalNetworkSubnetIpPoolArgs = HciLogicalNetworkSubnetIpPoolArgs(
end = end ?: throw PulumiNullFieldException("end"),
start = start ?: throw PulumiNullFieldException("start"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy