Adding in retention days for app backups.
This commit is contained in:
parent
a25cc7fbaf
commit
ae8145baec
|
@ -25,6 +25,7 @@ export enum MonthlyQuotaName {
|
|||
|
||||
export enum ConstantQuotaName {
|
||||
AUTOMATION_LOG_RETENTION_DAYS = "automationLogRetentionDays",
|
||||
APP_BACKUPS_RETENTION_DAYS = "appBackupRetentionDays",
|
||||
}
|
||||
|
||||
export type MeteredQuotaName = StaticQuotaName | MonthlyQuotaName
|
||||
|
@ -76,6 +77,7 @@ export type StaticQuotas = {
|
|||
|
||||
export type ConstantQuotas = {
|
||||
[ConstantQuotaName.AUTOMATION_LOG_RETENTION_DAYS]: Quota
|
||||
[ConstantQuotaName.APP_BACKUPS_RETENTION_DAYS]: Quota
|
||||
}
|
||||
|
||||
export type Quotas = {
|
||||
|
|
Loading…
Reference in New Issue