Interface CertificateServiceAsync
-
- All Implemented Interfaces:
public interface CertificateServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceCertificateServiceAsync.WithRawResponseA view of CertificateServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract CertificateServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract CertificateServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<Certificate> create(CertificateCreateParams params)
Upload a certificate to the organization. This does not automatically activate the certificate.
Organizations can upload up to 50 certificates.
-
create
abstract CompletableFuture<Certificate> create(CertificateCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Certificate> retrieve(String certificateId)
Get a certificate that has been uploaded to the organization.
You can get a certificate regardless of whether it is active or not.
-
retrieve
CompletableFuture<Certificate> retrieve(String certificateId, CertificateRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Certificate> retrieve(String certificateId, CertificateRetrieveParams params)
-
retrieve
abstract CompletableFuture<Certificate> retrieve(CertificateRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Certificate> retrieve(CertificateRetrieveParams params)
-
retrieve
CompletableFuture<Certificate> retrieve(String certificateId, RequestOptions requestOptions)
-
update
CompletableFuture<Certificate> update(String certificateId)
Modify a certificate. Note that only the name can be modified.
-
update
CompletableFuture<Certificate> update(String certificateId, CertificateUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<Certificate> update(String certificateId, CertificateUpdateParams params)
-
update
abstract CompletableFuture<Certificate> update(CertificateUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<Certificate> update(CertificateUpdateParams params)
-
update
CompletableFuture<Certificate> update(String certificateId, RequestOptions requestOptions)
-
list
CompletableFuture<CertificateListPageAsync> list()
List uploaded certificates for this organization.
-
list
abstract CompletableFuture<CertificateListPageAsync> list(CertificateListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<CertificateListPageAsync> list(CertificateListParams params)
-
list
CompletableFuture<CertificateListPageAsync> list(RequestOptions requestOptions)
-
delete
CompletableFuture<CertificateDeleteResponse> delete(String certificateId)
Delete a certificate from the organization.
The certificate must be inactive for the organization and all projects.
-
delete
CompletableFuture<CertificateDeleteResponse> delete(String certificateId, CertificateDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<CertificateDeleteResponse> delete(String certificateId, CertificateDeleteParams params)
-
delete
abstract CompletableFuture<CertificateDeleteResponse> delete(CertificateDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<CertificateDeleteResponse> delete(CertificateDeleteParams params)
-
delete
CompletableFuture<CertificateDeleteResponse> delete(String certificateId, RequestOptions requestOptions)
-
activate
CompletableFuture<CertificateActivatePageAsync> activate(CertificateActivateParams params)
Activate certificates at the organization level.
You can atomically and idempotently activate up to 10 certificates at a time.
-
activate
abstract CompletableFuture<CertificateActivatePageAsync> activate(CertificateActivateParams params, RequestOptions requestOptions)
-
deactivate
CompletableFuture<CertificateDeactivatePageAsync> deactivate(CertificateDeactivateParams params)
Deactivate certificates at the organization level.
You can atomically and idempotently deactivate up to 10 certificates at a time.
-
deactivate
abstract CompletableFuture<CertificateDeactivatePageAsync> deactivate(CertificateDeactivateParams params, RequestOptions requestOptions)
-
-
-
-