Class: OvirtSDK4::OpenstackVolumeAuthenticationKeysService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(key, opts = {}) ⇒ OpenstackVolumeAuthenticationKey
Add a new authentication key to the OpenStack volume provider.
-
#key_service(id) ⇒ OpenstackVolumeAuthenticationKeyService
Locates the
keyservice. -
#list(opts = {}) ⇒ Array<OpenstackVolumeAuthenticationKey>
Returns the list of authentication keys.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(key, opts = {}) ⇒ OpenstackVolumeAuthenticationKey
Add a new authentication key to the OpenStack volume provider.
16863 16864 16865 |
# File 'lib/ovirtsdk4/services.rb', line 16863 def add(key, opts = {}) internal_add(key, OpenstackVolumeAuthenticationKey, ADD, opts) end |
#key_service(id) ⇒ OpenstackVolumeAuthenticationKeyService
Locates the key service.
16908 16909 16910 |
# File 'lib/ovirtsdk4/services.rb', line 16908 def key_service(id) OpenstackVolumeAuthenticationKeyService.new(self, id) end |
#list(opts = {}) ⇒ Array<OpenstackVolumeAuthenticationKey>
Returns the list of authentication keys.
The order of the returned list of authentication keys isn’t guaranteed.
16897 16898 16899 |
# File 'lib/ovirtsdk4/services.rb', line 16897 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 |
# File 'lib/ovirtsdk4/services.rb', line 16919 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return key_service(path) end return key_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |