@runloop/api-client - v1.22.0
    Preparing search index...

    Interface AgentDevboxCountsView

    Devbox counts grouped by agent name. Used to efficiently fetch devbox counts for multiple agents in a single request.

    interface AgentDevboxCountsView {
        counts: { [key: string]: number };
        total_count: number;
    }
    Index

    Properties

    Properties

    counts: { [key: string]: number }

    Map of agent name to devbox count. Each key is an agent name, and the value is the count of devboxes associated with that agent.

    total_count: number

    Total count of devboxes across all agents in the result.