Show / Hide Table of Contents

Class KernelEventData

Information about the kernel event.

Inheritance
object
KernelEventData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OsmanagementhubService.Models
Assembly: OCI.DotNetSDK.Osmanagementhub.dll
Syntax
public class KernelEventData

Properties

AdditionalDetails

Declaration
[JsonProperty(PropertyName = "additionalDetails")]
public KernelEventAdditionalDetails AdditionalDetails { get; set; }
Property Value
Type Description
KernelEventAdditionalDetails

Content

Declaration
[Required(ErrorMessage = "Content is required.")]
[JsonProperty(PropertyName = "content")]
public KernelEventContent Content { get; set; }
Property Value
Type Description
KernelEventContent
Remarks

Required

Count

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

Number of times the event has occurred.

Remarks

Required

EventFingerprint

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

Fingerprint of the event.

Remarks

Required

Reason

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

Reason for the event.

Remarks

Required

TimeFirstOccurred

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

The date and time that the event first occurred.

Remarks

Required

In this article
Back to top