@tikoci/centrs
    Preparing search index...

    Interface ExecuteRequest

    interface ExecuteRequest {
        cdbFile?: string;
        cdbPassword?: string;
        command: string;
        confirm?: (prompt: string) => Promise<boolean>;
        format?: string;
        host?: string;
        insecure?: boolean;
        maxResultsBytes?: number;
        password?: string;
        port?: number;
        resolve?: string;
        sshKey?: string;
        stdinIsTty?: boolean;
        targetInput?: string;
        timeout?: string | number;
        username?: string;
        validate?: boolean;
        verbose?: boolean;
        via?: string;
        yes?: boolean;
    }
    Index

    Properties

    cdbFile?: string
    cdbPassword?: string
    command: string
    confirm?: (prompt: string) => Promise<boolean>
    format?: string
    host?: string
    insecure?: boolean

    Disable peer verification (--insecure). For --via ssh this sets StrictHostKeyChecking=no with a null known_hosts, so a changed / impersonated host key is accepted too — not just trust-on-first-use; for api-ssl it accepts a self-signed TLS cert. Default verifies.

    maxResultsBytes?: number
    password?: string
    port?: number
    resolve?: string

    Opt-in host ARP resolution for a MAC target (none default, or arp).

    sshKey?: string

    SSH private-key path for --via ssh (path only; agent / ~/.ssh used if unset).

    stdinIsTty?: boolean
    targetInput?: string
    timeout?: string | number
    username?: string
    validate?: boolean
    verbose?: boolean
    via?: string
    yes?: boolean