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

    Type Alias HistoryBackupSnapshotInfo

    History Backup Snapshot Info

    Detailed info of a single snapshot making up a history backup.

    type HistoryBackupSnapshotInfo = {
        failures: string[];
        snapshotName: string;
        startTime: string | null;
        state: string | null;
    }
    Index
    failures: string[]

    The failures reported for this snapshot. Empty if there were none.

    snapshotName: string

    The name of the snapshot.

    startTime: string | null

    The timestamp at which the snapshot was started. Not reported when the backup was listed without snapshot detail.

    state: string | null

    The state of the snapshot, reported verbatim by the secondary storage (for example 'SUCCESS', 'IN_PROGRESS' or 'PARTIAL'). Deliberately not a closed set: Elasticsearch and OpenSearch report different vocabularies. Not reported when the backup was listed without snapshot detail.