UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 497 B
import { StatusEnum } from './StatusEnum'; import { Cluster } from './Cluster'; /** Nutanix Cluster State */ export interface State { /** Available redundancy Factor */ allowedRedundancyFactor: number[]; /** Available versions to install */ availableVersions: string[]; /** Cluster name */ serviceName: string; /** Current cluster's status */ status: StatusEnum; /** Target Spec after deployment */ targetSpec: Cluster; } //# sourceMappingURL=State.d.ts.map