node-redfish
    Preparing search index...

    Interface RedfishClientOptions

    interface RedfishClientOptions {
        auth?: RedfishAuth;
        baseUrl: string;
        fetch?: (
            input: string | URL | Request,
            init?: RequestInit,
        ) => Promise<Response>;
        insecure?: boolean;
        servicePath?: string;
        timeoutMs?: number;
    }
    Index

    Authentication strategy. Defaults to { type: 'none' }.

    baseUrl: string

    Base URL of the BMC, e.g. https://10.0.0.5

    fetch?: (input: string | URL | Request, init?: RequestInit) => Promise<Response>

    Override the fetch implementation (mainly for testing).

    insecure?: boolean

    Skip TLS certificate verification. Most BMCs ship a self-signed certificate, so this is commonly needed. Defaults to false.

    servicePath?: string

    Root service path. Defaults to /redfish/v1.

    timeoutMs?: number

    Per-request timeout in milliseconds. Defaults to 15000.