UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 443 B
/** Health of ceph cluster */ export interface Response { /** All available space in bytes */ availableBytes: number; /** True or False */ healthy: boolean; /** ID of cluster */ serviceName: string; /** Status of ceph cluster */ status: string; /** Total cluster space in bytes */ totalBytes: number; /** Used cluster space in bytes */ usedBytes: number; } //# sourceMappingURL=Response.d.ts.map