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

    Interface AgentMount

    interface AgentMount {
        agent_id: string | null;
        agent_name: string | null;
        type: "agent_mount";
        agent_path?: string | null;
        auth_token?: string | null;
    }
    Index

    Properties

    agent_id: string | null

    The ID of the agent to mount. Either agent_id or name must be set.

    agent_name: string | null

    The name of the agent to mount. Returns the most recent agent with a matching name if no agent id string provided. Either agent id or name must be set

    type: "agent_mount"
    agent_path?: string | null

    Path to mount the agent on the Devbox. Required for git and object agents. Use absolute path (e.g., /home/user/agent)

    auth_token?: string | null

    Optional auth token for private repositories. Only used for git agents.