Class: OvirtSDK4::MacPoolService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#get(opts = {}) ⇒ MacPool
Returns the representation of the object managed by this service.
-
#permissions_service ⇒ AssignedPermissionsService
Returns a reference to the service that manages the permissions that are associated with the MacPool.
-
#remove(opts = {}) ⇒ Object
Removes a MAC address pool.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#update(pool, opts = {}) ⇒ MacPool
Updates a MAC address pool.
Methods inherited from Service
Instance Method Details
#get(opts = {}) ⇒ MacPool
Returns the representation of the object managed by this service.
15327 15328 15329 |
# File 'lib/ovirtsdk4/services.rb', line 15327 def get(opts = {}) internal_get(GET, opts) end |
#permissions_service ⇒ AssignedPermissionsService
Returns a reference to the service that manages the permissions that are associated with the MacPool.
15424 15425 15426 |
# File 'lib/ovirtsdk4/services.rb', line 15424 def @permissions_service ||= AssignedPermissionsService.new(self, 'permissions') end |
#remove(opts = {}) ⇒ Object
Removes a MAC address pool.
For example, to remove the MAC address pool having id 123 send a request like this:
DELETE /ovirt-engine/api/macpools/123 HTTP/1.1
15358 15359 15360 |
# File 'lib/ovirtsdk4/services.rb', line 15358 def remove(opts = {}) internal_remove(REMOVE, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 |
# File 'lib/ovirtsdk4/services.rb', line 15435 def service(path) if path.nil? || path == '' return self end if path == 'permissions' return end if path.start_with?('permissions/') return .service(path[12..-1]) end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |
#update(pool, opts = {}) ⇒ MacPool
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:
PUT /ovirt-engine/api/macpools/123 HTTP/1.1
With a request body like this:
<mac_pool>
<name>UpdatedMACPool</name>
<description>An updated MAC address pool</description>
<allow_duplicates>false</allow_duplicates>
<ranges>
<range>
<from>00:1A:4A:16:01:51</from>
<to>00:1A:4A:16:01:e6</to>
</range>
<range>
<from>02:1A:4A:01:00:00</from>
<to>02:1A:4A:FF:FF:FF</to>
</range>
</ranges>
</mac_pool>
15415 15416 15417 |
# File 'lib/ovirtsdk4/services.rb', line 15415 def update(pool, opts = {}) internal_update(pool, MacPool, UPDATE, opts) end |