Class MacPoolServiceImpl

    • Constructor Detail

    • Method Detail

      • remove

        public MacPoolService.RemoveRequest remove()
        Description copied from interface: MacPoolService
        Removes a MAC address pool. For example, to remove the MAC address pool having id `123` send a request like this: [source] ---- DELETE /ovirt-engine/api/macpools/123 ----
        Specified by:
        remove in interface MacPoolService
      • update

        public MacPoolService.UpdateRequest update()
        Description copied from interface: MacPoolService
        Updates a MAC address pool. The `name`, `description`, `allow_duplicates`, and `ranges` attributes can be updated. For example, to update the MAC address pool of id `123` send a request like this: [source] ---- PUT /ovirt-engine/api/macpools/123 ---- With a request body like this: [source,xml] ---- UpdatedMACPool An updated MAC address pool false 00:1A:4A:16:01:51 00:1A:4A:16:01:e6 02:1A:4A:01:00:00 02:1A:4A:FF:FF:FF ----
        Specified by:
        update in interface MacPoolService