@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 448 B
TypeScript
import { ClusterStateEnum } from './ClusterStateEnum';
/** Structure describing a service */
export interface Cluster {
/** Datacenter */
datacenter: string;
/** Label of NVMeoF cluster */
label: string;
/** Quantity of NVMeoF cluster */
quantity: number;
/** Identifier of NVMeoF cluster */
serviceName: string;
/** State of NVMeoF cluster */
state: ClusterStateEnum;
}
//# sourceMappingURL=Cluster.d.ts.map