All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.network.kotlin.outputs.GetRouteTableRoute.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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