Show / Hide Table of Contents

Class IPSecConnectionDeviceConfig

Deprecated. For tunnel information, instead see:

  • {@link IPSecConnectionTunnel}
  • {@link IPSecConnectionTunnelSharedSecret}
Inheritance
object
IPSecConnectionDeviceConfig
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 IPSecConnectionDeviceConfig

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.

Tunnels

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

Two {@link TunnelConfig} objects.

In this article
Back to top