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

    Interface RoutePlan

    Plan for routing every outgoing request to a specific JVM in a Maximo cluster. Applied by the request interceptor.

    autoscript-relay — the request is rewritten to POST/GET against the MAXIMOMIZE.CLUSTER autoscript with ?action=relay&targetHost=...&endpoint=.... Body, method and auth headers pass through unchanged; the upstream response is returned verbatim by the script (no envelope unwrap).

    direct-url — no per-request rewriting; the HttpClient was constructed with the target's per-pod ingress URL as baseUrl and performs its own login. The plan is carried only for diagnostic logging.

    interface RoutePlan {
        mechanism: "autoscript-relay" | "direct-url";
        nodeName: string;
        serverHost?: string;
        scriptName?: string;
    }
    Index

    Properties

    mechanism: "autoscript-relay" | "direct-url"
    nodeName: string

    Logical name of the target node (informational; appears in logs).

    serverHost?: string

    Hostname/IP to forward to. Required for autoscript-relay.

    scriptName?: string

    Script name. Defaults to MAXIMOMIZE.CLUSTER.