Agent Armor API Reference
    Preparing search index...

    Interface ActionVerdict

    The deterministic verdict from AgentArmor.checkAction.

    interface ActionVerdict {
        admissible: boolean;
        matchedRule?: ActionRule;
        reason?: string;
    }
    Index
    admissible: boolean

    True only if the request matched a rule and satisfied all its constraints.

    matchedRule?: ActionRule

    The rule that admitted the request, when admissible is true.

    reason?: string

    Human-readable explanation. Always set when admissible is false.