UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 395 B
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