com.pulumi.azure.network.kotlin.outputs.GetVirtualHubConnectionRouting.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property associatedRouteTableId The ID of the route table associated with this Virtual Hub connection.
* @property inboundRouteMapId The ID of the Route Map associated with this Routing Configuration for inbound learned routes.
* @property outboundRouteMapId The ID of the Route Map associated with this Routing Configuration for outbound advertised routes.
* @property propagatedRouteTables A `propagated_route_table` block as defined below.
* @property staticVnetLocalRouteOverrideCriteria The static VNet local route override criteria that is used to determine whether NVA in spoke VNet is bypassed for traffic with destination in spoke VNet.
* @property staticVnetRoutes A `static_vnet_route` block as defined below.
*/
public data class GetVirtualHubConnectionRouting(
public val associatedRouteTableId: String,
public val inboundRouteMapId: String,
public val outboundRouteMapId: String,
public val propagatedRouteTables: List,
public val staticVnetLocalRouteOverrideCriteria: String,
public val staticVnetRoutes: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetVirtualHubConnectionRouting):
GetVirtualHubConnectionRouting = GetVirtualHubConnectionRouting(
associatedRouteTableId = javaType.associatedRouteTableId(),
inboundRouteMapId = javaType.inboundRouteMapId(),
outboundRouteMapId = javaType.outboundRouteMapId(),
propagatedRouteTables = javaType.propagatedRouteTables().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.network.kotlin.outputs.GetVirtualHubConnectionRoutingPropagatedRouteTable.Companion.toKotlin(args0)
})
}),
staticVnetLocalRouteOverrideCriteria = javaType.staticVnetLocalRouteOverrideCriteria(),
staticVnetRoutes = javaType.staticVnetRoutes().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.network.kotlin.outputs.GetVirtualHubConnectionRoutingStaticVnetRoute.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy