Package io.imagekit.services.async.cache
Interface InvalidationServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface InvalidationServiceAsync.WithRawResponseA view of InvalidationServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract InvalidationServiceAsync.WithRawResponse 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<HttpResponseFor<InvalidationCreateResponse>> create(InvalidationCreateParams params)
Returns a raw HTTP response for
post /v1/files/purge, but is otherwise the same as InvalidationServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<InvalidationCreateResponse>> create(InvalidationCreateParams params, RequestOptions requestOptions)
-
get
CompletableFuture<HttpResponseFor<InvalidationGetResponse>> get(String requestId)
Returns a raw HTTP response for
get /v1/files/purge/{requestId}, but is otherwise the same as InvalidationServiceAsync.get.
-
get
CompletableFuture<HttpResponseFor<InvalidationGetResponse>> get(String requestId, InvalidationGetParams params, RequestOptions requestOptions)
-
get
CompletableFuture<HttpResponseFor<InvalidationGetResponse>> get(String requestId, InvalidationGetParams params)
-
get
abstract CompletableFuture<HttpResponseFor<InvalidationGetResponse>> get(InvalidationGetParams params, RequestOptions requestOptions)
-
get
CompletableFuture<HttpResponseFor<InvalidationGetResponse>> get(String requestId, RequestOptions requestOptions)
-
-
-
-