import { BillingNameEnum } from './BillingNameEnum';
import { NodeProfileEnum } from './NodeProfileEnum';
import { NodeStateEnum } from './NodeStateEnum';
import { Ip } from '../../Ip';
/** Physical or Virtual Node */
export interface Node {
    /** Name of the billing profile attached to the node */
    billingProfileName: BillingNameEnum;
    /** Hostname of the node */
    hostname: string;
    /** IP of the Node */
    ip: Ip;
    /** Whether or not the Node is removable */
    isRemovable: boolean;
    /** Profile of the Node */
    softwareProfile: NodeProfileEnum;
    /** State of the Node */
    state: NodeStateEnum;
}
//# sourceMappingURL=Node.d.ts.map