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>[email protected]</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.
9327 9328 9329 |
# File 'lib/ovirtsdk4/services.rb', line 9327 def list(opts = {}) internal_get(LIST, opts) end |
#resource_service(id) ⇒ ExternalComputeResourceService
This service manages compute resource instance
9338 9339 9340 |
# File 'lib/ovirtsdk4/services.rb', line 9338 def resource_service(id) ExternalComputeResourceService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 |
# File 'lib/ovirtsdk4/services.rb', line 9349 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 |