Agent Armor API Reference
    Preparing search index...

    Interface ActionRequest

    A proposed agent action evaluated by AgentArmor.checkAction.

    interface ActionRequest {
        args?: Record<string, unknown>;
        tool: string;
    }
    Index
    args?: Record<string, unknown>

    Tool arguments. The gate inspects url/host (host constraint), path (path constraint), and mode/write/readOnly (mode constraint).

    tool: string

    The tool / operation the agent proposes to run.