Show / Hide Table of Contents

Class RouterStatusBgpPeerStatus

Inheritance
System.Object
RouterStatusBgpPeerStatus
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 RouterStatusBgpPeerStatus : IDirectResponseSchema

Properties

AdvertisedRoutes

Routes that were advertised to the remote BGP peer

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

ETag

The ETag of the item.

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

IpAddress

IP address of the local BGP interface.

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

LinkedVpnTunnel

URL of the VPN tunnel that this BGP peer controls.

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

Name

Name of this BGP peer. Unique within the Routers resource.

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

NumLearnedRoutes

Number of routes learned from the remote BGP Peer.

Declaration
[JsonProperty("numLearnedRoutes")]
public virtual long? NumLearnedRoutes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

PeerIpAddress

IP address of the remote BGP interface.

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

State

BGP state as specified in RFC1771.

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

Status

Status of the BGP peer: {UP, DOWN}

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

Uptime

Time this session has been up. Format: 14 years, 51 weeks, 6 days, 23 hours, 59 minutes, 59 seconds

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

UptimeSeconds

Time this session has been up, in seconds. Format: 145

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

Implements

IDirectResponseSchema
In This Article
Back to top