Class: OvirtSDK4::OpenstackVolumeAuthenticationKeyService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#get(opts = {}) ⇒ OpenstackVolumeAuthenticationKey
Returns the representation of the object managed by this service.
-
#remove(opts = {}) ⇒ Object
Deletes the object managed by this service.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#update(key, opts = {}) ⇒ OpenstackVolumeAuthenticationKey
Update the specified authentication key.
Methods inherited from Service
Instance Method Details
#get(opts = {}) ⇒ OpenstackVolumeAuthenticationKey
Returns the representation of the object managed by this service.
16845 16846 16847 |
# File 'lib/ovirtsdk4/services.rb', line 16845 def get(opts = {}) internal_get(GET, opts) end |
#remove(opts = {}) ⇒ Object
Deletes the object managed by this service.
16870 16871 16872 |
# File 'lib/ovirtsdk4/services.rb', line 16870 def remove(opts = {}) internal_remove(REMOVE, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
16907 16908 16909 16910 16911 16912 |
# File 'lib/ovirtsdk4/services.rb', line 16907 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |
#update(key, opts = {}) ⇒ OpenstackVolumeAuthenticationKey
Update the specified authentication key.
16896 16897 16898 |
# File 'lib/ovirtsdk4/services.rb', line 16896 def update(key, opts = {}) internal_update(key, OpenstackVolumeAuthenticationKey, UPDATE, opts) end |