com.pulumi.azure.network.kotlin.outputs.GetVirtualHubRouteTableRoute.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 destinations A list of destination addresses for this route.
* @property destinationsType The type of destinations.
* @property name The name of the Virtual Hub Route Table.
* @property nextHop The next hop's resource ID.
* @property nextHopType The type of next hop.
*/
public data class GetVirtualHubRouteTableRoute(
public val destinations: List,
public val destinationsType: String,
public val name: String,
public val nextHop: String,
public val nextHopType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetVirtualHubRouteTableRoute):
GetVirtualHubRouteTableRoute = GetVirtualHubRouteTableRoute(
destinations = javaType.destinations().map({ args0 -> args0 }),
destinationsType = javaType.destinationsType(),
name = javaType.name(),
nextHop = javaType.nextHop(),
nextHopType = javaType.nextHopType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy