Class: OvirtSDK4::ExternalComputeResourcesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<ExternalComputeResource>
Retrieves a list of external compute resources.
-
#resource_service(id) ⇒ ExternalComputeResourceService
This service manages compute resource instance.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<ExternalComputeResource>
Retrieves a list of external compute resources.
For example, to retrieve the compute resources of external host provider 123
, send a request like this:
GET /ovirt-engine/api/externalhostproviders/123/computeresources
It will return a response like this:
<external_compute_resources>
<external_compute_resource href="/ovirt-engine/api/externalhostproviders/123/computeresources/234" id="234">
<name>hostname</name>
<provider>oVirt</provider>
<url>https://address/api</url>
<user>admin@internal</user>
<external_host_provider href="/ovirt-engine/api/externalhostproviders/123" id="123"/>
</external_compute_resource>
...
</external_compute_resources>
The order of the returned list of compute resources isn’t guaranteed.
8327 8328 8329 |
# File 'lib/ovirtsdk4/services.rb', line 8327 def list(opts = {}) internal_get(LIST, opts) end |
#resource_service(id) ⇒ ExternalComputeResourceService
This service manages compute resource instance
8338 8339 8340 |
# File 'lib/ovirtsdk4/services.rb', line 8338 def resource_service(id) ExternalComputeResourceService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 |
# File 'lib/ovirtsdk4/services.rb', line 8349 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return resource_service(path) end return resource_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |