Show / Hide Table of Contents

Class VirtualCircuitAssociatedTunnelDetails

Detailed private tunnel info associated with the virtual circuit.

Inheritance
object
VirtualCircuitAssociatedTunnelDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class VirtualCircuitAssociatedTunnelDetails

Properties

IpsecConnectionId

Declaration
[JsonProperty(PropertyName = "ipsecConnectionId")]
public string IpsecConnectionId { get; set; }
Property Value
Type Description
string

The OCID of IPSec connection associated with the virtual circuit.

TunnelId

Declaration
[Required(ErrorMessage = "TunnelId is required.")]
[JsonProperty(PropertyName = "tunnelId")]
public string TunnelId { get; set; }
Property Value
Type Description
string

The OCID of the IPSec tunnel associated with the virtual circuit.

Remarks

Required

TunnelType

Declaration
[Required(ErrorMessage = "TunnelType is required.")]
[JsonProperty(PropertyName = "tunnelType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VirtualCircuitAssociatedTunnelDetails.TunnelTypeEnum? TunnelType { get; set; }
Property Value
Type Description
VirtualCircuitAssociatedTunnelDetails.TunnelTypeEnum?

The type of the tunnel associated with the virtual circuit.

Remarks

Required

In this article
Back to top