AutoBE
    Preparing search index...

    Interface AutoBeRealizeOperationFailure

    Structured failure captured while generating or correcting one operation.

    This object keeps endpoint-level Realize failures as data so the phase can preserve partial success instead of aborting the whole batch.

    sunrabbit123

    interface AutoBeRealizeOperationFailure {
        endpoint: IEndpoint;
        error?: AutoBeRealizeOperationFailure.IError;
        function?: AutoBeRealizeOperationFunction;
        location: string;
        name: string;
        phase: Phase;
        reason: string;
        source: Source;
        validation?: IValidationSummary;
    }
    Index

    Properties

    endpoint: IEndpoint

    Endpoint that failed during operation realization.

    Error details when the failure came from an exception.

    Last generated function, when generation succeeded before failing later.

    location: string

    Generated provider file path associated with the endpoint.

    name: string

    Generated provider function name associated with the endpoint.

    phase: Phase

    Pipeline phase where the failure happened.

    reason: string

    Human-readable failure reason.

    source: Source

    Machine-readable failure source.

    validation?: IValidationSummary

    Last known validation result for this operation, when available.