Show / Hide Table of Contents

Class TunnelStatus

Deprecated. For tunnel information, instead see {@link IPSecConnectionTunnel}.

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

Properties

IpAddress

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

The IP address of Oracle's VPN headend.
Example: 203.0.113.50

Remarks

Required

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TunnelStatus.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
TunnelStatus.LifecycleStateEnum?

The tunnel's current state.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the IPSec connection was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

TimeStateModified

Declaration
[JsonProperty(PropertyName = "timeStateModified")]
public DateTime? TimeStateModified { get; set; }
Property Value
Type Description
DateTime?

When the state of the tunnel last changed, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

In this article
Back to top