@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 591 B
TypeScript
import { ResourceMetadata } from '../../iam/ResourceMetadata';
import { ClusterStateEnum } from './ClusterStateEnum';
/** 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