import { ResourceMetadata } from '../../iam/ResourceMetadata';
import { Node } from './Node';
/** A structure describing the dedicated cluster */
export interface ClusterWithIAM {
    /** IAM resource metadata */
    iam?: ResourceMetadata;
    /** 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=ClusterWithIAM.d.ts.map