Show / Hide Table of Contents

Class IPSecConnectionTunnelErrorDetails

Details for an error on an IPSec tunnel.

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

Properties

ErrorCode

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

Unique code describes the error type.

Remarks

Required

ErrorDescription

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

A detailed description of the error.

Remarks

Required

Id

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

Unique ID generated for each error report.

Remarks

Required

OciResourcesLink

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

Link to more Oracle resources or relevant documentation.

Remarks

Required

Solution

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

Resolution for the error.

Remarks

Required

Timestamp

Declaration
[Required(ErrorMessage = "Timestamp is required.")]
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type Description
DateTime?

Timestamp when the error occurred.

Remarks

Required

In this article
Back to top