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
key
service. -
#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.
18107 18108 18109 |
# File 'lib/ovirtsdk4/services.rb', line 18107 def add(key, opts = {}) internal_add(key, OpenstackVolumeAuthenticationKey, ADD, opts) end |
#key_service(id) ⇒ OpenstackVolumeAuthenticationKeyService
Locates the key
service.
18152 18153 18154 |
# File 'lib/ovirtsdk4/services.rb', line 18152 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.
18141 18142 18143 |
# File 'lib/ovirtsdk4/services.rb', line 18141 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 |
# File 'lib/ovirtsdk4/services.rb', line 18163 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 |