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.
16936 16937 16938 |
# File 'lib/ovirtsdk4/services.rb', line 16936 def get(opts = {}) internal_get(GET, opts) end |
#remove(opts = {}) ⇒ Object
Deletes the object managed by this service.
16961 16962 16963 |
# File 'lib/ovirtsdk4/services.rb', line 16961 def remove(opts = {}) internal_remove(REMOVE, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
16998 16999 17000 17001 17002 17003 |
# File 'lib/ovirtsdk4/services.rb', line 16998 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.
16987 16988 16989 |
# File 'lib/ovirtsdk4/services.rb', line 16987 def update(key, opts = {}) internal_update(key, OpenstackVolumeAuthenticationKey, UPDATE, opts) end |