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.
10227 10228 10229 |
# File 'lib/ovirtsdk4/services.rb', line 10227 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.
10215 10216 10217 |
# File 'lib/ovirtsdk4/services.rb', line 10215 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 |
# File 'lib/ovirtsdk4/services.rb', line 10238 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 |