
com.pulumi.azurenative.baremetalinfrastructure.kotlin.inputs.NetworkProfileArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.baremetalinfrastructure.kotlin.inputs
import com.pulumi.azurenative.baremetalinfrastructure.inputs.NetworkProfileArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Specifies the network settings for the Azure Bare Metal Instance disks.
* @property circuitId Specifies the circuit id for connecting to express route.
* @property networkInterfaces Specifies the network interfaces for the Azure Bare Metal Instance.
*/
public data class NetworkProfileArgs(
public val circuitId: Output? = null,
public val networkInterfaces: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.baremetalinfrastructure.inputs.NetworkProfileArgs =
com.pulumi.azurenative.baremetalinfrastructure.inputs.NetworkProfileArgs.builder()
.circuitId(circuitId?.applyValue({ args0 -> args0 }))
.networkInterfaces(
networkInterfaces?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [NetworkProfileArgs].
*/
@PulumiTagMarker
public class NetworkProfileArgsBuilder internal constructor() {
private var circuitId: Output? = null
private var networkInterfaces: Output>? = null
/**
* @param value Specifies the circuit id for connecting to express route.
*/
@JvmName("xnybsprlwpfvslxn")
public suspend fun circuitId(`value`: Output) {
this.circuitId = value
}
/**
* @param value Specifies the network interfaces for the Azure Bare Metal Instance.
*/
@JvmName("xkkpevmsjewfxluq")
public suspend fun networkInterfaces(`value`: Output>) {
this.networkInterfaces = value
}
@JvmName("xyommpnxxinaerob")
public suspend fun networkInterfaces(vararg values: Output) {
this.networkInterfaces = Output.all(values.asList())
}
/**
* @param values Specifies the network interfaces for the Azure Bare Metal Instance.
*/
@JvmName("yuytrqxjtrtgkodr")
public suspend fun networkInterfaces(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy