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.
15393 15394 15395 |
# File 'lib/ovirtsdk4/services.rb', line 15393 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.
15493 15494 15495 |
# File 'lib/ovirtsdk4/services.rb', line 15493 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
15425 15426 15427 |
# File 'lib/ovirtsdk4/services.rb', line 15425 def remove(opts = {}) internal_remove(REMOVE, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 |
# File 'lib/ovirtsdk4/services.rb', line 15504 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>
15484 15485 15486 |
# File 'lib/ovirtsdk4/services.rb', line 15484 def update(pool, opts = {}) internal_update(pool, MacPool, UPDATE, opts) end |