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.
18721 18722 18723 |
# File 'lib/ovirtsdk4/services.rb', line 18721 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 |
# File 'lib/ovirtsdk4/services.rb', line 18743 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.
18732 18733 18734 |
# File 'lib/ovirtsdk4/services.rb', line 18732 def type_service(id) OpenstackVolumeTypeService.new(self, id) end |