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

    Kernel information representing a local or cloud kernel available for execution

    interface KernelInfo {
        displayName: string;
        id: string;
        language: string;
        metadata?: Record<string, unknown>;
        name: string;
        status: "idle" | "busy" | "starting" | "stopped";
        type: "local" | "cloud";
    }
    Index

    Properties

    displayName: string

    Human-readable display name shown in UI

    id: string

    Unique identifier for the kernel

    language: string

    Programming language supported by the kernel

    metadata?: Record<string, unknown>

    Additional metadata about the kernel (e.g., Python path, environment info)

    name: string

    Technical name of the kernel (e.g., "python3")

    status: "idle" | "busy" | "starting" | "stopped"

    Current operational status of the kernel

    type: "local" | "cloud"

    Execution environment type