Class: OvirtSDK4::OpenstackVolumeTypesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<OpenStackVolumeType>
Returns the list of volume types.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#type_service(id) ⇒ OpenstackVolumeTypeService
Locates the
type
service.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<OpenStackVolumeType>
Returns the list of volume types.
The order of the returned list of volume types isn’t guaranteed.
18585 18586 18587 |
# File 'lib/ovirtsdk4/services.rb', line 18585 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 |
# File 'lib/ovirtsdk4/services.rb', line 18607 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return type_service(path) end return type_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |
#type_service(id) ⇒ OpenstackVolumeTypeService
Locates the type
service.
18596 18597 18598 |
# File 'lib/ovirtsdk4/services.rb', line 18596 def type_service(id) OpenstackVolumeTypeService.new(self, id) end |