{
if (availableThresholdPercent > 100 ||
availableThresholdPercent < 0)
throw new InvalidConfigException("availableThresholdPercent must be between 0-100");
return new DiskSpaceTriggerConfig(enable, runIntervalSeconds, availableThresholdPercent, bootstrapDBDrive);
}