UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

29 lines 878 B
import { CrushTunablesEnum } from './response/CrushTunablesEnum'; import { StateEnum } from './response/StateEnum'; import { StatusEnum } from './response/StatusEnum'; /** Details about ceph cluster */ export interface Response { /** List of CEPH monitor IPs */ cephMons: string[]; /** Used version of ceph */ cephVersion: string; /** Creation date */ createDate: string; /** Tunables of cluster */ crushTunables: CrushTunablesEnum; /** 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=Response.d.ts.map