Maximo API Client - v0.9.01
    Preparing search index...

    Interface MaximoToolsClientConfig

    Configuration options for the Maximo Tools API client

    interface MaximoToolsClientConfig {
        baseUrl: string;
        apiKey: string;
        logLevel?: LogLevel;
        logger?: ILogger;
        timeout?: number;
        rejectUnauthorized?: boolean;
        ssl?: boolean;
        ca?: string;
        caFilePath?: string;
        autoExtractCert?: boolean;
        skipHostnameValidation?: boolean;
    }
    Index

    Properties

    baseUrl: string

    Base URL of the Maximo server (e.g., https://maxinst:port)

    apiKey: string

    API key for authentication (required for Tools API)

    logLevel?: LogLevel

    Log level for the client

    logger?: ILogger

    Logger configuration

    timeout?: number

    Request timeout in milliseconds

    rejectUnauthorized?: boolean

    Whether to ignore SSL certificate errors (not recommended for production)

    ssl?: boolean
    ca?: string

    CA cert in pem format

    caFilePath?: string

    ca cert path

    autoExtractCert?: boolean

    auto extract certificate

    skipHostnameValidation?: boolean

    Whether to skip hostname validation when using autoExtractCert. If true, only certificate fingerprint is validated (useful for IP-based connections).