Class QosServiceImpl

    • Method Detail

      • get

        public QosService.GetRequest get()
        Description copied from interface: QosService
        Get specified QoS in the data center. [source] ---- GET /ovirt-engine/api/datacenters/123/qoss/123 ---- You will get response like this one below: [source,xml] ---- 123 123 1 1 storage ----
        Specified by:
        get in interface QosService
      • remove

        public QosService.RemoveRequest remove()
        Description copied from interface: QosService
        Remove specified QoS from datacenter. [source] ---- DELETE /ovirt-engine/api/datacenters/123/qoss/123 ----
        Specified by:
        remove in interface QosService
      • update

        public QosService.UpdateRequest update()
        Description copied from interface: QosService
        Update the specified QoS in the dataCenter. [source] ---- PUT /ovirt-engine/api/datacenters/123/qoss/123 ---- For example with curl: [source] ---- curl -u admin@internal:123456 -X PUT -H "content-type: application/xml" -d \ "32132110" \ https://engine/ovirt-engine/api/datacenters/123/qoss/123 ---- You will receive response like this: [source,xml] ---- 321 321 10 1 storage ----
        Specified by:
        update in interface QosService
      • service

        public Service service​(String path)
        Description copied from interface: QosService
        Service locator method, returns individual service on which the URI is dispatched.
        Specified by:
        service in interface QosService