Member Junction
    Preparing search index...

    Batch result wrapping per-item results with summary counts.

    interface RSUPipelineBatchResult {
        FailureCount: number;
        Results: RSUPipelineResult[];
        SuccessCount: number;
        TotalCount: number;
    }
    Index

    Properties

    FailureCount: number

    Number of migrations that failed.

    Per-item results in the same order as the inputs.

    SuccessCount: number

    Number of migrations that succeeded.

    TotalCount: number

    Total number of inputs in the batch.