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

    Type Alias SearchJobsResponses

    type SearchJobsResponses = {
        "200": SearchQueryResponse & {
            items?: {
                creationTime?: string;
                customHeaders: { [key: string]: string };
                deadline?: string | null;
                deniedReason?: string | null;
                elementId: ElementId;
                elementInstanceKey: ElementInstanceKey;
                endTime?: string;
                errorCode?: string | null;
                errorMessage?: string | null;
                hasFailedWithRetriesLeft: boolean;
                isDenied?: boolean | null;
                jobKey: JobKey;
                kind: JobKindEnum;
                lastUpdateTime?: string;
                listenerEventType: JobListenerEventTypeEnum;
                processDefinitionId: ProcessDefinitionId;
                processDefinitionKey: ProcessDefinitionKey;
                processInstanceKey: ProcessInstanceKey;
                retries: number;
                state: JobStateEnum;
                tenantId: TenantId;
                type: string;
                worker: string;
            }[];
        };
    }
    Index

    Properties

    Properties

    "200": SearchQueryResponse & {
        items?: {
            creationTime?: string;
            customHeaders: { [key: string]: string };
            deadline?: string | null;
            deniedReason?: string | null;
            elementId: ElementId;
            elementInstanceKey: ElementInstanceKey;
            endTime?: string;
            errorCode?: string | null;
            errorMessage?: string | null;
            hasFailedWithRetriesLeft: boolean;
            isDenied?: boolean | null;
            jobKey: JobKey;
            kind: JobKindEnum;
            lastUpdateTime?: string;
            listenerEventType: JobListenerEventTypeEnum;
            processDefinitionId: ProcessDefinitionId;
            processDefinitionKey: ProcessDefinitionKey;
            processInstanceKey: ProcessInstanceKey;
            retries: number;
            state: JobStateEnum;
            tenantId: TenantId;
            type: string;
            worker: string;
        }[];
    }

    Job search response.

    Type Declaration

    • Optionalitems?: {
          creationTime?: string;
          customHeaders: { [key: string]: string };
          deadline?: string | null;
          deniedReason?: string | null;
          elementId: ElementId;
          elementInstanceKey: ElementInstanceKey;
          endTime?: string;
          errorCode?: string | null;
          errorMessage?: string | null;
          hasFailedWithRetriesLeft: boolean;
          isDenied?: boolean | null;
          jobKey: JobKey;
          kind: JobKindEnum;
          lastUpdateTime?: string;
          listenerEventType: JobListenerEventTypeEnum;
          processDefinitionId: ProcessDefinitionId;
          processDefinitionKey: ProcessDefinitionKey;
          processInstanceKey: ProcessInstanceKey;
          retries: number;
          state: JobStateEnum;
          tenantId: TenantId;
          type: string;
          worker: string;
      }[]

      The matching jobs.