Interface DeliveryServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface DeliveryServiceAsync.WithRawResponseA view of DeliveryServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract DeliveryServiceAsync.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<HttpResponse> retrieve(String id)
Returns a raw HTTP response for
get /webhooks/v1/deliveries/{id}, but is otherwise the same as DeliveryServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id, DeliveryRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id, DeliveryRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponse> retrieve(DeliveryRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(DeliveryRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list()
Returns a raw HTTP response for
get /webhooks/v1/deliveries, but is otherwise the same as DeliveryServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponse> list(DeliveryListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list(DeliveryListParams params)
-
list
CompletableFuture<HttpResponse> list(RequestOptions requestOptions)
-
replay
CompletableFuture<HttpResponse> replay(String id)
Returns a raw HTTP response for
post /webhooks/v1/deliveries/{id}/replay, but is otherwise the same as DeliveryServiceAsync.replay.
-
replay
CompletableFuture<HttpResponse> replay(String id, DeliveryReplayParams params, RequestOptions requestOptions)
-
replay
CompletableFuture<HttpResponse> replay(String id, DeliveryReplayParams params)
-
replay
abstract CompletableFuture<HttpResponse> replay(DeliveryReplayParams params, RequestOptions requestOptions)
-
replay
CompletableFuture<HttpResponse> replay(DeliveryReplayParams params)
-
replay
CompletableFuture<HttpResponse> replay(String id, RequestOptions requestOptions)
-
-
-
-