import { NodeStatusEnum } from './NodeStatusEnum';
/** Node installed on your cluster */
export interface Node {
    /** Creation date */
    createdAt: string;
    /** Node deployment date */
    deployedAt?: string;
    /** Flavor name */
    flavor: string;
    /** Node ID */
    id: string;
    /** Public Cloud instance id */
    instanceId?: string;
    /** True if the node is up to date */
    isUpToDate: boolean;
    /** Node name */
    name: string;
    /** NodePool parent id */
    nodePoolId: string;
    /** Project id */
    projectId: string;
    /** Status */
    status: NodeStatusEnum;
    /** Node last update date */
    updatedAt: string;
    /** Node version */
    version: string;
}
//# sourceMappingURL=Node.d.ts.map