name | data type | constraints | description |
---|---|---|---|
name | string | required, max size: 255, min size: 1 | |
active | boolean | required | |
hypervisorManagerGuid | string | required | |
rules | array of QuotaRuleRequest | required |
Example
{ "name" : "...", "active" : true, "hypervisorManagerGuid" : "...", "rules" : [ { "ruleName" : "LOGICAL_BACKUP_CAPACITY", "type" : "TOTAL", "active" : true, "quotaConfig" : { "hardLimitValue" : 12345, "hardLimitTimeFrame" : 12345, "softLimitValue" : 12345, "softLimitTimeFrame" : 12345 } }, { "ruleName" : "NUMBER_OF_BACKUPS", "type" : "PER_INSTANCE", "active" : true, "quotaConfig" : { "hardLimitValue" : 12345, "hardLimitTimeFrame" : 12345, "softLimitValue" : 12345, "softLimitTimeFrame" : 12345 } } ] }