Show / Hide Table of Contents

Class VpnGatewayStatusVpnConnection

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.

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

Properties

ETag

The ETag of the item.

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

PeerExternalGateway

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.

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

PeerGcpGateway

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.

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

State

HighAvailabilityRequirementState for the VPN connection.

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

Tunnels

List of VPN tunnels that are in this VPN connection.

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

Implements

IDirectResponseSchema
In This Article
Back to top