![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.hybridcontainerservice.kotlin.inputs.VirtualNetworksPropertiesVmipPoolArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.hybridcontainerservice.kotlin.inputs
import com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesVmipPoolArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property endIP Ending IP address for the IP Pool
* @property startIP Starting IP address for the IP Pool
*/
public data class VirtualNetworksPropertiesVmipPoolArgs(
public val endIP: Output? = null,
public val startIP: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesVmipPoolArgs =
com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesVmipPoolArgs.builder()
.endIP(endIP?.applyValue({ args0 -> args0 }))
.startIP(startIP?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VirtualNetworksPropertiesVmipPoolArgs].
*/
@PulumiTagMarker
public class VirtualNetworksPropertiesVmipPoolArgsBuilder internal constructor() {
private var endIP: Output? = null
private var startIP: Output? = null
/**
* @param value Ending IP address for the IP Pool
*/
@JvmName("sqkmnrqooyayafcl")
public suspend fun endIP(`value`: Output) {
this.endIP = value
}
/**
* @param value Starting IP address for the IP Pool
*/
@JvmName("ttmlfnrhxugqffmm")
public suspend fun startIP(`value`: Output) {
this.startIP = value
}
/**
* @param value Ending IP address for the IP Pool
*/
@JvmName("pqeyqubripmkohbb")
public suspend fun endIP(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.endIP = mapped
}
/**
* @param value Starting IP address for the IP Pool
*/
@JvmName("dcevdpfadtyquskg")
public suspend fun startIP(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.startIP = mapped
}
internal fun build(): VirtualNetworksPropertiesVmipPoolArgs =
VirtualNetworksPropertiesVmipPoolArgs(
endIP = endIP,
startIP = startIP,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy