1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. OsManagementHub
  5. getEvent
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.OsManagementHub.getEvent

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

This data source provides details about a specific Event resource in Oracle Cloud Infrastructure Os Management Hub service.

Returns information about the specified event.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testEvent = oci.OsManagementHub.getEvent({
    eventId: testEventOciOsManagementHubEvent.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_event = oci.OsManagementHub.get_event(event_id=test_event_oci_os_management_hub_event["id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/osmanagementhub"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := osmanagementhub.GetEvent(ctx, &osmanagementhub.GetEventArgs{
			EventId: testEventOciOsManagementHubEvent.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testEvent = Oci.OsManagementHub.GetEvent.Invoke(new()
    {
        EventId = testEventOciOsManagementHubEvent.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.OsManagementHubFunctions;
import com.pulumi.oci.OsManagementHub.inputs.GetEventArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testEvent = OsManagementHubFunctions.getEvent(GetEventArgs.builder()
            .eventId(testEventOciOsManagementHubEvent.id())
            .build());

    }
}
Copy
variables:
  testEvent:
    fn::invoke:
      function: oci:OsManagementHub:getEvent
      arguments:
        eventId: ${testEventOciOsManagementHubEvent.id}
Copy

Using getEvent

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getEvent(args: GetEventArgs, opts?: InvokeOptions): Promise<GetEventResult>
function getEventOutput(args: GetEventOutputArgs, opts?: InvokeOptions): Output<GetEventResult>
Copy
def get_event(event_id: Optional[str] = None,
              opts: Optional[InvokeOptions] = None) -> GetEventResult
def get_event_output(event_id: Optional[pulumi.Input[str]] = None,
              opts: Optional[InvokeOptions] = None) -> Output[GetEventResult]
Copy
func GetEvent(ctx *Context, args *GetEventArgs, opts ...InvokeOption) (*GetEventResult, error)
func GetEventOutput(ctx *Context, args *GetEventOutputArgs, opts ...InvokeOption) GetEventResultOutput
Copy

> Note: This function is named GetEvent in the Go SDK.

public static class GetEvent 
{
    public static Task<GetEventResult> InvokeAsync(GetEventArgs args, InvokeOptions? opts = null)
    public static Output<GetEventResult> Invoke(GetEventInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetEventResult> getEvent(GetEventArgs args, InvokeOptions options)
public static Output<GetEventResult> getEvent(GetEventArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:OsManagementHub/getEvent:getEvent
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

EventId This property is required. string
(Updatable) The OCID of the event.
EventId This property is required. string
(Updatable) The OCID of the event.
eventId This property is required. String
(Updatable) The OCID of the event.
eventId This property is required. string
(Updatable) The OCID of the event.
event_id This property is required. str
(Updatable) The OCID of the event.
eventId This property is required. String
(Updatable) The OCID of the event.

getEvent Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
Datas List<GetEventData>
Provides additional information for a management station event.
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
EventDetails string
Details of an event.
EventId string
EventSummary string
Summary of the event.
FreeformTags Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id string
The OCID of the event.
IsManagedByAutonomousLinux bool
Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
LifecycleDetails string
Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
ResourceId string
The OCID of the managed instance or resource where the event occurred.
State string
The current state of the event.
SystemDetails List<GetEventSystemDetail>
Provides information about the system architecture and operating system.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time the Event was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
TimeOccurred string
The date and time that the event occurred.
TimeUpdated string
The date and time that the event was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
Type string
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
CompartmentId string
The OCID of the compartment.
Datas []GetEventData
Provides additional information for a management station event.
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
EventDetails string
Details of an event.
EventId string
EventSummary string
Summary of the event.
FreeformTags map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id string
The OCID of the event.
IsManagedByAutonomousLinux bool
Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
LifecycleDetails string
Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
ResourceId string
The OCID of the managed instance or resource where the event occurred.
State string
The current state of the event.
SystemDetails []GetEventSystemDetail
Provides information about the system architecture and operating system.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time the Event was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
TimeOccurred string
The date and time that the event occurred.
TimeUpdated string
The date and time that the event was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
Type string
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
compartmentId String
The OCID of the compartment.
datas List<GetEventData>
Provides additional information for a management station event.
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
eventDetails String
Details of an event.
eventId String
eventSummary String
Summary of the event.
freeformTags Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id String
The OCID of the event.
isManagedByAutonomousLinux Boolean
Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
lifecycleDetails String
Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
resourceId String
The OCID of the managed instance or resource where the event occurred.
state String
The current state of the event.
systemDetails List<GetEventSystemDetail>
Provides information about the system architecture and operating system.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time the Event was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeOccurred String
The date and time that the event occurred.
timeUpdated String
The date and time that the event was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
type String
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
compartmentId string
The OCID of the compartment.
datas GetEventData[]
Provides additional information for a management station event.
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
eventDetails string
Details of an event.
eventId string
eventSummary string
Summary of the event.
freeformTags {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id string
The OCID of the event.
isManagedByAutonomousLinux boolean
Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
lifecycleDetails string
Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
resourceId string
The OCID of the managed instance or resource where the event occurred.
state string
The current state of the event.
systemDetails GetEventSystemDetail[]
Provides information about the system architecture and operating system.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The date and time the Event was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeOccurred string
The date and time that the event occurred.
timeUpdated string
The date and time that the event was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
type string
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
compartment_id str
The OCID of the compartment.
datas Sequence[osmanagementhub.GetEventData]
Provides additional information for a management station event.
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
event_details str
Details of an event.
event_id str
event_summary str
Summary of the event.
freeform_tags Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id str
The OCID of the event.
is_managed_by_autonomous_linux bool
Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
lifecycle_details str
Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
resource_id str
The OCID of the managed instance or resource where the event occurred.
state str
The current state of the event.
system_details Sequence[osmanagementhub.GetEventSystemDetail]
Provides information about the system architecture and operating system.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The date and time the Event was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
time_occurred str
The date and time that the event occurred.
time_updated str
The date and time that the event was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
type str
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
compartmentId String
The OCID of the compartment.
datas List<Property Map>
Provides additional information for a management station event.
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
eventDetails String
Details of an event.
eventId String
eventSummary String
Summary of the event.
freeformTags Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id String
The OCID of the event.
isManagedByAutonomousLinux Boolean
Indicates whether the event occurred on a resource that is managed by the Autonomous Linux service.
lifecycleDetails String
Describes the current state of the event in more detail. For example, the message can provide actionable information for a resource in the 'FAILED' state.
resourceId String
The OCID of the managed instance or resource where the event occurred.
state String
The current state of the event.
systemDetails List<Property Map>
Provides information about the system architecture and operating system.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time the Event was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeOccurred String
The date and time that the event occurred.
timeUpdated String
The date and time that the event was updated (in RFC 3339 format). Example: 2016-08-25T21:10:29.600Z
type String
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot

Supporting Types

GetEventData

AdditionalDetails This property is required. List<GetEventDataAdditionalDetail>
Provides additional information for the work request associated with an event.
AttemptedResolutions This property is required. List<string>
The actions used to attempt fixing the error.
Contents This property is required. List<GetEventDataContent>
Provides information collected for the exploit attempt event.
ErrorCause This property is required. string
The commands executed by the agent that caused the error.
ErrorLog This property is required. string
The output log of the error.
EventCount This property is required. int
Number of times the event has occurred.
EventFingerprint This property is required. string
Fingerprint of the event.
HealthState This property is required. string
Health state of the management station
OperationType This property is required. string
Type of management station operation.
Reason This property is required. string
Reason for the event.
RebootStatus This property is required. string
Reboot status for the current event
ResolutionLog This property is required. string
The log output after the resolutions.
ResolutionStatus This property is required. string
Indicates if the event succeeded.
Status This property is required. string
Status of the management station operation.
TimeFirstOccurred This property is required. string
The date and time that the event first occurred.
AdditionalDetails This property is required. []GetEventDataAdditionalDetail
Provides additional information for the work request associated with an event.
AttemptedResolutions This property is required. []string
The actions used to attempt fixing the error.
Contents This property is required. []GetEventDataContent
Provides information collected for the exploit attempt event.
ErrorCause This property is required. string
The commands executed by the agent that caused the error.
ErrorLog This property is required. string
The output log of the error.
EventCount This property is required. int
Number of times the event has occurred.
EventFingerprint This property is required. string
Fingerprint of the event.
HealthState This property is required. string
Health state of the management station
OperationType This property is required. string
Type of management station operation.
Reason This property is required. string
Reason for the event.
RebootStatus This property is required. string
Reboot status for the current event
ResolutionLog This property is required. string
The log output after the resolutions.
ResolutionStatus This property is required. string
Indicates if the event succeeded.
Status This property is required. string
Status of the management station operation.
TimeFirstOccurred This property is required. string
The date and time that the event first occurred.
additionalDetails This property is required. List<GetEventDataAdditionalDetail>
Provides additional information for the work request associated with an event.
attemptedResolutions This property is required. List<String>
The actions used to attempt fixing the error.
contents This property is required. List<GetEventDataContent>
Provides information collected for the exploit attempt event.
errorCause This property is required. String
The commands executed by the agent that caused the error.
errorLog This property is required. String
The output log of the error.
eventCount This property is required. Integer
Number of times the event has occurred.
eventFingerprint This property is required. String
Fingerprint of the event.
healthState This property is required. String
Health state of the management station
operationType This property is required. String
Type of management station operation.
reason This property is required. String
Reason for the event.
rebootStatus This property is required. String
Reboot status for the current event
resolutionLog This property is required. String
The log output after the resolutions.
resolutionStatus This property is required. String
Indicates if the event succeeded.
status This property is required. String
Status of the management station operation.
timeFirstOccurred This property is required. String
The date and time that the event first occurred.
additionalDetails This property is required. GetEventDataAdditionalDetail[]
Provides additional information for the work request associated with an event.
attemptedResolutions This property is required. string[]
The actions used to attempt fixing the error.
contents This property is required. GetEventDataContent[]
Provides information collected for the exploit attempt event.
errorCause This property is required. string
The commands executed by the agent that caused the error.
errorLog This property is required. string
The output log of the error.
eventCount This property is required. number
Number of times the event has occurred.
eventFingerprint This property is required. string
Fingerprint of the event.
healthState This property is required. string
Health state of the management station
operationType This property is required. string
Type of management station operation.
reason This property is required. string
Reason for the event.
rebootStatus This property is required. string
Reboot status for the current event
resolutionLog This property is required. string
The log output after the resolutions.
resolutionStatus This property is required. string
Indicates if the event succeeded.
status This property is required. string
Status of the management station operation.
timeFirstOccurred This property is required. string
The date and time that the event first occurred.
additional_details This property is required. Sequence[osmanagementhub.GetEventDataAdditionalDetail]
Provides additional information for the work request associated with an event.
attempted_resolutions This property is required. Sequence[str]
The actions used to attempt fixing the error.
contents This property is required. Sequence[osmanagementhub.GetEventDataContent]
Provides information collected for the exploit attempt event.
error_cause This property is required. str
The commands executed by the agent that caused the error.
error_log This property is required. str
The output log of the error.
event_count This property is required. int
Number of times the event has occurred.
event_fingerprint This property is required. str
Fingerprint of the event.
health_state This property is required. str
Health state of the management station
operation_type This property is required. str
Type of management station operation.
reason This property is required. str
Reason for the event.
reboot_status This property is required. str
Reboot status for the current event
resolution_log This property is required. str
The log output after the resolutions.
resolution_status This property is required. str
Indicates if the event succeeded.
status This property is required. str
Status of the management station operation.
time_first_occurred This property is required. str
The date and time that the event first occurred.
additionalDetails This property is required. List<Property Map>
Provides additional information for the work request associated with an event.
attemptedResolutions This property is required. List<String>
The actions used to attempt fixing the error.
contents This property is required. List<Property Map>
Provides information collected for the exploit attempt event.
errorCause This property is required. String
The commands executed by the agent that caused the error.
errorLog This property is required. String
The output log of the error.
eventCount This property is required. Number
Number of times the event has occurred.
eventFingerprint This property is required. String
Fingerprint of the event.
healthState This property is required. String
Health state of the management station
operationType This property is required. String
Type of management station operation.
reason This property is required. String
Reason for the event.
rebootStatus This property is required. String
Reboot status for the current event
resolutionLog This property is required. String
The log output after the resolutions.
resolutionStatus This property is required. String
Indicates if the event succeeded.
status This property is required. String
Status of the management station operation.
timeFirstOccurred This property is required. String
The date and time that the event first occurred.

GetEventDataAdditionalDetail

ExploitCves This property is required. List<string>
List of CVEs in the exploit.
InitiatorId This property is required. string
The OCID of the resource that triggered the event, such as scheduled job id.
Vmcores This property is required. List<GetEventDataAdditionalDetailVmcore>
Kernel event vmcore details
WorkRequestIds This property is required. List<string>
List of all work request OCIDs associated with the event.
ExploitCves This property is required. []string
List of CVEs in the exploit.
InitiatorId This property is required. string
The OCID of the resource that triggered the event, such as scheduled job id.
Vmcores This property is required. []GetEventDataAdditionalDetailVmcore
Kernel event vmcore details
WorkRequestIds This property is required. []string
List of all work request OCIDs associated with the event.
exploitCves This property is required. List<String>
List of CVEs in the exploit.
initiatorId This property is required. String
The OCID of the resource that triggered the event, such as scheduled job id.
vmcores This property is required. List<GetEventDataAdditionalDetailVmcore>
Kernel event vmcore details
workRequestIds This property is required. List<String>
List of all work request OCIDs associated with the event.
exploitCves This property is required. string[]
List of CVEs in the exploit.
initiatorId This property is required. string
The OCID of the resource that triggered the event, such as scheduled job id.
vmcores This property is required. GetEventDataAdditionalDetailVmcore[]
Kernel event vmcore details
workRequestIds This property is required. string[]
List of all work request OCIDs associated with the event.
exploit_cves This property is required. Sequence[str]
List of CVEs in the exploit.
initiator_id This property is required. str
The OCID of the resource that triggered the event, such as scheduled job id.
vmcores This property is required. Sequence[osmanagementhub.GetEventDataAdditionalDetailVmcore]
Kernel event vmcore details
work_request_ids This property is required. Sequence[str]
List of all work request OCIDs associated with the event.
exploitCves This property is required. List<String>
List of CVEs in the exploit.
initiatorId This property is required. String
The OCID of the resource that triggered the event, such as scheduled job id.
vmcores This property is required. List<Property Map>
Kernel event vmcore details
workRequestIds This property is required. List<String>
List of all work request OCIDs associated with the event.

GetEventDataAdditionalDetailVmcore

Backtrace This property is required. string
Kernel vmcore backtrace.
Component This property is required. string
Kernel vmcore component.
Backtrace This property is required. string
Kernel vmcore backtrace.
Component This property is required. string
Kernel vmcore component.
backtrace This property is required. String
Kernel vmcore backtrace.
component This property is required. String
Kernel vmcore component.
backtrace This property is required. string
Kernel vmcore backtrace.
component This property is required. string
Kernel vmcore component.
backtrace This property is required. str
Kernel vmcore backtrace.
component This property is required. str
Kernel vmcore component.
backtrace This property is required. String
Kernel vmcore backtrace.
component This property is required. String
Kernel vmcore component.

GetEventDataContent

ContentAvailability This property is required. string
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.
ContentLocation This property is required. string
Location of the Kernel event content.
ExploitDetectionLogContent This property is required. string
The content of the exploit detection log.
ExploitObjectStoreLocation This property is required. string
The location of the exploit detection log within object storage.
Size This property is required. int
Size of the event content.
Type This property is required. string
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
ContentAvailability This property is required. string
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.
ContentLocation This property is required. string
Location of the Kernel event content.
ExploitDetectionLogContent This property is required. string
The content of the exploit detection log.
ExploitObjectStoreLocation This property is required. string
The location of the exploit detection log within object storage.
Size This property is required. int
Size of the event content.
Type This property is required. string
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
contentAvailability This property is required. String
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.
contentLocation This property is required. String
Location of the Kernel event content.
exploitDetectionLogContent This property is required. String
The content of the exploit detection log.
exploitObjectStoreLocation This property is required. String
The location of the exploit detection log within object storage.
size This property is required. Integer
Size of the event content.
type This property is required. String
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
contentAvailability This property is required. string
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.
contentLocation This property is required. string
Location of the Kernel event content.
exploitDetectionLogContent This property is required. string
The content of the exploit detection log.
exploitObjectStoreLocation This property is required. string
The location of the exploit detection log within object storage.
size This property is required. number
Size of the event content.
type This property is required. string
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
content_availability This property is required. str
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.
content_location This property is required. str
Location of the Kernel event content.
exploit_detection_log_content This property is required. str
The content of the exploit detection log.
exploit_object_store_location This property is required. str
The location of the exploit detection log within object storage.
size This property is required. int
Size of the event content.
type This property is required. str
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot
contentAvailability This property is required. String
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.
contentLocation This property is required. String
Location of the Kernel event content.
exploitDetectionLogContent This property is required. String
The content of the exploit detection log.
exploitObjectStoreLocation This property is required. String
The location of the exploit detection log within object storage.
size This property is required. Number
Size of the event content.
type This property is required. String
Event type:

  • KERNEL_OOPS - Used to identify a kernel panic condition event
  • KERNEL_CRASH - Used to identify an internal fatal kernel error that cannot be safely recovered from
  • EXPLOIT_ATTEMPT - Used to identify a known exploit detection as identified by Ksplice
  • SOFTWARE_UPDATE - Software updates - Packages
  • KSPLICE_UPDATE - Ksplice updates
  • SOFTWARE_SOURCE - Software source
  • AGENT - Agent
  • MANAGEMENT_STATION - Management Station
  • SYSADMIN - Used to identify attempts on fixing agent errors on the instance
  • REBOOT - Reboot

GetEventSystemDetail

Architecture This property is required. string
Architecture type.
KspliceEffectiveKernelVersion This property is required. string
Version of the Ksplice effective kernel.
OsFamily This property is required. string
Operating system type.
OsKernelRelease This property is required. string
Release of the kernel.
OsKernelVersion This property is required. string
Version of the kernel.
OsName This property is required. string
Name of the operating system.
OsSystemVersion This property is required. string
Version of the operating system.
Architecture This property is required. string
Architecture type.
KspliceEffectiveKernelVersion This property is required. string
Version of the Ksplice effective kernel.
OsFamily This property is required. string
Operating system type.
OsKernelRelease This property is required. string
Release of the kernel.
OsKernelVersion This property is required. string
Version of the kernel.
OsName This property is required. string
Name of the operating system.
OsSystemVersion This property is required. string
Version of the operating system.
architecture This property is required. String
Architecture type.
kspliceEffectiveKernelVersion This property is required. String
Version of the Ksplice effective kernel.
osFamily This property is required. String
Operating system type.
osKernelRelease This property is required. String
Release of the kernel.
osKernelVersion This property is required. String
Version of the kernel.
osName This property is required. String
Name of the operating system.
osSystemVersion This property is required. String
Version of the operating system.
architecture This property is required. string
Architecture type.
kspliceEffectiveKernelVersion This property is required. string
Version of the Ksplice effective kernel.
osFamily This property is required. string
Operating system type.
osKernelRelease This property is required. string
Release of the kernel.
osKernelVersion This property is required. string
Version of the kernel.
osName This property is required. string
Name of the operating system.
osSystemVersion This property is required. string
Version of the operating system.
architecture This property is required. str
Architecture type.
ksplice_effective_kernel_version This property is required. str
Version of the Ksplice effective kernel.
os_family This property is required. str
Operating system type.
os_kernel_release This property is required. str
Release of the kernel.
os_kernel_version This property is required. str
Version of the kernel.
os_name This property is required. str
Name of the operating system.
os_system_version This property is required. str
Version of the operating system.
architecture This property is required. String
Architecture type.
kspliceEffectiveKernelVersion This property is required. String
Version of the Ksplice effective kernel.
osFamily This property is required. String
Operating system type.
osKernelRelease This property is required. String
Release of the kernel.
osKernelVersion This property is required. String
Version of the kernel.
osName This property is required. String
Name of the operating system.
osSystemVersion This property is required. String
Version of the operating system.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi