@archastro/sdk
    Preparing search index...

    Interface AgentUpgradeResult

    The computed diff and outcome of an agent upgrade operation, including the full list of per-resource changes.

    interface AgentUpgradeResult {
        changes: AgentUpgradeChange[];
        dry_run: boolean;
        mode: string;
        review_fingerprint?: string;
        status: string;
        summary: AgentUpgradeSummary;
    }
    Index

    Properties

    Ordered list of per-resource changes that will be (or were) applied by this upgrade.

    dry_run: boolean

    true when the request was a dry run and no changes were persisted to the agent.

    mode: string

    Upgrade mode that was used. One of "full" (apply all changes) or "review" (require fingerprint confirmation).

    review_fingerprint?: string

    Opaque fingerprint of the computed diff. Pass this value back as review_fingerprint to confirm and apply a "review" mode upgrade.

    status: string

    Outcome of the upgrade. "ready" for a dry-run (no changes applied); "upgraded" when the upgrade was committed.

    Aggregate counts of adds, updates, removes, and noops across all child resources.