Show / Hide Table of Contents

Class TunnelSecurityAssociationSummary

A summary of the IPSec tunnel security association details.

Inheritance
object
TunnelSecurityAssociationSummary
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 TunnelSecurityAssociationSummary

Properties

CpeSubnet

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

The IP address and mask of the partner subnet used in policy based VPNs or static routes.

OracleSubnet

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

The IP address and mask of the local subnet used in policy based VPNs or static routes.

Time

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

Time in the current state, in seconds.

TunnelSaErrorInfo

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

Current state if the IPSec tunnel status is not UP, including phase one and phase two details and a possible reason the tunnel is not UP.

TunnelSaStatus

Declaration
[JsonProperty(PropertyName = "tunnelSaStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TunnelSecurityAssociationSummary.TunnelSaStatusEnum? TunnelSaStatus { get; set; }
Property Value
Type Description
TunnelSecurityAssociationSummary.TunnelSaStatusEnum?

The IPSec tunnel's phase one status.

In this article
Back to top