Struct google_compute1::api::VpnGatewayStatusVpnConnection[][src]

pub struct VpnGatewayStatusVpnConnection {
    pub peer_external_gateway: Option<String>,
    pub peer_gcp_gateway: Option<String>,
    pub state: Option<VpnGatewayStatusHighAvailabilityRequirementState>,
    pub tunnels: Option<Vec<VpnGatewayStatusTunnel>>,
}

A VPN connection contains all VPN tunnels connected from this VpnGateway to the same peer gateway. The peer gateway could either be a external VPN gateway or GCP VPN gateway.

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

Fields

peer_external_gateway: Option<String>

URL reference to the peer external VPN gateways to which the VPN tunnels in this VPN connection are connected. This field is mutually exclusive with peer_gcp_gateway.

peer_gcp_gateway: Option<String>

URL reference to the peer side VPN gateways to which the VPN tunnels in this VPN connection are connected. This field is mutually exclusive with peer_gcp_gateway.

state: Option<VpnGatewayStatusHighAvailabilityRequirementState>

HighAvailabilityRequirementState for the VPN connection.

tunnels: Option<Vec<VpnGatewayStatusTunnel>>

List of VPN tunnels that are in this VPN connection.

Trait Implementations

impl Clone for VpnGatewayStatusVpnConnection[src]

impl Debug for VpnGatewayStatusVpnConnection[src]

impl Default for VpnGatewayStatusVpnConnection[src]

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

impl Part for VpnGatewayStatusVpnConnection[src]

impl Serialize for VpnGatewayStatusVpnConnection[src]

Auto Trait Implementations

impl RefUnwindSafe for VpnGatewayStatusVpnConnection[src]

impl Send for VpnGatewayStatusVpnConnection[src]

impl Sync for VpnGatewayStatusVpnConnection[src]

impl Unpin for VpnGatewayStatusVpnConnection[src]

impl UnwindSafe for VpnGatewayStatusVpnConnection[src]

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.