public abstract class Route extends Object
Modifier and Type | Method and Description |
---|---|
static 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 |
creationTimestamp() |
abstract String |
description() |
abstract String |
destRange()
The destination range of outgoing packets that this route applies to.
|
abstract String |
id() |
abstract String |
name() |
abstract URI |
network() |
abstract URI |
nextHopGateway()
The gateway that should handle matching packets.
|
abstract URI |
nextHopInstance()
The fully-qualified URL to an instance that should handle matching packets.
|
abstract String |
nextHopIp()
The network IP address of an instance that should handle matching packets.
|
abstract URI |
nextHopNetwork()
The local network if it should handle matching packets.
|
abstract URI |
nextHopVpnTunnel()
The URL to a VpnTunnel that should handle matching packets.
|
abstract int |
priority()
The priority of this route.
|
abstract URI |
selfLink() |
abstract List<String> |
tags()
The set of instance items to which this route applies.
|
abstract List<Warning> |
warnings()
Potential misconfigurations are detected for this route.
|
public abstract String id()
public abstract Date creationTimestamp()
public abstract URI selfLink()
public abstract String name()
public abstract URI network()
public abstract String destRange()
public abstract int priority()
@Nullable public abstract URI nextHopInstance()
@Nullable public abstract String nextHopIp()
@Nullable public abstract URI nextHopNetwork()
@Nullable public abstract URI nextHopGateway()
public abstract List<Warning> warnings()
@Nullable public abstract URI nextHopVpnTunnel()
public static 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)
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.