![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.network.kotlin.outputs.GetRouteTableRoute.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
/**
*
* @property addressPrefix The destination CIDR to which the route applies.
* @property name The name of the Route Table.
* @property nextHopInIpAddress Contains the IP address packets should be forwarded to.
* @property nextHopType The type of Azure hop the packet should be sent to.
*/
public data class GetRouteTableRoute(
public val addressPrefix: String,
public val name: String,
public val nextHopInIpAddress: String,
public val nextHopType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetRouteTableRoute): GetRouteTableRoute = GetRouteTableRoute(
addressPrefix = javaType.addressPrefix(),
name = javaType.name(),
nextHopInIpAddress = javaType.nextHopInIpAddress(),
nextHopType = javaType.nextHopType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy