Class: OvirtSDK4::ExternalProviderCertificateService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#get(opts = {}) ⇒ Certificate
Get specific certificate.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#get(opts = {}) ⇒ Certificate
Get specific certificate.
GET /ovirt-engine/api/externalhostproviders/123/certificate/0
And here is sample response:
<certificate id="0">
<organization>provider.example.com</organization>
<subject>CN=provider.example.com</subject>
<content>...</content>
</certificate>
9144 9145 9146 |
# File 'lib/ovirtsdk4/services.rb', line 9144 def get(opts = {}) internal_get(GET, opts) end |