UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

32 lines 1.02 kB
import { CrushTunablesEnum } from './response/CrushTunablesEnum'; import { ResourceMetadata } from '../../../iam/ResourceMetadata'; import { StateEnum } from './response/StateEnum'; import { StatusEnum } from './response/StatusEnum'; /** Details about ceph cluster */ export interface ResponseWithIAM { /** List of CEPH monitor IPs */ cephMons: string[]; /** Used version of ceph */ cephVersion: string; /** Creation date */ createDate: string; /** Tunables of cluster */ crushTunables: CrushTunablesEnum; /** IAM resource metadata */ iam?: ResourceMetadata; /** Name of cluster */ label: string; /** Name of region where cluster is located */ region: string; /** ID of cluster */ serviceName: string; /** Size of cluster in TB */ size: number; /** State of cluster */ state: StateEnum; /** Status of cluster */ status: StatusEnum; /** Last update date */ updateDate: string; } //# sourceMappingURL=ResponseWithIAM.d.ts.map