[][src]Struct google_compute1::RouterStatusBgpPeerStatus

pub struct RouterStatusBgpPeerStatus {
    pub status: Option<String>,
    pub uptime: Option<String>,
    pub name: Option<String>,
    pub uptime_seconds: Option<String>,
    pub linked_vpn_tunnel: Option<String>,
    pub peer_ip_address: Option<String>,
    pub advertised_routes: Option<Vec<Route>>,
    pub state: Option<String>,
    pub ip_address: Option<String>,
    pub num_learned_routes: Option<u32>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

status: Option<String>

Status of the BGP peer: {UP, DOWN}

uptime: Option<String>

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

name: Option<String>

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

uptime_seconds: Option<String>

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

linked_vpn_tunnel: Option<String>

URL of the VPN tunnel that this BGP peer controls.

peer_ip_address: Option<String>

IP address of the remote BGP interface.

advertised_routes: Option<Vec<Route>>

Routes that were advertised to the remote BGP peer

state: Option<String>

BGP state as specified in RFC1771.

ip_address: Option<String>

IP address of the local BGP interface.

num_learned_routes: Option<u32>

Number of routes learned from the remote BGP Peer.

Trait Implementations

impl Part for RouterStatusBgpPeerStatus[src]

impl Default for RouterStatusBgpPeerStatus[src]

impl Clone for RouterStatusBgpPeerStatus[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for RouterStatusBgpPeerStatus[src]

impl Serialize for RouterStatusBgpPeerStatus[src]

impl<'de> Deserialize<'de> for RouterStatusBgpPeerStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]