Show / Hide Table of Contents

Class KernelEventContent

Provides information collected for the kernel event.

Inheritance
object
EventContent
KernelEventContent
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 KernelEventContent : EventContent

Properties

ContentAvailability

Declaration
[Required(ErrorMessage = "ContentAvailability is required.")]
[JsonProperty(PropertyName = "contentAvailability")]
[JsonConverter(typeof(ResponseEnumConverter))]
public KernelEventContent.ContentAvailabilityEnum? ContentAvailability { get; set; }
Property Value
Type Description
KernelEventContent.ContentAvailabilityEnum?

Crash content availability status: * 'NOT_AVAILABLE' indicates the content is not available on the instance nor in the service * 'AVAILABLE_ON_INSTANCE' indicates the content is only available on the instance. * 'AVAILABLE_ON_SERVICE' indicates the content is only available on the service. * 'AVAILABLE_ON_INSTANCE_AND_SERVICE' indicates the content is available both on the instance and the service * 'AVAILABLE_ON_INSTANCE_UPLOAD_IN_PROGRESS' indicates the content is available on the instance and its upload to the service is in progress.

Remarks

Required

ContentLocation

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

Location of the Kernel event content.

Remarks

Required

Size

Declaration
[JsonProperty(PropertyName = "size")]
public int? Size { get; set; }
Property Value
Type Description
int?

Size of the event content.

In this article
Back to top