QuotaDetails Data Type

Properties
name data type constraints description
name string  
guid string  
active boolean required
hypervisorManagerGuid string  
rules array of QuotaRuleDetails  

Example

{
  "name" : "...",
  "guid" : "...",
  "active" : true,
  "hypervisorManagerGuid" : "...",
  "rules" : [ {
    "ruleName" : "LOGICAL_BACKUP_CAPACITY",
    "type" : "TOTAL",
    "active" : true,
    "quotaConfig" : {
      "hardLimitValue" : 12345,
      "hardLimitTimeFrame" : 12345,
      "softLimitValue" : 12345,
      "softLimitTimeFrame" : 12345
    }
  }, {
    "ruleName" : "LOGICAL_BACKUP_CAPACITY",
    "type" : "PER_INSTANCE",
    "active" : true,
    "quotaConfig" : {
      "hardLimitValue" : 12345,
      "hardLimitTimeFrame" : 12345,
      "softLimitValue" : 12345,
      "softLimitTimeFrame" : 12345
    }
  } ]
}