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

    Type Alias RestoreStatusResponse

    The status of the restore that is currently in progress.

    type RestoreStatusResponse = {
        brokers: RestoreBrokerStatus[];
        changeId: string;
        startedAt: string | null;
        status: "IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELLED";
    }
    Index

    The per-broker restore status.

    changeId: string

    The ID of the cluster change that performs the restore.

    startedAt: string | null

    The time the restore started, as an ISO 8601 timestamp.

    status: "IN_PROGRESS" | "COMPLETED" | "FAILED" | "CANCELLED"

    The overall status of the restore.