![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.network.kotlin.inputs.ExpressRouteConnectionRoutingArgs.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.network.kotlin.inputs
import com.pulumi.azure.network.inputs.ExpressRouteConnectionRoutingArgs.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.jvm.JvmName
/**
*
* @property associatedRouteTableId The ID of the Virtual Hub Route Table associated with this Express Route Connection.
* @property inboundRouteMapId The ID of the Route Map associated with this Express Route Connection for inbound routes.
* @property outboundRouteMapId The ID of the Route Map associated with this Express Route Connection for outbound routes.
* @property propagatedRouteTable A `propagated_route_table` block as defined below.
*/
public data class ExpressRouteConnectionRoutingArgs(
public val associatedRouteTableId: Output? = null,
public val inboundRouteMapId: Output? = null,
public val outboundRouteMapId: Output? = null,
public val propagatedRouteTable: Output? =
null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.network.inputs.ExpressRouteConnectionRoutingArgs =
com.pulumi.azure.network.inputs.ExpressRouteConnectionRoutingArgs.builder()
.associatedRouteTableId(associatedRouteTableId?.applyValue({ args0 -> args0 }))
.inboundRouteMapId(inboundRouteMapId?.applyValue({ args0 -> args0 }))
.outboundRouteMapId(outboundRouteMapId?.applyValue({ args0 -> args0 }))
.propagatedRouteTable(
propagatedRouteTable?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [ExpressRouteConnectionRoutingArgs].
*/
@PulumiTagMarker
public class ExpressRouteConnectionRoutingArgsBuilder internal constructor() {
private var associatedRouteTableId: Output? = null
private var inboundRouteMapId: Output? = null
private var outboundRouteMapId: Output? = null
private var propagatedRouteTable: Output? =
null
/**
* @param value The ID of the Virtual Hub Route Table associated with this Express Route Connection.
*/
@JvmName("ldmceabhgnpiqbdo")
public suspend fun associatedRouteTableId(`value`: Output) {
this.associatedRouteTableId = value
}
/**
* @param value The ID of the Route Map associated with this Express Route Connection for inbound routes.
*/
@JvmName("wsodnkiokdnqjrhd")
public suspend fun inboundRouteMapId(`value`: Output) {
this.inboundRouteMapId = value
}
/**
* @param value The ID of the Route Map associated with this Express Route Connection for outbound routes.
*/
@JvmName("ohwmvqxuvfwsslwc")
public suspend fun outboundRouteMapId(`value`: Output) {
this.outboundRouteMapId = value
}
/**
* @param value A `propagated_route_table` block as defined below.
*/
@JvmName("pxrltigbqxcgtwqv")
public suspend fun propagatedRouteTable(`value`: Output) {
this.propagatedRouteTable = value
}
/**
* @param value The ID of the Virtual Hub Route Table associated with this Express Route Connection.
*/
@JvmName("lhgvytfrbupsogqx")
public suspend fun associatedRouteTableId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.associatedRouteTableId = mapped
}
/**
* @param value The ID of the Route Map associated with this Express Route Connection for inbound routes.
*/
@JvmName("qqieucbpmrorejgy")
public suspend fun inboundRouteMapId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.inboundRouteMapId = mapped
}
/**
* @param value The ID of the Route Map associated with this Express Route Connection for outbound routes.
*/
@JvmName("aijshgyqcaleqhoo")
public suspend fun outboundRouteMapId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.outboundRouteMapId = mapped
}
/**
* @param value A `propagated_route_table` block as defined below.
*/
@JvmName("tidrqgrhkfqsuido")
public suspend fun propagatedRouteTable(`value`: ExpressRouteConnectionRoutingPropagatedRouteTableArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.propagatedRouteTable = mapped
}
/**
* @param argument A `propagated_route_table` block as defined below.
*/
@JvmName("fsfyatshpybgtqul")
public suspend fun propagatedRouteTable(argument: suspend ExpressRouteConnectionRoutingPropagatedRouteTableArgsBuilder.() -> Unit) {
val toBeMapped = ExpressRouteConnectionRoutingPropagatedRouteTableArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.propagatedRouteTable = mapped
}
internal fun build(): ExpressRouteConnectionRoutingArgs = ExpressRouteConnectionRoutingArgs(
associatedRouteTableId = associatedRouteTableId,
inboundRouteMapId = inboundRouteMapId,
outboundRouteMapId = outboundRouteMapId,
propagatedRouteTable = propagatedRouteTable,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy