![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.inputs.QosIpRangeArgs.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.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.QosIpRangeArgs.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
/**
* Qos Traffic Profiler IP Range properties.
* @property endIP End IP Address.
* @property startIP Start IP Address.
*/
public data class QosIpRangeArgs(
public val endIP: Output? = null,
public val startIP: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.QosIpRangeArgs =
com.pulumi.azurenative.network.inputs.QosIpRangeArgs.builder()
.endIP(endIP?.applyValue({ args0 -> args0 }))
.startIP(startIP?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [QosIpRangeArgs].
*/
@PulumiTagMarker
public class QosIpRangeArgsBuilder internal constructor() {
private var endIP: Output? = null
private var startIP: Output? = null
/**
* @param value End IP Address.
*/
@JvmName("uadjxsyyvcbcekqp")
public suspend fun endIP(`value`: Output) {
this.endIP = value
}
/**
* @param value Start IP Address.
*/
@JvmName("qyhnsepfslfqgilp")
public suspend fun startIP(`value`: Output) {
this.startIP = value
}
/**
* @param value End IP Address.
*/
@JvmName("bjlcwrphogadgmxk")
public suspend fun endIP(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.endIP = mapped
}
/**
* @param value Start IP Address.
*/
@JvmName("hroxqjkpsmthldve")
public suspend fun startIP(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.startIP = mapped
}
internal fun build(): QosIpRangeArgs = QosIpRangeArgs(
endIP = endIP,
startIP = startIP,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy