
com.pulumi.azure.network.kotlin.outputs.ExpressRouteConnectionRoutingPropagatedRouteTable.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.network.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property labels The list of labels to logically group route tables.
* @property routeTableIds A list of IDs of the Virtual Hub Route Table to propagate routes from Express Route Connection to the route table.
*/
public data class ExpressRouteConnectionRoutingPropagatedRouteTable(
public val labels: List? = null,
public val routeTableIds: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.ExpressRouteConnectionRoutingPropagatedRouteTable): ExpressRouteConnectionRoutingPropagatedRouteTable =
ExpressRouteConnectionRoutingPropagatedRouteTable(
labels = javaType.labels().map({ args0 -> args0 }),
routeTableIds = javaType.routeTableIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy