import { Ipv4 } from '../Ipv4';
import { PossibleActions } from './PossibleActions';
import { NodeStatusEnum } from './NodeStatusEnum';
/** Node details in a nutanix cluster */
export interface NodeDetails {
    /** Hypervisor IP */
    ahvIp: Ipv4;
    /** Controler VM IP */
    cvmIp: Ipv4;
    /** Node possible actions */
    possibleActions: PossibleActions[];
    /** Name of the associated server */
    server: string;
    /** Node status */
    status: NodeStatusEnum;
}
//# sourceMappingURL=NodeDetails.d.ts.map