Show / Hide Table of Contents

Class VpnGatewayStatusTunnel

Contains some information about a VPN tunnel.

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

Properties

ETag

The ETag of the item.

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

LocalGatewayInterface

The VPN gateway interface this VPN tunnel is associated with.

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

PeerGatewayInterface

The peer gateway interface this VPN tunnel is connected to, the peer gateway could either be an external VPN gateway or GCP VPN gateway.

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

TunnelUrl

URL reference to the VPN tunnel.

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

Implements

IDirectResponseSchema
In This Article
Back to top