truffle-ts API reference - v0.4.2
    Preparing search index...

    Interface ParsedQuery

    Structured output of parseQuery — all constraints extracted from the text.

    interface ParsedQuery {
        apps: string[];
        architecture: "" | Architecture;
        exactMatch: boolean;
        gpuCount: number;
        gpus: string[];
        minMemory: number;
        minNetworkGbps: number;
        minPhysCores: number;
        minVcpu: number;
        processors: string[];
        rawTokens: Token[];
        requireEfa: boolean;
        requireNestedV: boolean;
        sizes: string[];
        vendors: string[];
    }
    Index
    apps: string[]

    Application names (resolved to hardware in buildCriteria).

    architecture: "" | Architecture

    "x86_64" | "arm64"; empty = both.

    exactMatch: boolean

    If true, match exact vCPU/memory values instead of minimum.

    gpuCount: number

    Minimum number of GPUs; 0 = unconstrained.

    gpus: string[]
    minMemory: number

    Minimum memory in GiB; 0 = unconstrained.

    minNetworkGbps: number

    Minimum network bandwidth in Gbps; 0 = unconstrained.

    minPhysCores: number

    Minimum physical core count; 0 = unconstrained.

    minVcpu: number

    Minimum vCPU count; 0 = unconstrained.

    processors: string[]
    rawTokens: Token[]

    Parsed tokens in input order (diagnostics).

    requireEfa: boolean
    requireNestedV: boolean
    sizes: string[]
    vendors: string[]