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 {
|
export enum ConstantQuotaName {
|
||||||
AUTOMATION_LOG_RETENTION_DAYS = "automationLogRetentionDays",
|
AUTOMATION_LOG_RETENTION_DAYS = "automationLogRetentionDays",
|
||||||
|
APP_BACKUPS_RETENTION_DAYS = "appBackupRetentionDays",
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MeteredQuotaName = StaticQuotaName | MonthlyQuotaName
|
export type MeteredQuotaName = StaticQuotaName | MonthlyQuotaName
|
||||||
|
@ -76,6 +77,7 @@ export type StaticQuotas = {
|
||||||
|
|
||||||
export type ConstantQuotas = {
|
export type ConstantQuotas = {
|
||||||
[ConstantQuotaName.AUTOMATION_LOG_RETENTION_DAYS]: Quota
|
[ConstantQuotaName.AUTOMATION_LOG_RETENTION_DAYS]: Quota
|
||||||
|
[ConstantQuotaName.APP_BACKUPS_RETENTION_DAYS]: Quota
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Quotas = {
|
export type Quotas = {
|
||||||
|
|
Loading…
Reference in New Issue