Member Junction
    Preparing search index...

    Output of TaskGraph.GetStatus.

    interface TaskGraphStatusOutput {
        errorMessage?: string;
        percentComplete?: number;
        status?: string;
        success: boolean;
        tasks?: {
            agentRunID?: string;
            errorMessage?: string;
            name: string;
            status: string;
            taskID: string;
        }[];
    }
    Index

    Properties

    errorMessage?: string
    percentComplete?: number

    Percent complete, counting only tasks that actually completed.

    status?: string

    Rolled-up parent status: In Progress | Complete | Failed | Blocked | Cancelled.

    success: boolean
    tasks?: {
        agentRunID?: string;
        errorMessage?: string;
        name: string;
        status: string;
        taskID: string;
    }[]

    Per-task snapshot.