Package com.courier.services.async
Interface AuditEventServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface AuditEventServiceAsync.WithRawResponseA view of AuditEventServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract AuditEventServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<AuditEvent>> retrieve(String auditEventId)
Returns a raw HTTP response for
get /audit-events/{audit-event-id}, but is otherwise the same as AuditEventServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<AuditEvent>> retrieve(String auditEventId, AuditEventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<AuditEvent>> retrieve(String auditEventId, AuditEventRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<AuditEvent>> retrieve(AuditEventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<AuditEvent>> retrieve(AuditEventRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<AuditEvent>> retrieve(String auditEventId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<AuditEventListResponse>> list()
Returns a raw HTTP response for
get /audit-events, but is otherwise the same as AuditEventServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<AuditEventListResponse>> list(AuditEventListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<AuditEventListResponse>> list(RequestOptions requestOptions)
-
-
-
-