![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datareplication.kotlin.inputs.HyperVToAzStackHCINicInputArgs.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.datareplication.kotlin.inputs
import com.pulumi.azurenative.datareplication.inputs.HyperVToAzStackHCINicInputArgs.builder
import com.pulumi.azurenative.datareplication.kotlin.enums.VMNicSelection
import com.pulumi.core.Either
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
/**
* HyperVToAzStackHCI NIC properties.
* @property nicId Gets or sets the NIC Id.
* @property selectionTypeForFailover Gets or sets the selection type of the NIC.
* @property targetNetworkId Gets or sets the target network Id within AzStackHCI Cluster.
* @property testNetworkId Gets or sets the target test network Id within AzStackHCI Cluster.
*/
public data class HyperVToAzStackHCINicInputArgs(
public val nicId: Output,
public val selectionTypeForFailover: Output>,
public val targetNetworkId: Output,
public val testNetworkId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datareplication.inputs.HyperVToAzStackHCINicInputArgs =
com.pulumi.azurenative.datareplication.inputs.HyperVToAzStackHCINicInputArgs.builder()
.nicId(nicId.applyValue({ args0 -> args0 }))
.selectionTypeForFailover(
selectionTypeForFailover.applyValue({ args0 ->
args0.transform({ args0 ->
args0
}, { args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.targetNetworkId(targetNetworkId.applyValue({ args0 -> args0 }))
.testNetworkId(testNetworkId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HyperVToAzStackHCINicInputArgs].
*/
@PulumiTagMarker
public class HyperVToAzStackHCINicInputArgsBuilder internal constructor() {
private var nicId: Output? = null
private var selectionTypeForFailover: Output>? = null
private var targetNetworkId: Output? = null
private var testNetworkId: Output? = null
/**
* @param value Gets or sets the NIC Id.
*/
@JvmName("wohfsrkjpxfthbbs")
public suspend fun nicId(`value`: Output) {
this.nicId = value
}
/**
* @param value Gets or sets the selection type of the NIC.
*/
@JvmName("tnrnnksxycyypabs")
public suspend fun selectionTypeForFailover(`value`: Output>) {
this.selectionTypeForFailover = value
}
/**
* @param value Gets or sets the target network Id within AzStackHCI Cluster.
*/
@JvmName("wjgcnfivdmoxjpxq")
public suspend fun targetNetworkId(`value`: Output) {
this.targetNetworkId = value
}
/**
* @param value Gets or sets the target test network Id within AzStackHCI Cluster.
*/
@JvmName("npymwpffhaqtwkjm")
public suspend fun testNetworkId(`value`: Output) {
this.testNetworkId = value
}
/**
* @param value Gets or sets the NIC Id.
*/
@JvmName("acklgxxnjffwokqw")
public suspend fun nicId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.nicId = mapped
}
/**
* @param value Gets or sets the selection type of the NIC.
*/
@JvmName("jlivifhulvxmdddf")
public suspend fun selectionTypeForFailover(`value`: Either) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.selectionTypeForFailover = mapped
}
/**
* @param value Gets or sets the selection type of the NIC.
*/
@JvmName("tdkbdsfkbnjjulxi")
public fun selectionTypeForFailover(`value`: String) {
val toBeMapped = Either.ofLeft(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.selectionTypeForFailover = mapped
}
/**
* @param value Gets or sets the selection type of the NIC.
*/
@JvmName("fbvjodlqyicwyuaa")
public fun selectionTypeForFailover(`value`: VMNicSelection) {
val toBeMapped = Either.ofRight(value)
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.selectionTypeForFailover = mapped
}
/**
* @param value Gets or sets the target network Id within AzStackHCI Cluster.
*/
@JvmName("xtflxbjadvkoaxbw")
public suspend fun targetNetworkId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.targetNetworkId = mapped
}
/**
* @param value Gets or sets the target test network Id within AzStackHCI Cluster.
*/
@JvmName("cjxfwiklpolpxjwc")
public suspend fun testNetworkId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.testNetworkId = mapped
}
internal fun build(): HyperVToAzStackHCINicInputArgs = HyperVToAzStackHCINicInputArgs(
nicId = nicId ?: throw PulumiNullFieldException("nicId"),
selectionTypeForFailover = selectionTypeForFailover ?: throw
PulumiNullFieldException("selectionTypeForFailover"),
targetNetworkId = targetNetworkId ?: throw PulumiNullFieldException("targetNetworkId"),
testNetworkId = testNetworkId ?: throw PulumiNullFieldException("testNetworkId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy