@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
18 lines • 615 B
TypeScript
/** Share Quota */
export interface Quota {
/** Maximum share size of a share */
maxShareSizePerShare: number;
/** Maximum share total size for project */
maxShareSizeTotal: number;
/** Maximum number of share snapshots */
maxShareSnapshots: number;
/** Maximum number of shares in the quota */
maxSharesNumber: number;
/** Used share total size for project */
usedShareSizeTotal: number;
/** Used number of share snapshot */
usedShareSnapshots: number;
/** Used number of shares in the quota */
usedSharesNumber: number;
}
//# sourceMappingURL=Quota.d.ts.map