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

    Type Alias PartitionBackupInfo

    Partition Backup Info

    Detailed info of the backup for a given partition.

    type PartitionBackupInfo = {
        brokerId: number | null;
        brokerVersion: string | null;
        checkpointPosition: number | null;
        createdAt: string | null;
        failureReason: string | null;
        firstLogPosition: number | null;
        lastUpdatedAt: string | null;
        partitionId: PartitionId;
        snapshotId: string | null;
        state: StateCode;
    }
    Index
    brokerId: number | null

    The id of the broker from which the backup was taken for this partition.

    brokerVersion: string | null

    The version of the broker from which the backup was taken for this partition.

    checkpointPosition: number | null

    The position of the checkpoint for this backup.

    createdAt: string | null

    The timestamp at which the backup was started on this partition.

    failureReason: string | null

    Failure reason if the state is 'FAILED'.

    firstLogPosition: number | null

    The first log position included in this backup.

    lastUpdatedAt: string | null

    The timestamp at which the backup was last updated on this partition, e.g. changed state from 'IN_PROGRESS' to 'COMPLETED'.

    partitionId: PartitionId

    The id of the partition.

    snapshotId: string | null

    The id of the snapshot which is included in this backup.

    state: StateCode

    The state of the backup on this partition.