Datalayer VS Code Extension - v0.0.9
    Preparing search index...

    Runtime information structure

    interface RuntimeInfo {
        durationMinutes?: number;
        environment?: string;
        id: string;
        metadata?: Record<string, unknown>;
        name: string;
        status: "error" | "stopped" | "running";
    }
    Index

    Properties

    durationMinutes?: number

    Duration in minutes for which the runtime is allocated

    environment?: string

    Configured environment for the runtime (e.g., 'python-3.11')

    id: string

    Unique identifier for the runtime instance

    metadata?: Record<string, unknown>

    Additional metadata from the runtime provider

    name: string

    Display name of the runtime

    status: "error" | "stopped" | "running"

    Current status of the runtime