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

    Type Alias BatchOperationResponse

    type BatchOperationResponse = {
        actorId: string | null;
        actorType: AuditLogActorTypeEnum | null;
        batchOperationKey: BatchOperationKey;
        batchOperationType: BatchOperationTypeEnum;
        endDate?: string | null;
        errors: BatchOperationError[];
        operationsCompletedCount: number;
        operationsFailedCount: number;
        operationsTotalCount: number;
        startDate?: string | null;
        state: BatchOperationStateEnum;
    }
    Index

    Properties

    actorId: string | null

    The ID of the actor who performed the operation. Available for batch operations created since 8.9.

    actorType: AuditLogActorTypeEnum | null

    The type of the actor who performed the operation. This is null if the batch operation was created before 8.9, or if the actor information is not available.

    batchOperationKey: BatchOperationKey

    Key or (Operate Legacy ID = UUID) of the batch operation.

    batchOperationType: BatchOperationTypeEnum
    endDate?: string | null

    The end date of the batch operation. This is null if the batch operation is still running.

    The errors that occurred per partition during the batch operation.

    operationsCompletedCount: number

    The number of successfully completed tasks.

    operationsFailedCount: number

    The number of items which failed during execution of the batch operation. (e.g. because they are rejected by the Zeebe engine).

    operationsTotalCount: number

    The total number of items contained in this batch operation.

    startDate?: string | null

    The start date of the batch operation. This is null if the batch operation has not yet started.