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

    Type Alias BatchOperationResponse

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

    Properties

    actorId?: string

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

    batchOperationKey?: BatchOperationKey

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

    batchOperationType?: BatchOperationTypeEnum
    endDate?: string

    The end date of the batch operation.

    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

    The start date of the batch operation.