@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 654 B
TypeScript
/** Quota informations for current billing period for this zone */
export interface Quota {
/** Quota alert value in bytes. When reached, we will send you an alert. Default : included quota with your offer */
alert?: number;
/** Included quota value with your offer, in bytes */
included?: number;
/** The last time your quota was updated from your Load Balancer instance */
lastUpdateDate?: string;
/** The last time your quota was resetted (billed) */
resetDate?: string;
/** Total used quota value in bytes */
total?: number;
/** Zone of your quota */
zone: string;
}
//# sourceMappingURL=Quota.d.ts.map