Interface QuotaStorageLimitsService.AddResponse

  • All Superinterfaces:
    Response
    Enclosing interface:
    QuotaStorageLimitsService

    public static interface QuotaStorageLimitsService.AddResponse
    extends Response
    Adds a storage limit to a specified quota. To create a 100GiB storage limit for all storage domains in a data center, send a request like this: [source] ---- POST /ovirt-engine/api/datacenters/123/quotas/456/quotastoragelimits ---- With a request body like this: [source,xml] ---- 100 ---- To create a 50GiB storage limit for a storage domain with the ID `000`, send a request like this: [source] ---- POST /ovirt-engine/api/datacenters/123/quotas/456/quotastoragelimits ---- With a request body like this: [source,xml] ---- 50 ----