Class RouterStatus
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class RouterStatus : IDirectResponseSchema
Properties
BestRoutes
A list of the best dynamic routes for this Cloud Router's Virtual Private Cloud (VPC) network in the same
region as this Cloud Router. Lists all of the best routes per prefix that are programmed into this region's
VPC data plane. When global dynamic routing mode is turned on in the VPC network, this list can include
cross-region dynamic routes from Cloud Routers in other regions.
Declaration
[JsonProperty("bestRoutes")]
public virtual IList<Route> BestRoutes { get; set; }
Property Value
BestRoutesForRouter
A list of the best BGP routes learned by this Cloud Router. It is possible that routes listed might not be
programmed into the data plane, if the Google Cloud control plane finds a more optimal route for a prefix
than a route learned by this Cloud Router.
Declaration
[JsonProperty("bestRoutesForRouter")]
public virtual IList<Route> BestRoutesForRouter { get; set; }
Property Value
BgpPeerStatus
Declaration
[JsonProperty("bgpPeerStatus")]
public virtual IList<RouterStatusBgpPeerStatus> BgpPeerStatus { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
NatStatus
Declaration
[JsonProperty("natStatus")]
public virtual IList<RouterStatusNatStatus> NatStatus { get; set; }
Property Value
Network
URI of the network to which this router belongs.
Declaration
[JsonProperty("network")]
public virtual string Network { get; set; }
Property Value
Implements