node-ovh-ts
Version:
OVH API wrapper library for TypeScript
14 lines (11 loc) • 860 B
TypeScript
import { ServicesExpandedTechnicalNutanixClusterCluster } from './ServicesExpandedTechnicalNutanixClusterCluster.js';
import { ServicesExpandedTechnicalNutanixClusterService } from './ServicesExpandedTechnicalNutanixClusterService.js';
import { ServicesExpandedTechnicalNutanixClusterLicense } from './ServicesExpandedTechnicalNutanixClusterLicense.js';
import { ServicesExpandedTechnicalNutanixClusterFeatures } from './ServicesExpandedTechnicalNutanixClusterFeatures.js';
type ServicesExpandedTechnicalNutanixCluster = {
cluster?: ServicesExpandedTechnicalNutanixClusterCluster | null;
features?: ServicesExpandedTechnicalNutanixClusterFeatures[] | null;
license?: ServicesExpandedTechnicalNutanixClusterLicense | null;
service?: ServicesExpandedTechnicalNutanixClusterService | null;
};
export { ServicesExpandedTechnicalNutanixCluster };