@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias IncidentResult

    type IncidentResult = {
        creationTime?: string;
        elementId?: ElementId;
        elementInstanceKey?: ElementInstanceKey;
        errorMessage?: string;
        errorType?:
            | "UNSPECIFIED"
            | "UNKNOWN"
            | "IO_MAPPING_ERROR"
            | "JOB_NO_RETRIES"
            | "EXECUTION_LISTENER_NO_RETRIES"
            | "TASK_LISTENER_NO_RETRIES"
            | "AD_HOC_SUB_PROCESS_NO_RETRIES"
            | "CONDITION_ERROR"
            | "EXTRACT_VALUE_ERROR"
            | "CALLED_ELEMENT_ERROR"
            | "UNHANDLED_ERROR_EVENT"
            | "MESSAGE_SIZE_EXCEEDED"
            | "CALLED_DECISION_ERROR"
            | "DECISION_EVALUATION_ERROR"
            | "FORM_NOT_FOUND"
            | "RESOURCE_NOT_FOUND";
        incidentKey?: IncidentKey;
        jobKey?: JobKey;
        processDefinitionId?: ProcessDefinitionId;
        processDefinitionKey?: ProcessDefinitionKey;
        processInstanceKey?: ProcessInstanceKey;
        state?: "ACTIVE"
        | "MIGRATED"
        | "RESOLVED"
        | "PENDING";
        tenantId?: TenantId;
    }
    Index

    Properties

    creationTime?: string

    Date of incident creation.

    elementId?: ElementId

    The element ID associated to this incident.

    elementInstanceKey?: ElementInstanceKey

    The element instance key associated to this incident.

    errorMessage?: string

    Error message which describes the error in more detail.

    errorType?:
        | "UNSPECIFIED"
        | "UNKNOWN"
        | "IO_MAPPING_ERROR"
        | "JOB_NO_RETRIES"
        | "EXECUTION_LISTENER_NO_RETRIES"
        | "TASK_LISTENER_NO_RETRIES"
        | "AD_HOC_SUB_PROCESS_NO_RETRIES"
        | "CONDITION_ERROR"
        | "EXTRACT_VALUE_ERROR"
        | "CALLED_ELEMENT_ERROR"
        | "UNHANDLED_ERROR_EVENT"
        | "MESSAGE_SIZE_EXCEEDED"
        | "CALLED_DECISION_ERROR"
        | "DECISION_EVALUATION_ERROR"
        | "FORM_NOT_FOUND"
        | "RESOURCE_NOT_FOUND"

    Incident error type with a defined set of values.

    incidentKey?: IncidentKey

    The assigned key, which acts as a unique identifier for this incident.

    jobKey?: JobKey

    The job key, if exists, associated with this incident.

    processDefinitionId?: ProcessDefinitionId

    The process definition ID associated to this incident.

    processDefinitionKey?: ProcessDefinitionKey

    The process definition key associated to this incident.

    processInstanceKey?: ProcessInstanceKey

    The process instance key associated to this incident.

    state?: "ACTIVE" | "MIGRATED" | "RESOLVED" | "PENDING"

    State of this incident with a defined set of values.

    tenantId?: TenantId

    The tenant ID of the incident.