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

    Type Alias RestoreRequest

    Describes a restore request. Provide either a list of backup IDs or a time range (from/to) that selects the backups to restore; the two are mutually exclusive.

    type RestoreRequest = {
        backupIds?: number[] | null;
        from?: string | null;
        to?: string | null;
    }
    Index
    backupIds?: number[] | null

    The IDs of the backups to restore from, one per partition.

    from?: string | null

    The start of the time range to restore from, as an ISO 8601 timestamp.

    to?: string | null

    The end of the time range to restore from, as an ISO 8601 timestamp.