PhysicalNode type

Signature:

export declare type PhysicalNode = {
    nodeType: "physical";
    id: PhysicalNodeId;
    tags: {
        [key: string]: string;
    };
    ipAddress: string;
};

References: PhysicalNodeId