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.
18011 18012 18013 |
# File 'lib/ovirtsdk4/services.rb', line 18011 def get(opts = {}) internal_get(GET, opts) end |
#remove(opts = {}) ⇒ Object
Deletes the object managed by this service.
18036 18037 18038 |
# File 'lib/ovirtsdk4/services.rb', line 18036 def remove(opts = {}) internal_remove(REMOVE, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
18073 18074 18075 18076 18077 18078 |
# File 'lib/ovirtsdk4/services.rb', line 18073 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.
18062 18063 18064 |
# File 'lib/ovirtsdk4/services.rb', line 18062 def update(key, opts = {}) internal_update(key, OpenstackVolumeAuthenticationKey, UPDATE, opts) end |