Class Route
java.lang.Object
org.jclouds.googlecomputeengine.domain.Route
-
Method Summary
Modifier and TypeMethodDescriptionstatic Route
create
(String id, Date creationTimestamp, URI selfLink, String name, String description, URI network, List<String> tags, String destRange, int priority, URI nextHopInstance, String nextHopIp, URI nextHopNetwork, URI nextHopGateway, List<Warning> warnings, URI nextHopVpnTunnel) abstract Date
abstract String
abstract String
The destination range of outgoing packets that this route applies to.abstract String
id()
abstract String
name()
abstract URI
network()
abstract URI
The gateway that should handle matching packets.abstract URI
The fully-qualified URL to an instance that should handle matching packets.abstract String
The network IP address of an instance that should handle matching packets.abstract URI
The local network if it should handle matching packets.abstract URI
The URL to a VpnTunnel that should handle matching packets.abstract int
priority()
The priority of this route.abstract URI
selfLink()
tags()
The set of instance items to which this route applies.warnings()
Potential misconfigurations are detected for this route.
-
Method Details
-
id
-
creationTimestamp
-
selfLink
-
name
-
description
-
network
-
tags
The set of instance items to which this route applies. -
destRange
The destination range of outgoing packets that this route applies to. -
priority
public abstract int priority()The priority of this route. Priority is used to break ties in the case where there is more than one matching route of maximum length. A lower value is higher priority; a priority of 100 is higher than 200. -
nextHopInstance
The fully-qualified URL to an instance that should handle matching packets. -
nextHopIp
The network IP address of an instance that should handle matching packets. -
nextHopNetwork
The local network if it should handle matching packets. -
nextHopGateway
The gateway that should handle matching packets. Currently, this is only the internet gateway. -
warnings
Potential misconfigurations are detected for this route. -
nextHopVpnTunnel
The URL to a VpnTunnel that should handle matching packets. -
create
-