UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 631 B
import { Cluster } from './nutanixCluster/Cluster'; import { Features } from './nutanixCluster/Features'; import { License } from './nutanixCluster/License'; import { Service } from './nutanixCluster/Service'; /** Technical information on nutanix cluster service */ export interface NutanixCluster { /** Technical information on nutanix cluster */ cluster?: Cluster; /** Features of a cluster */ features?: Features[]; /** Technical details of the license of a cluster */ license?: License; /** Details about the service (SLA, ..) */ service?: Service; } //# sourceMappingURL=NutanixCluster.d.ts.map