@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias ClusterBrokerInfo

    Provides information on a broker node, independent of any physical tenant.

    type ClusterBrokerInfo = {
        brokerId: string;
        host: string;
        port: number;
        version: string;
    }
    Index
    brokerId: string

    The unique (within a cluster) broker identifier. When the cluster is not zoned, then it's a string that represents the nodeId (an integer). When the cluster is zoned, instead, it's of the form "$zoneName_$nodeId", providing uniqueness even across zones.

    host: string

    The hostname for reaching the broker.

    port: number

    The port for reaching the broker.

    version: string

    The broker version.