Package org.ovirt.engine.sdk4.services
Interface ExternalProviderCertificatesService
-
- All Superinterfaces:
Service
- All Known Implementing Classes:
ExternalProviderCertificatesServiceImpl
public interface ExternalProviderCertificatesService extends Service
A service to view certificates for external provider.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ExternalProviderCertificatesService.ListRequest
Returns the chain of certificates presented by the external provider.static interface
ExternalProviderCertificatesService.ListResponse
Returns the chain of certificates presented by the external provider.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExternalProviderCertificateService
certificateService(String id)
Reference to service that manages a specific certificate for this external provider.ExternalProviderCertificatesService.ListRequest
list()
Returns the chain of certificates presented by the external provider.Service
service(String path)
Service locator method, returns individual service on which the URI is dispatched.
-
-
-
Method Detail
-
list
ExternalProviderCertificatesService.ListRequest list()
Returns the chain of certificates presented by the external provider. [source] ---- GET /ovirt-engine/api/externalhostproviders/123/certificates ---- And here is sample response: [source,xml] ----... ...
-
certificateService
ExternalProviderCertificateService certificateService(String id)
Reference to service that manages a specific certificate for this external provider.
-
-