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.
15529 15530 15531 |
# File 'lib/ovirtsdk4/services.rb', line 15529 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.
15629 15630 15631 |
# File 'lib/ovirtsdk4/services.rb', line 15629 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
15561 15562 15563 |
# File 'lib/ovirtsdk4/services.rb', line 15561 def remove(opts = {}) internal_remove(REMOVE, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 |
# File 'lib/ovirtsdk4/services.rb', line 15640 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
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>
15620 15621 15622 |
# File 'lib/ovirtsdk4/services.rb', line 15620 def update(pool, opts = {}) internal_update(pool, MacPool, UPDATE, opts) end |