
com.pulumi.azure.network.kotlin.outputs.VpnGatewayConnectionRoutingPropagatedRouteTable.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 A list of labels to assign to this route table.
* @property routeTableIds A list of Route Table IDs to associated with this VPN Gateway Connection.
*/
public data class VpnGatewayConnectionRoutingPropagatedRouteTable(
public val labels: List? = null,
public val routeTableIds: List,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.network.outputs.VpnGatewayConnectionRoutingPropagatedRouteTable):
VpnGatewayConnectionRoutingPropagatedRouteTable =
VpnGatewayConnectionRoutingPropagatedRouteTable(
labels = javaType.labels().map({ args0 -> args0 }),
routeTableIds = javaType.routeTableIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy