VSCode-Logger API - v1.7.3
    Preparing search index...

    Interface EmbeddedDevice

    Representation of a configured embedded device.

    interface EmbeddedDevice {
        bastion?: BastionConfig;
        color?: string;
        enableSftpExplorer?: boolean;
        enableSshTerminal?: boolean;
        enableWebBrowser?: boolean;
        host: string;
        hostFingerprint?: string;
        id: string;
        logCommand?: string;
        name: string;
        password?: string;
        port?: number;
        privateKeyPassphrase?: string;
        privateKeyPath?: string;
        secondaryHost?: string;
        secondaryHostFingerprint?: string;
        sshCommands?: { command: string; name: string }[];
        username: string;
        webBrowserUrl?: string;
    }
    Index

    Properties

    bastion?: BastionConfig
    color?: string
    enableSftpExplorer?: boolean
    enableSshTerminal?: boolean
    enableWebBrowser?: boolean
    host: string
    hostFingerprint?: string
    id: string
    logCommand?: string
    name: string
    password?: string
    port?: number
    privateKeyPassphrase?: string
    privateKeyPath?: string
    secondaryHost?: string
    secondaryHostFingerprint?: string
    sshCommands?: { command: string; name: string }[]
    username: string
    webBrowserUrl?: string