UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 453 B
import { ClusterStateEnum } from './ClusterStateEnum'; /** Managed Hadoop Cluster */ export interface Hadoop { /** CDH and Cloudera Manager version */ clouderaVersion: string; /** 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=Hadoop.d.ts.map