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.
-
#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.
14256 14257 14258 |
# File 'lib/ovirtsdk4/services.rb', line 14256 def get(opts = {}) internal_get(GET, opts) 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
14288 14289 14290 |
# File 'lib/ovirtsdk4/services.rb', line 14288 def remove(opts = {}) internal_remove(REMOVE, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
14358 14359 14360 14361 14362 14363 |
# File 'lib/ovirtsdk4/services.rb', line 14358 def service(path) if path.nil? || path == '' return self 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>
14347 14348 14349 |
# File 'lib/ovirtsdk4/services.rb', line 14347 def update(pool, opts = {}) internal_update(pool, MacPool, UPDATE, opts) end |