Class: OvirtSDK4::ExternalProviderCertificatesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#certificate_service(id) ⇒ ExternalProviderCertificateService
Reference to service that manages a specific certificate for this external provider.
-
#list(opts = {}) ⇒ Array<Certificate>
Returns the chain of certificates presented by the external provider.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#certificate_service(id) ⇒ ExternalProviderCertificateService
Reference to service that manages a specific certificate for this external provider.
10247 10248 10249 |
# File 'lib/ovirtsdk4/services.rb', line 10247 def certificate_service(id) ExternalProviderCertificateService.new(self, id) end |
#list(opts = {}) ⇒ Array<Certificate>
Returns the chain of certificates presented by the external provider.
GET /ovirt-engine/api/externalhostproviders/123/certificates
And here is sample response:
<certificates>
<certificate id="789">...</certificate>
...
</certificates>
The order of the returned certificates is always guaranteed to be the sign order: the first is the certificate of the server itself, the second the certificate of the CA that signs the first, so on.
10235 10236 10237 |
# File 'lib/ovirtsdk4/services.rb', line 10235 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 |
# File 'lib/ovirtsdk4/services.rb', line 10258 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return certificate_service(path) end return certificate_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |