![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.azurestackhci.kotlin.inputs.RouteTableArgs.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.azurestackhci.kotlin.inputs
import com.pulumi.azurenative.azurestackhci.inputs.RouteTableArgs.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.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Route table resource.
* @property routes Collection of routes contained within a route table.
*/
public data class RouteTableArgs(
public val routes: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.azurestackhci.inputs.RouteTableArgs =
com.pulumi.azurenative.azurestackhci.inputs.RouteTableArgs.builder()
.routes(
routes?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [RouteTableArgs].
*/
@PulumiTagMarker
public class RouteTableArgsBuilder internal constructor() {
private var routes: Output>? = null
/**
* @param value Collection of routes contained within a route table.
*/
@JvmName("wfophqdodqwrftnr")
public suspend fun routes(`value`: Output>) {
this.routes = value
}
@JvmName("vubsaiebirftevhj")
public suspend fun routes(vararg values: Output) {
this.routes = Output.all(values.asList())
}
/**
* @param values Collection of routes contained within a route table.
*/
@JvmName("agmbhqxgoionexdk")
public suspend fun routes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy