@archastro/sdk
    Preparing search index...

    Interface SolutionInstallResponse

    The runtime resource provisioned by installing a Solution, along with a reference back to the source Solution config.

    interface SolutionInstallResponse {
        id: string;
        kind: string;
        lookup_key?: string;
        solution: string;
    }
    Index

    Properties

    id: string

    Public ID of the provisioned resource. The prefix reflects the resource kind: agi_... for Agent, aut_... for Automation, art_... for AgentRoutine, att_... for AgentTool, ask_... for AgentSkill, cmp_... for AgentComputer.

    kind: string

    Type of the provisioned resource. One of "Agent", "Automation", "AgentRoutine", "AgentTool", "AgentSkill", or "AgentComputer".

    lookup_key?: string

    The lookup_key stamped on the provisioned resource. null for AgentSkill, which is a join record and does not carry a lookup key.

    solution: string

    Solution config ID (cfg_...) that was used as the source for this install.