@archastro/sdk
    Preparing search index...

    Interface AgentEnvVarMasked

    An agent environment variable with its secret value masked for safe display in list and show responses.

    interface AgentEnvVarMasked {
        agent: string;
        created_at?: string;
        description?: string;
        id: string;
        key: string;
        masked_value: string;
        updated_at?: string;
    }
    Index

    Properties

    agent: string

    ID of the agent this environment variable belongs to (agt_...).

    created_at?: string

    When the environment variable was created (ISO 8601).

    description?: string

    Optional human-readable note describing the purpose of this variable. null if not set.

    id: string

    Environment variable ID (anv_...).

    key: string

    Name of the environment variable as it appears in the agent's runtime.

    masked_value: string

    Redacted representation of the secret value. The last four characters are preserved; all preceding characters are replaced with ****. Returns **** when the value is absent or four characters or fewer.

    updated_at?: string

    When the environment variable was last updated (ISO 8601).