@tikoci/centrs
    Preparing search index...

    Interface ResolvedRetrieveRequest

    interface ResolvedRetrieveRequest {
        allAttributes: boolean;
        attributes: readonly string[];
        auth: ResolvedAuth;
        format: ResolvedSetting<"text" | "json" | "yaml">;
        insecure?: ResolvedSetting<boolean>;
        listAttributes: boolean;
        maxResultsBytes?: ResolvedSetting<number>;
        path: string;
        target: ResolvedTarget;
        timeoutMs: ResolvedSetting<number>;
        validate: ResolvedSetting<boolean>;
        verbose: boolean;
        via: ResolvedSetting<
            | "rest-api"
            | "native-api"
            | "mac-telnet"
            | "ssh"
            | "snmp"
            | "mndp"
            | "romon"
            | "winbox-terminal"
            | "btest",
        >;
        warnings: readonly RetrieveWarning[];
    }
    Index

    Properties

    allAttributes: boolean
    attributes: readonly string[]
    format: ResolvedSetting<"text" | "json" | "yaml">
    insecure?: ResolvedSetting<boolean>

    Relax TLS peer verification. retrieve has no --insecure flag; this is set only by the quickchr provider (trust-by-provenance for the VM's self-signed TLS forward — see src/resolver/quickchr-provider.ts), so when present its source is always provider and it is surfaced as meta.settings.insecure for auditability.

    listAttributes: boolean
    maxResultsBytes?: ResolvedSetting<number>
    path: string
    timeoutMs: ResolvedSetting<number>
    validate: ResolvedSetting<boolean>
    verbose: boolean
    via: ResolvedSetting<
        | "rest-api"
        | "native-api"
        | "mac-telnet"
        | "ssh"
        | "snmp"
        | "mndp"
        | "romon"
        | "winbox-terminal"
        | "btest",
    >
    warnings: readonly RetrieveWarning[]