import { Node } from './Node';
/** A structure describing the dedicated cluster */
export interface Cluster {
    /** Cluster's ID */
    id: string;
    /** Model of the cluster */
    model: string;
    /** Cluster's nodes */
    nodes: Node[];
    /** Region where cluster is located */
    region: string;
    /** Cluster status */
    status: string;
}
//# sourceMappingURL=Cluster.d.ts.map