@qualithm/arrow-flight-client - v0.1.4
    Preparing search index...

    Type Alias TlsOptions

    TLS options for mTLS authentication. These are passed directly to Node.js HTTP/2 client.

    type TlsOptions = {
        ca?: string | Buffer | (string | Buffer)[];
        cert?: string | Buffer;
        key?: string | Buffer;
        passphrase?: string;
        rejectUnauthorized?: boolean;
    }
    Index

    Properties

    ca?: string | Buffer | (string | Buffer)[]

    CA certificate(s) for server verification (PEM format). If not provided, uses default system CA.

    cert?: string | Buffer

    Client certificate (PEM format).

    key?: string | Buffer

    Client private key (PEM format).

    passphrase?: string

    Passphrase for the private key.

    rejectUnauthorized?: boolean

    Whether to reject unauthorised certificates.

    true