UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

18 lines 586 B
import { ClusterStateEnum } from './ClusterStateEnum'; import { ResourceMetadata } from '../../iam/ResourceMetadata'; /** Structure describing a service */ export interface ClusterWithIAM { /** Datacenter */ datacenter: string; /** IAM resource metadata */ iam?: ResourceMetadata; /** 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=ClusterWithIAM.d.ts.map