Show / Hide Table of Contents

Class IPSecConnectionDeviceStatus

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

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

Properties

CompartmentId

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

The OCID of the compartment containing the IPSec connection.

Remarks

Required

Id

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

The IPSec connection's Oracle ID (OCID).

Remarks

Required

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

Tunnels

Declaration
[JsonProperty(PropertyName = "tunnels")]
public List<TunnelStatus> Tunnels { get; set; }
Property Value
Type Description
List<TunnelStatus>

Two {@link TunnelStatus} objects.

In this article
Back to top