Route Table Route
data class RouteTableRoute(val addressPrefix: String, val name: String, val nextHopInIpAddress: String? = null, val nextHopType: String)
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
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
.