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

    Type Alias RestorePartitionStatus

    The restore status of a single partition on a broker.

    type RestorePartitionStatus = {
        backupIds: number[];
        completedAt: string | null;
        partitionId: number;
        state: "PENDING" | "RESTORING" | "RESTORED";
    }
    Index
    backupIds: number[]

    The IDs of the backups this partition is restored from.

    completedAt: string | null

    The time the partition was restored, as an ISO 8601 timestamp; null unless the partition state is RESTORED.

    partitionId: number

    The ID of the partition.

    state: "PENDING" | "RESTORING" | "RESTORED"

    The restore state of the partition.