Show / Hide Table of Contents

Class RouterStatus

Inheritance
System.Object
RouterStatus
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class RouterStatus : IDirectResponseSchema

Properties

BestRoutes

Best routes for this router's network.

Declaration
[JsonProperty("bestRoutes")]
public virtual IList<Route> BestRoutes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Route>

BestRoutesForRouter

Best routes learned by this router.

Declaration
[JsonProperty("bestRoutesForRouter")]
public virtual IList<Route> BestRoutesForRouter { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Route>

BgpPeerStatus

Declaration
[JsonProperty("bgpPeerStatus")]
public virtual IList<RouterStatusBgpPeerStatus> BgpPeerStatus { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<RouterStatusBgpPeerStatus>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NatStatus

Declaration
[JsonProperty("natStatus")]
public virtual IList<RouterStatusNatStatus> NatStatus { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<RouterStatusNatStatus>

Network

URI of the network to which this router belongs.

Declaration
[JsonProperty("network")]
public virtual string Network { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top