RouteTableRoute

data class RouteTableRoute(val addressPrefix: String, val name: String, val nextHopInIpAddress: String? = null, val nextHopType: String)

Constructors

Link copied to clipboard
constructor(addressPrefix: String, name: String, nextHopInIpAddress: String? = null, nextHopType: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The destination to which the route applies. Can be CIDR (such as 10.1.0.0/16) or Azure Service Tag (such as ApiManagement, AzureBackup or AzureMonitor) format.

Link copied to clipboard

The name of the route.

Link copied to clipboard

Contains the IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.

Link copied to clipboard

The type of Azure hop the packet should be sent to. Possible values are VirtualNetworkGateway, VnetLocal, Internet, VirtualAppliance and None.