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

    Type Alias BackupInfo

    Backup Info

    Detailed status of a runtime backup. The aggregated state is computed from the backup state of each partition as:

    • If the backup of all partitions is 'COMPLETED', the overall state is 'COMPLETED'.
    • If one partition is 'FAILED', the overall state is 'FAILED'.
    • Otherwise, if one partition is 'DOES_NOT_EXIST', the overall state is 'INCOMPLETE'.
    • Otherwise, if one partition is 'IN_PROGRESS', the overall state is 'IN_PROGRESS'.
    type BackupInfo = {
        backupId: BackupId;
        details: PartitionBackupInfo[];
        failureReason: string | null;
        state: StateCode;
    }
    Index
    backupId: BackupId

    The id of the backup.

    Detailed status of the backup per partition. Always contains every partition of the physical tenant.

    failureReason: string | null

    Reason for failure if the state is 'FAILED'.

    state: StateCode

    The aggregated state of the backup.