import { ClusterStateEnum } from './ClusterStateEnum';
import { ResourceMetadata } from '../../iam/ResourceMetadata';
/** Managed Hadoop Cluster */
export interface HadoopWithIAM {
    /** CDH and Cloudera Manager version */
    clouderaVersion: string;
    /** IAM resource metadata */
    iam?: ResourceMetadata;
    /** Maximum quantity of nodes allowed to be ordered in the cluster */
    maxOrderableNodes: number;
    /** Service name of your Cluster */
    name: string;
    /** State of the Hadoop Cluster */
    state: ClusterStateEnum;
}
//# sourceMappingURL=HadoopWithIAM.d.ts.map