@archastro/sdk
    Preparing search index...

    Interface SolutionDependentsResponse

    A preview of the agents and configs that would be affected by deleting a Solution, returned before any deletion occurs so the caller can display a confirmation warning.

    interface SolutionDependentsResponse {
        dependent_agent_count: number;
        dependent_agents: SolutionDependentAgent[];
        preserved_config_count: number;
    }
    Index

    Properties

    dependent_agent_count: number

    Total number of distinct agents that reference at least one config bundled by this Solution. Use this count in the confirmation message; dependent_agents may be a shorter sample.

    dependent_agents: SolutionDependentAgent[]

    A representative sample of the dependent agents, suitable for displaying in a warning list. May contain fewer entries than dependent_agent_count when there are many dependents.

    preserved_config_count: number

    Number of bundled configs that would be detached and preserved rather than deleted, because at least one live agent still references them.