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.
17510 17511 17512 |
# File 'lib/ovirtsdk4/services.rb', line 17510 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 |
# File 'lib/ovirtsdk4/services.rb', line 17532 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.
17521 17522 17523 |
# File 'lib/ovirtsdk4/services.rb', line 17521 def type_service(id) OpenstackVolumeTypeService.new(self, id) end |